/* ============================================================
   Summer Homes Collection — Shared Stylesheet
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --off-white:    #F8F5F0;
  --paper:        #FDFCF9;
  --ink:          #0D0D0B;
  --mid:          #6B6560;
  --rule:         #D8D2CA;
  --accent:       #B8603A;
  --accent-light: #E8C4A8;
  --france:       #3B3228;
  --thailand:     #2C2820;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', sans-serif;
}

html  { scroll-behavior: smooth; }
body  {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── CURSOR ─────────────────────────────────────────────── */
#cur, #cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
#cur      { width: 8px;  height: 8px;  background: var(--accent); transition: width .3s, height .3s; }
#cur-ring { width: 36px; height: 36px; border: 1px solid var(--accent); opacity: .55; z-index: 9998; transition: width .3s, height .3s, opacity .3s; }

/* ── MASTHEAD ────────────────────────────────────────────── */
.mast {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 48px; height: 62px;
}
.mast-nav   { display: flex; gap: 32px; }
.mast-nav-r { justify-content: flex-end; }
.mast-nav a {
  font-size: .61rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .25s;
}
.mast-nav a:hover { color: var(--accent); }
.mast-logo {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.mast-book {
  background: var(--ink) !important;
  color: var(--off-white) !important;
  padding: 10px 22px;
  transition: background .3s !important;
}
.mast-book:hover { background: var(--accent) !important; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-bar {
  margin-top: 62px; background: var(--ink); padding: 9px 48px;
  display: flex; justify-content: space-between; align-items: center; overflow: hidden;
}
.ticker-tag  { font-size: .57rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(248,245,240,.35); white-space: nowrap; }
.ticker-text { font-size: .57rem; letter-spacing: .2em;  text-transform: uppercase; color: var(--accent-light);  white-space: nowrap; animation: tick 55s linear infinite; }
@keyframes tick { 0%{transform:translateX(100vw)} 100%{transform:translateX(-300%)} }

/* ── HERO SPLIT ──────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 84px); }
.hero-panel { position: relative; overflow: hidden; }
.hero-panel-france  { background: var(--france); }
.hero-panel-thailand{ background: var(--thailand); }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; position: absolute; top: 0; left: 0;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.15) 75%, rgba(0,0,0,.08) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px; }
.hero-eyebrow  { font-size: .57rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.hero-title    { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.hero-sub      { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 340px; margin-bottom: 28px; }
.hero-cta      { display: inline-flex; align-items: center; gap: 10px; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; transition: border-color .3s; }
.hero-cta:hover{ border-color: #fff; }
.hero-divider  { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255,255,255,.2); z-index: 10; }

/* ── EDITORIAL BAND ──────────────────────────────────────── */
.ed-band { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--rule); }
.ed-cell { padding: 32px 40px; border-right: 1px solid var(--rule); }
.ed-cell:last-child { border-right: none; }
.ed-label { font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.ed-val   { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); }
.ed-note  { font-size: .72rem; color: var(--mid); margin-top: 4px; }

/* ── PROPERTY FEATURE ────────────────────────────────────── */
.prop-france, .prop-thailand {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh;
}
.prop-img-wrap {
  position: relative; overflow: hidden;
  background: none; padding: 0; margin: 0;
  min-height: 88vh;
}
.prop-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; position: absolute; top: 0; left: 0;
}
.prop-content {
  background: var(--off-white); display: flex; flex-direction: column;
  justify-content: center; padding: 80px;
}
.prop-flag { font-size: .57rem; letter-spacing: .3em; text-transform: uppercase; color: var(--france); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.prop-flag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--france); }
.prop-h    { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; line-height: 1.1; color: var(--ink); margin-bottom: 10px; }
.prop-place{ font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 30px; }
.prop-desc { font-size: .84rem; color: var(--mid); line-height: 1.85; margin-bottom: 36px; max-width: 400px; }
.prop-specs{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; margin-bottom: 40px; border-top: 1px solid var(--rule); padding-top: 28px; }
.prop-spec-label { font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.prop-spec-val   { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.prop-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 5px;
  transition: color .3s, border-color .3s; width: fit-content;
}
.prop-cta:hover { color: var(--accent); border-color: var(--accent); }

.prop-thailand .prop-content    { background: var(--ink); }
.prop-thailand .prop-flag       { color: var(--accent-light); }
.prop-thailand .prop-flag::before { background: var(--accent-light); }
.prop-thailand .prop-h          { color: var(--off-white); }
.prop-thailand .prop-place      { color: rgba(248,245,240,.45); }
.prop-thailand .prop-desc       { color: rgba(248,245,240,.65); }
.prop-thailand .prop-specs      { border-top-color: rgba(255,255,255,.12); }
.prop-thailand .prop-spec-label { color: rgba(248,245,240,.4); }
.prop-thailand .prop-spec-val   { color: var(--off-white); }
.prop-thailand .prop-cta        { color: var(--off-white); border-color: rgba(255,255,255,.4); }
.prop-thailand .prop-cta:hover  { color: var(--accent-light); border-color: var(--accent-light); }

/* ── GALLERY STRIP ───────────────────────────────────────── */
.gallery-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  height: 520px; gap: 0;
}
.g-cell {
  position: relative; overflow: hidden;
  background: none; padding: 0; margin: 0;
}
.g-cell img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; position: absolute; top: 0; left: 0;
}
.g-cell-label { position: absolute; bottom: 20px; left: 20px; font-size: .54rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.7); z-index: 2; }

/* ── WHAT WE OFFER ───────────────────────────────────────── */
.what-wrap { padding: 100px 80px; background: var(--off-white); }
.what-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; }
.what-cell { padding: 40px 32px; background: var(--paper); position: relative; overflow: hidden; transition: background .4s; }
.what-cell:hover { background: var(--ink); }
.what-cell:hover .what-title,
.what-cell:hover .what-desc  { color: var(--off-white); }
.what-cell:hover .what-num   { color: rgba(255,255,255,.1); }
.what-num   { font-family: var(--serif); font-size: 5rem; font-weight: 900; color: var(--rule); position: absolute; top: -10px; right: 16px; line-height: 1; transition: color .4s; }
.what-icon  { font-size: 1.4rem; margin-bottom: 24px; }
.what-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; transition: color .4s; }
.what-desc  { font-size: .78rem; color: var(--mid); line-height: 1.75; transition: color .4s; }

/* ── RATES ───────────────────────────────────────────────── */
.rates-wrap   { display: grid; grid-template-columns: 1fr 1fr; }
.rates-panel  { padding: 80px; }
.rates-panel-france   { background: var(--france); }
.rates-panel-thailand { background: var(--thailand); }
.rates-eye    { font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.rates-h      { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rates-place  { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 36px; }
.rates-row    { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.rates-season { font-size: .72rem; color: rgba(255,255,255,.65); }
.rates-price  { font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.rates-note   { font-size: .68rem; color: rgba(255,255,255,.38); margin-top: 6px; }
.rates-cta    { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; transition: border-color .3s; }
.rates-cta:hover { border-color: #fff; }

/* ── TIPS SECTION ────────────────────────────────────────── */
.tips-wrap { padding: 100px 80px; }
.tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }

.tip-card {
  border: 1px solid var(--rule);
  padding: 36px;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}
.tip-card:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(184,96,58,.08); }
.tip-loc   { font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.tip-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.tip-desc  { font-size: .78rem; color: var(--mid); line-height: 1.75; }
.tip-arrow { position: absolute; bottom: 24px; right: 24px; color: var(--rule); font-size: .9rem; transition: color .3s; }
.tip-card:hover .tip-arrow { color: var(--accent); }

/* ── QUOTE PAGE ──────────────────────────────────────────── */
.quote-pg {
  min-height: 60vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px; overflow: hidden;
}
.quote-pg-bg { position: absolute; inset: 0; background: none; padding: 0; margin: 0; }
.quote-pg-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; position: absolute; top: 0; left: 0;
}
.quote-pg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.q-line  { width: 1px; height: 60px; background: rgba(255,255,255,.3); margin: 0 auto 32px; position: relative; z-index: 2; }
.q-text  { font-family: var(--serif); font-size: clamp(1.4rem,2.8vw,2.2rem); font-weight: 400; font-style: italic; color: #fff; line-height: 1.5; max-width: 700px; position: relative; z-index: 2; margin-bottom: 24px; }
.q-attr  { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.45); position: relative; z-index: 2; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.contact-l    { padding: 80px; background: var(--off-white); display: flex; flex-direction: column; justify-content: space-between; }
.c-eye  { font-size: .57rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.c-h    { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); font-weight: 400; line-height: 1.15; color: var(--ink); }
.c-h em { font-style: italic; }
.c-sub  { font-size: .82rem; color: var(--mid); line-height: 1.8; margin-top: 20px; max-width: 400px; }
.c-info { margin-top: 40px; }
.c-info-row   { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.c-info-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); }
.c-info-val   { font-size: .8rem; color: var(--ink); }
.c-info-val a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.contact-r    { padding: 80px; background: var(--ink); }
.form-tag     { font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(248,245,240,.35); margin-bottom: 36px; }
.fld          { margin-bottom: 22px; }
.fld-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld label    { display: block; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(248,245,240,.45); margin-bottom: 8px; }
.fld input, .fld select, .fld textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: var(--off-white); font-family: var(--sans); font-size: .82rem; font-weight: 300;
  padding: 14px 16px; outline: none; transition: border-color .3s;
}
.fld input::placeholder, .fld textarea::placeholder { color: rgba(248,245,240,.25); }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--accent); }
.fld select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.fld select option { background: var(--ink); }
.fld textarea { height: 110px; resize: none; }
.form-submit {
  margin-top: 8px; width: 100%; background: var(--accent); border: none; color: #fff;
  font-family: var(--sans); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 18px; cursor: pointer; transition: background .3s;
}
.form-submit:hover { background: #a0532f; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--ink); padding: 80px 80px 0; }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-logo { font-family: var(--serif); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--off-white); display: block; margin-bottom: 16px; }
.ft-tag  { font-size: .76rem; color: rgba(248,245,240,.4); line-height: 1.75; }
.fc-title { font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(248,245,240,.35); display: block; margin-bottom: 18px; }
.fc-links { list-style: none; }
.fc-links li { margin-bottom: 10px; }
.fc-links a  { font-size: .78rem; color: rgba(248,245,240,.55); text-decoration: none; transition: color .3s; }
.fc-links a:hover { color: var(--accent-light); }
.fb      { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.fb-copy { font-size: .65rem; color: rgba(248,245,240,.25); }
.fb-tag  { font-size: .65rem; color: rgba(248,245,240,.2); font-style: italic; }

/* ── SECTION UTILS ───────────────────────────────────────── */
.sec-wrap { padding: 100px 80px; }
.sec-eye  { font-size: .57rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.sec-h    { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; line-height: 1.15; color: var(--ink); max-width: 540px; }
.sec-h em { font-style: italic; color: var(--accent); }
.sec-rule { width: 48px; height: 1px; background: var(--rule); margin: 28px 0; }
.sec-sub  { font-size: .82rem; color: var(--mid); line-height: 1.8; max-width: 480px; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.rev    { opacity: 1; transform: none; }
.rev.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ════════════════════════════════════════════════════════════
   BLOG PAGE STYLES
   ════════════════════════════════════════════════════════════ */

.blog-hero {
  margin-top: 62px;
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.blog-hero-bg {
  position: absolute; inset: 0; background: none;
}
.blog-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; position: absolute; top: 0; left: 0;
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.blog-hero-content {
  position: relative; z-index: 2;
  padding: 48px 80px;
  width: 100%;
}
.blog-category {
  font-size: .57rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 12px; display: block;
}
.blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 680px;
}

.blog-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px 100px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.blog-meta-item {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
}
.blog-meta-sep { color: var(--rule); }

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .25s;
  margin-bottom: 48px;
  display: block;
}
.blog-back:hover { color: var(--accent); }

.blog-intro {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 40px;
}

.blog-body h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.blog-body p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.blog-body strong {
  color: var(--ink);
  font-weight: 500;
}

.blog-tip-box {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 36px 0;
}
.blog-tip-box p {
  margin-bottom: 0;
  font-size: .84rem;
}
.blog-tip-label {
  font-size: .54rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.blog-rule {
  width: 48px; height: 1px;
  background: var(--rule);
  margin: 48px 0;
}

.blog-closing {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  margin-top: 48px;
}

.blog-cta-strip {
  background: var(--off-white);
  border-top: 1px solid var(--rule);
  padding: 64px 80px;
  text-align: center;
}
.blog-cta-strip p {
  font-size: .82rem; color: var(--mid); margin-bottom: 24px;
}
.blog-cta-strip a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.blog-cta-strip a:hover { color: var(--accent); border-color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .mast { padding: 0 24px; }
  .mast-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-divider { display: none; }
  .ed-band { grid-template-columns: 1fr; }
  .ed-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .prop-france, .prop-thailand { grid-template-columns: 1fr; }
  .prop-img-wrap { min-height: 55vw; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .g-cell { min-height: 56vw; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .rates-wrap { grid-template-columns: 1fr; }
  .tips-grid  { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .sec-wrap, .what-wrap, .tips-wrap { padding: 64px 24px; }
  .prop-content { padding: 48px 24px; }
  .rates-panel  { padding: 48px 24px; }
  .contact-l, .contact-r { padding: 48px 24px; }
  footer { padding: 60px 24px 0; }
  .ft { grid-template-columns: 1fr 1fr; gap: 36px; }

  .blog-hero-content { padding: 32px 24px; }
  .blog-body { padding: 48px 24px 72px; }
  .blog-cta-strip { padding: 48px 24px; }

