/* ============================================================
   Azure Coast Properties — Coastal Luxury Design System
   ============================================================ */

:root {
  /* Palette — ocean blue / aqua + warm sand + crisp white */
  --ocean-900: #0a2a3a;
  --ocean-800: #0f3a4f;
  --ocean-700: #145063;
  --ocean-600: #1a6b82;
  --aqua-500: #2a9db5;
  --aqua-400: #46bcd2;
  --aqua-300: #7ad4e3;
  --aqua-100: #d6f0f5;
  --sand-700: #b08a5a;
  --sand-500: #d6b483;
  --sand-300: #ecd8bb;
  --sand-100: #f8efe1;
  --foam: #f4fbfc;
  --shell: #fbfaf6;
  --white: #ffffff;
  --ink: #0c2430;
  --ink-soft: #3c5562;
  --muted: #6f8893;
  --line: rgba(15, 58, 79, 0.10);

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Mulish", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 18px rgba(15, 58, 79, 0.08);
  --shadow: 0 18px 48px rgba(15, 58, 79, 0.13);
  --shadow-lg: 0 38px 90px rgba(10, 42, 58, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--shell);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
em { font-style: italic; color: var(--ocean-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.foam { background: var(--foam); }
.sand { background: linear-gradient(180deg, var(--sand-100), var(--shell)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.94rem;
  letter-spacing: 0.01em; padding: 0.95rem 1.7rem; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--ocean-700), var(--aqua-500));
  color: var(--white); box-shadow: 0 12px 30px rgba(26, 107, 130, 0.34);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(26, 107, 130, 0.42); }
.btn-sand {
  background: linear-gradient(135deg, var(--sand-500), var(--sand-700));
  color: #43331c; box-shadow: 0 12px 30px rgba(176, 138, 90, 0.3);
}
.btn-sand:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(176, 138, 90, 0.4); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--aqua-400); color: var(--ocean-600); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.95); color: var(--ocean-800); transform: translateY(-3px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 800; font-size: 0.76rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--aqua-500);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--aqua-400), var(--sand-500)); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.sec-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.sec-head .lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 560px; margin-top: 1rem; }
.split-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.55rem 0;
  background: rgba(251, 250, 246, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.site-header.shrink {
  padding: 0; box-shadow: 0 10px 34px rgba(15, 58, 79, 0.1);
  background: rgba(251, 250, 246, 0.92); border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; transition: padding 0.4s var(--ease); }
.site-header.shrink .nav { padding: 0.5rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.02em; color: var(--ocean-800); }
.brand-mark .wave { color: var(--aqua-500); }
.brand-sub { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sand-700); margin-top: 0.32rem; }

.nav-links { display: flex; gap: 0.4rem; }
.nav-links a {
  font-weight: 700; font-size: 0.93rem; padding: 0.55rem 0.95rem; border-radius: 100px;
  color: var(--ink-soft); transition: color 0.3s, background 0.3s; position: relative;
}
.nav-links a:hover { color: var(--ocean-700); }
.nav-links a.active { color: var(--ocean-800); background: var(--aqua-100); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { font-weight: 800; font-size: 0.9rem; color: var(--ocean-700); display: flex; align-items: center; gap: 0.45rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--aqua-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 21px; height: 2px; background: var(--ocean-800); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 7rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-tag { font-size: 1.16rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.4rem; }
.hero-trust .stars { color: var(--sand-700); letter-spacing: 2px; font-size: 1rem; }
.hero-trust span { font-size: 0.88rem; color: var(--muted); }
.hero-trust b { color: var(--ink); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.3;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.16) translate(-1.5%, -2%); } }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,42,58,0.42)); }

.hero-badge {
  position: absolute; left: -1.4rem; bottom: 2.2rem; z-index: 3;
  background: var(--white); border-radius: 18px; padding: 1rem 1.3rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.85rem;
}
.hero-badge .n { font-family: var(--serif); font-size: 2rem; color: var(--ocean-700); line-height: 1; }
.hero-badge .l { font-size: 0.78rem; font-weight: 700; color: var(--muted); max-width: 110px; }
.hero-float {
  position: absolute; right: -1rem; top: 1.8rem; z-index: 3;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 0.85rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.7rem; animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float .dot { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--aqua-400), var(--ocean-600)); display: grid; place-items: center; color: #fff; }
.hero-float .dot svg { width: 18px; height: 18px; }
.hero-float .t b { display: block; font-size: 0.92rem; }
.hero-float .t span { font-size: 0.74rem; color: var(--muted); }

/* Decorative blobs */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.55; z-index: 0; }
.hero-blob.a { width: 420px; height: 420px; background: var(--aqua-300); top: -120px; right: -80px; }
.hero-blob.b { width: 320px; height: 320px; background: var(--sand-300); bottom: -120px; left: -100px; }

/* Wave divider */
.wave-divider { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave-divider svg { width: 100%; height: 100%; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--ocean-800), var(--ocean-600)); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(122,212,227,0.22), transparent 55%); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: clamp(3rem,5vw,4rem) 0; position: relative; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -1rem; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,0.16); }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: #fff; }
.stat .n .suf { color: var(--aqua-300); }
.stat .l { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--aqua-100); margin-top: 0.6rem; opacity: 0.85; }

/* ============================================================
   LISTINGS GRID / CARDS
   ============================================================ */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 4 / 3.3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-media img { transform: scale(1.09); }
.pill {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.42rem 0.9rem; border-radius: 100px; color: #fff;
  background: rgba(15,58,79,0.78); backdrop-filter: blur(6px);
}
.pill[data-status="To Let"] { background: rgba(176,138,90,0.86); }
.pill[data-status="New"] { background: rgba(42,157,181,0.86); }
.card-fav { position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); display: grid; place-items: center; color: var(--ocean-600); }
.card-fav svg { width: 17px; height: 17px; }
.card-body { padding: 1.5rem 1.6rem 1.7rem; }
.card-area { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-500); }
.card-body h3 { margin: 0.5rem 0 0.4rem; }
.card-addr { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.card-price { font-family: var(--serif); font-size: 1.5rem; color: var(--ocean-700); margin-bottom: 1rem; }
.card-price .pcm { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.card-specs { display: flex; gap: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.card-specs span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.card-specs svg { width: 17px; height: 17px; color: var(--aqua-500); }

.sec-foot { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }

/* ============================================================
   SPLIT (interior / about)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4.4; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.split-media:hover .frame img { transform: scale(1.06); }
.split-media .tab {
  position: absolute; bottom: -1.2rem; right: 1.5rem; background: var(--white);
  border-radius: 16px; padding: 1rem 1.3rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.8rem;
}
.split-media .tab svg { width: 30px; height: 30px; color: var(--aqua-500); }
.split-media .tab b { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.split-media .tab span { font-size: 0.78rem; color: var(--muted); }
.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy .lead { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.6rem; }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--aqua-100); display: grid; place-items: center; color: var(--ocean-600); }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { font-family: var(--sans); font-weight: 800; font-size: 1rem; margin-bottom: 0.15rem; }
.feature-list p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   NEIGHBOURHOODS / AREAS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.area {
  position: relative; padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.area::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--aqua-100), transparent); opacity: 0; transition: opacity 0.5s; }
.area:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--aqua-300); }
.area:hover::before { opacity: 1; }
.area > * { position: relative; }
.area .idx { font-family: var(--serif); font-size: 1rem; color: var(--sand-700); font-weight: 600; }
.area h3 { margin: 0.5rem 0 0.5rem; }
.area p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1rem; }
.area .go { font-size: 0.86rem; font-weight: 800; color: var(--ocean-600); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.3s; }
.area:hover .go { gap: 0.7rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-band { background: linear-gradient(160deg, var(--ocean-900), var(--ocean-700)); color: #fff; overflow: hidden; position: relative; }
.quote-band::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(122,212,227,0.18), transparent 70%); top: -160px; left: -120px; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.qcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem 1.8rem; backdrop-filter: blur(6px); }
.qcard .stars { color: var(--sand-500); letter-spacing: 2px; margin-bottom: 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: #f3fafb; font-style: italic; margin-bottom: 1.5rem; }
.qmeta { display: flex; align-items: center; gap: 0.85rem; }
.qmeta .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--aqua-400), var(--sand-500)); display: grid; place-items: center; font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.qmeta b { display: block; font-size: 0.96rem; }
.qmeta span { font-size: 0.8rem; color: var(--aqua-200, #b9e3ec); opacity: 0.85; }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .meta { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.post .type { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--aqua-500); font-size: 0.72rem; }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sand-500); }
.post h3 { margin-bottom: 0.7rem; }
.post h3 a { transition: color 0.3s; }
.post:hover h3 a { color: var(--ocean-600); }
.post p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.post .more { font-weight: 800; font-size: 0.88rem; color: var(--ocean-600); display: inline-flex; gap: 0.35rem; transition: gap 0.3s; }
.post:hover .more { gap: 0.65rem; }

/* Featured post (blog page) */
.featured-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); margin-bottom: 4rem; }
.featured-post .fp-media { position: relative; aspect-ratio: 5/4; overflow: hidden; height: 100%; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(2rem,4vw,3.5rem) clamp(2rem,4vw,3rem); }
.featured-post .fp-tag { display: inline-block; background: var(--sand-100); color: var(--sand-700); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem; }
.featured-post h2 { margin-bottom: 1rem; }
.featured-post p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.featured-post .fp-meta { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.6rem; }
.featured-post .fp-meta img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.featured-post .fp-meta b { display: block; font-size: 0.9rem; }
.featured-post .fp-meta span { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; text-align: center; padding: clamp(4.5rem,8vw,7rem) 0; color: #fff; overflow: hidden; background: linear-gradient(135deg, var(--ocean-800), var(--aqua-500)); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.14), transparent 50%), radial-gradient(circle at 85% 70%, rgba(214,180,131,0.22), transparent 50%); }
.cta-band > .wrap { position: relative; max-width: 760px; }
.cta-band h2 { color: #fff; margin-bottom: 1.1rem; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { position: relative; padding: clamp(3.5rem,7vw,6rem) 0 clamp(3rem,5vw,4.5rem); background: linear-gradient(160deg, var(--ocean-800), var(--ocean-600)); color: #fff; overflow: hidden; text-align: center; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 25%, rgba(122,212,227,0.22), transparent 55%); }
.page-head > .wrap { position: relative; }
.page-head h1 { color: #fff; }
.page-head .eyebrow { color: var(--aqua-300); }
.page-head p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 1rem auto 0; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 1.4rem; }
.crumbs a:hover { color: #fff; }

/* ============================================================
   LISTINGS PAGE filters
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3rem; }
.filter { font-weight: 700; font-size: 0.9rem; padding: 0.6rem 1.3rem; border-radius: 100px; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; color: var(--ink-soft); transition: all 0.3s; }
.filter:hover { border-color: var(--aqua-400); color: var(--ocean-600); }
.filter.active { background: linear-gradient(135deg, var(--ocean-700), var(--aqua-500)); color: #fff; border-color: transparent; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem,5vw,4.5rem); align-items: start; }
.enquiry-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.8rem,3vw,2.8rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.enquiry-form h3 { margin-bottom: 0.4rem; }
.enquiry-form .sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.8rem; }
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 0.5rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1.05rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 0.96rem; color: var(--ink); background: var(--shell);
  transition: border-color 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--aqua-400); box-shadow: 0 0 0 4px var(--aqua-100); background: #fff; }
.enquiry-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
[data-form-note] { margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: 12px; background: var(--aqua-100); color: var(--ocean-800); font-weight: 700; font-size: 0.92rem; display: none; }
[data-form-note].show { display: flex; align-items: center; gap: 0.6rem; animation: notepop 0.5s var(--ease); }
@keyframes notepop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.contact-aside { display: grid; gap: 1.4rem; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 1.7rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-card h4 { font-family: var(--sans); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-500); margin-bottom: 1rem; }
.info-row { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 0.9rem; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ico { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--aqua-100); display: grid; place-items: center; color: var(--ocean-600); }
.info-row .ico svg { width: 19px; height: 19px; }
.info-row .t b { display: block; font-size: 0.94rem; }
.info-row .t span, .info-row .t a { font-size: 0.9rem; color: var(--ink-soft); }
.info-row .t a:hover { color: var(--ocean-600); }
.hours-list { display: grid; gap: 0.55rem; }
.hours-list div { display: flex; justify-content: space-between; font-size: 0.92rem; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--line); }
.hours-list div:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list span:first-child { color: var(--ink-soft); font-weight: 600; }
.hours-list span:last-child { font-weight: 700; color: var(--ink); }
.hours-list .closed { color: var(--sand-700); }

.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); margin-top: clamp(3rem,5vw,4.5rem); position: relative; }
.map-card svg { display: block; width: 100%; height: auto; }
.map-pin-label { position: absolute; top: 1.3rem; left: 1.3rem; background: var(--white); border-radius: 14px; padding: 0.8rem 1.1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.6rem; }
.map-pin-label svg { width: 22px; height: 22px; color: var(--aqua-500); }
.map-pin-label b { font-size: 0.92rem; }
.map-pin-label span { display: block; font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ocean-900); color: rgba(255,255,255,0.78); padding-top: clamp(3.5rem,6vw,5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-mark .wave { color: var(--aqua-400); }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 320px; line-height: 1.7; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--aqua-500); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-300); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.92rem; margin-bottom: 0.65rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-nap { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.footer-nap a:hover { color: var(--aqua-300); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-disclaimer { background: rgba(0,0,0,0.28); color: rgba(255,255,255,0.5); font-size: 0.78rem; text-align: center; padding: 1.1rem 1.5rem; line-height: 1.6; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-media { max-width: 540px; margin-inline: auto; }
  .split, .contact-grid, .featured-post, .split-head { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .featured-post .fp-media { aspect-ratio: 16/9; }
  .listings-grid, .areas-grid, .journal-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { position: fixed; inset: 0; top: 0; background: var(--shell); z-index: 200; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1.4rem; gap: 1.5rem; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 4rem; }
  .nav.open .nav-links a { font-size: 1.4rem; font-family: var(--serif); padding: 0.6rem 0; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; margin-top: auto; }
  .nav.open .nav-cta .btn { justify-content: center; }
  .nav.open .nav-toggle { position: absolute; top: 1.4rem; right: 1.4rem; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2.4rem 1rem; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { display: none; }
  .listings-grid, .areas-grid, .journal-grid, .quotes-grid, .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-badge { left: 0.5rem; }
  .hero-float { right: 0.5rem; }
}
@media (max-width: 420px) {
  .hero-badge, .hero-float { transform: scale(0.9); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-frame img { animation: none; transform: scale(1.04); }
}
