:root {
  --radius: 0.25rem;
  --primary: oklch(0.52 0.058 65);
  --primary-foreground: oklch(0.98 0.01 80);
  --secondary: oklch(0.74 0.075 75);
  --secondary-foreground: oklch(0.18 0.01 60);
  --cream: oklch(0.965 0.008 75);
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.01 60);
  --ink: oklch(0.14 0.005 60);
  --muted: oklch(0.965 0.008 75);
  --muted-foreground: oklch(0.5 0.015 65);
  --accent: oklch(0.74 0.075 75);
  --border: oklch(0.9 0.01 70);
  --shadow-card: 0 1px 2px oklch(0 0 0 / 0.04), 0 8px 24px oklch(0 0 0 / 0.06);
  --shadow-card-hover: 0 4px 8px oklch(0 0 0 / 0.06), 0 24px 48px oklch(0 0 0 / 0.12);
  --ease-elegant: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--primary);
}
.eyebrow .line { display: inline-block; height: 1px; width: 2.5rem; background: var(--primary); }

.icon { width: 1rem; height: 1rem; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Animations */
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(8deg); }
}
@keyframes float-slower {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(-6deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-elegant), transform 1s var(--ease-elegant);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hover-lift { transition: transform 0.5s var(--ease-elegant), box-shadow 0.5s var(--ease-elegant); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

/* ============== Nav ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-elegant);
  background: transparent;
}
.nav.scrolled {
  padding: 0.75rem 0;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }

.logo { display: inline-flex; align-items: center; }
.logo img { height: 3.5rem; width: auto; object-fit: contain; }
.logo-invert img { filter: brightness(0) invert(1); opacity: 0.9; }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  font-size: 0.875rem; font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: none;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) { .nav-cta { display: inline-block; } }
.nav-cta:hover { background: transparent; color: var(--primary); }

.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem; margin-right: -0.5rem;
  color: var(--foreground);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn .icon { width: 1.5rem; height: 1.5rem; }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 40;
  background: var(--cream);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-elegant);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-close {
  position: absolute; right: 1.5rem; top: 1.5rem; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  height: 2.75rem; width: 2.75rem; border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent);
  background: var(--background);
  color: var(--ink);
  transition: all 0.2s ease;
}
.mobile-menu-close:hover { border-color: var(--primary); color: var(--primary); }
.mobile-menu-list {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 2rem; padding: 0 1.5rem;
}
.mobile-menu-list a.menu-item {
  font-family: var(--serif); font-size: 1.875rem; color: var(--ink);
  transition: color 0.3s ease;
}
.mobile-menu-list a.menu-item:hover { color: var(--primary); }
.mobile-menu-cta {
  margin-top: 1rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.75rem 2rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 2px;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--cream);
  padding: 7rem 0 5rem;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 5rem; } }
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
}
.orb-1 {
  right: -8rem; top: -5rem;
  height: 30rem; width: 30rem;
  opacity: 0.6;
  background: radial-gradient(circle, oklch(0.78 0.08 70 / 0.55), transparent 70%);
  animation: float-slow 18s ease-in-out infinite;
}
.orb-2 {
  left: -6rem; bottom: 0;
  height: 23.75rem; width: 23.75rem;
  opacity: 0.5;
  background: radial-gradient(circle, oklch(0.65 0.07 55 / 0.4), transparent 70%);
  animation: float-slower 24s ease-in-out infinite;
}
.hero-svg-circle {
  position: absolute; right: 6%; top: 14%;
  height: 8rem; width: 8rem; opacity: 0.7;
  display: none;
  animation: float-slower 24s ease-in-out infinite;
}
@media (min-width: 1024px) { .hero-svg-circle { display: block; } }

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }
@media (min-width: 1024px) { .hero-grid { gap: 4rem; } }

.hero-text { animation: fade-up 0.9s 0.2s var(--ease-elegant) both; }
@media (min-width: 768px) { .hero-text { grid-column: span 7; } }
.hero-tag {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
  animation: fade-up 0.8s 0.1s var(--ease-elegant) both;
}
.hero-tag .line { display: inline-block; height: 1px; width: 3rem; background: var(--primary); }
.hero-tag span:last-child { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; font-style: italic; color: var(--primary); }

.hero-lead {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem; line-height: 1.7;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  animation: fade-up 0.9s 0.9s var(--ease-elegant) both;
}
@media (min-width: 768px) { .hero-lead { font-size: 1.125rem; } }

.hero-facts {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  padding: 1.25rem 0;
  animation: fade-up 0.9s 1s var(--ease-elegant) both;
}
.fact-value { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
@media (min-width: 768px) { .fact-value { font-size: 1.875rem; } }
.fact-label { margin-top: 0.25rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }

.hero-creds {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  animation: fade-up 0.9s 1.05s var(--ease-elegant) both;
}
.hero-creds span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-creds .icon { color: var(--primary); width: 15px; height: 15px; }

.hero-actions {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  animation: fade-up 0.9s 1.1s var(--ease-elegant) both;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: var(--ink); }
.btn-primary .icon { transition: transform 0.3s ease; }
.btn-primary:hover .icon { transform: translateX(4px); }
.btn-outline {
  border: 1px solid color-mix(in oklab, var(--ink) 30%, transparent);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.hero-portrait-col { position: relative; animation: fade-up 1s 0.4s var(--ease-elegant) both; }
@media (min-width: 768px) { .hero-portrait-col { grid-column: span 5; } }

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .hero-portrait { max-width: none; } }
.hero-portrait img { height: 100%; width: 100%; object-fit: cover; }
.hero-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, var(--ink) 55%, transparent), color-mix(in oklab, var(--ink) 5%, transparent), transparent);
}
.hero-portrait-meta { position: absolute; bottom: 0; left: 0; padding: 1.5rem; }
.hero-portrait-meta .name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.hero-portrait-meta .title { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--secondary); }
.hero-portrait-stars { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.25rem; color: var(--secondary); }
.hero-portrait-stars .stars-text { margin-left: 0.5rem; font-size: 0.75rem; color: color-mix(in oklab, var(--cream) 80%, transparent); }
.hero-portrait-stars .icon { width: 12px; height: 12px; fill: currentColor; stroke: none; }

.hero-frame {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  height: 6rem; width: 6rem;
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  display: none;
}
@media (min-width: 1024px) { .hero-frame { display: block; } }

.hero-property-card {
  position: absolute;
  bottom: -2.5rem;
  right: 0.5rem;
  width: 16rem;
  background: var(--background);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: none;
  transition: transform 0.3s ease;
}
@media (min-width: 640px) { .hero-property-card { display: block; } }
@media (min-width: 768px) { .hero-property-card { right: -1.5rem; } }
@media (min-width: 1024px) { .hero-property-card { right: -2.5rem; } }
.hero-property-card:hover { transform: translateY(-4px); }
.hero-property-card .img-wrap { position: relative; height: 8rem; overflow: hidden; }
.hero-property-card .img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hero-property-card:hover .img-wrap img { transform: scale(1.05); }
.hero-property-card .badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.25rem 0.5rem;
  font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
}
.hero-property-card .body { padding: 1rem; }
.hero-property-card .meta { display: flex; align-items: center; gap: 0.375rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.hero-property-card .meta .icon { width: 11px; height: 11px; }
.hero-property-card .title { margin-top: 0.25rem; font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.hero-property-card .row { margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; }
.hero-property-card .loc { font-size: 0.75rem; color: var(--muted-foreground); }
.hero-property-card .price { font-family: var(--serif); font-size: 0.875rem; color: var(--primary); }

.hero-scroll {
  margin-top: 3.5rem;
  display: flex; justify-content: center;
  color: color-mix(in oklab, var(--ink) 50%, transparent);
  transition: color 0.3s ease;
  animation: fade-in 1s 1.5s both;
}
@media (min-width: 768px) { .hero-scroll { margin-top: 5rem; } }
.hero-scroll:hover { color: var(--primary); }
.hero-scroll .icon { width: 20px; height: 20px; animation: bounce-slow 2.4s infinite; }

/* ============== Stats ============== */
.stats {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: var(--background);
  padding: 5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stat-cell { padding: 2rem 1.5rem; text-align: center; border-bottom: 1px solid var(--border); }
.stat-cell:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .stat-cell { border-bottom: 0; border-right: 1px solid var(--border); padding: 1rem 1.5rem; }
  .stat-cell:last-child { border-right: 0; }
}
.stat-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 3.75rem; color: var(--primary);
  line-height: 1;
}
@media (min-width: 768px) { .stat-num { font-size: 4.5rem; } }
.stat-name {
  margin-top: 0.75rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

/* ============== Section base ============== */
.section { padding: 8rem 0; }
.section-cream { background: var(--cream); }
.section-bg { background: var(--background); }

.section-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) {
  .section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: 3rem; line-height: 1.05; color: var(--ink);
}
@media (min-width: 768px) { .section-head h2 { font-size: 3.75rem; } }
.section-head .subtitle { font-size: 1.125rem; color: color-mix(in oklab, var(--foreground) 65%, transparent); max-width: 28rem; }

/* ============== Listings ============== */
.listings-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .listings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; } }

.property {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--background);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.property.featured { }
@media (min-width: 768px) { .property.featured { grid-column: span 2; } }

.property-img-wrap { position: relative; overflow: hidden; height: 18rem; }
.property.featured .property-img-wrap { height: 20rem; }
@media (min-width: 768px) { .property.featured .property-img-wrap { height: 28rem; } }
.property-img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s var(--ease-elegant); }
.property:hover .property-img-wrap img { transform: scale(1.05); }
.property-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, var(--ink) 40%, transparent), transparent);
  transition: opacity 0.5s ease;
}
.property:hover .property-img-wrap::after { opacity: 0.7; }

.property-tags {
  position: absolute; left: 1.25rem; top: 1.25rem; z-index: 10;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.property-tag {
  background: color-mix(in oklab, var(--cream) 95%, transparent);
  color: var(--ink);
  padding: 0.375rem 0.75rem;
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.property-tag.new { background: var(--primary); color: var(--primary-foreground); }

.property-body { display: flex; flex-direction: column; flex: 1; padding: 1.75rem; }
.property-body h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.property-loc { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.property-loc .icon { width: 14px; height: 14px; }
.property-price { margin: 1.5rem 0; display: flex; align-items: baseline; gap: 0.5rem; font-family: var(--serif); font-size: 1.875rem; color: var(--primary); }
.property-specs {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.spec { font-size: 0.875rem; }
.spec-head { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--muted-foreground); }
.spec-head .icon { width: 14px; height: 14px; }
.spec-value { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.property-cta {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink);
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}
.property-cta:hover { color: var(--primary); }
.property-cta .icon { transition: transform 0.3s ease; }
.property-cta:hover .icon { transform: translateX(4px); }

.center-link {
  margin-top: 4rem;
  display: flex; justify-content: center;
}
.center-link a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; color: var(--ink);
  transition: color 0.3s ease;
}
.center-link a:hover { color: var(--primary); }
.center-link a .icon { transition: transform 0.3s ease; }
.center-link a:hover .icon { transform: translateX(4px); }

/* ============== Process ============== */
.process-wrap { position: relative; }
.process-line {
  display: none;
  position: absolute; left: 0; top: 3rem;
  width: 100%; height: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .process-line { display: block; } }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }
.step { position: relative; }
.step-num {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  height: 4rem; width: 4rem;
  border-radius: 9999px;
  border: 1px solid var(--primary);
  background: var(--cream);
  font-family: var(--serif); font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.5s ease;
}
.step:hover .step-num { background: var(--primary); color: var(--primary-foreground); }
.step h3 { margin-top: 1.5rem; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.step p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

/* ============== About ============== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6rem; } }

.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 2.25rem; line-height: 1.15;
  color: var(--ink);
}
@media (min-width: 768px) { .about-quote { font-size: 3rem; } }
@media (min-width: 1024px) { .about-quote { font-size: 3.5rem; } }
.about-attribution { margin-top: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.about-attribution .line { display: inline-block; height: 1px; width: 4rem; background: var(--primary); }
.about-attribution span:last-child { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }

.about-text { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.125rem; line-height: 1.7; color: color-mix(in oklab, var(--foreground) 75%, transparent); }
.about-text strong { color: var(--ink); font-weight: 500; }

.about-badges {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .about-badges { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.badge-cell {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
  background: var(--cream);
  padding: 1.5rem;
  transition: background 0.2s ease;
}
.badge-cell:hover { background: var(--background); }
.badge-cell .icon { width: 20px; height: 20px; color: var(--primary); }
.badge-cell .label { font-family: var(--serif); font-size: 1.125rem; color: var(--ink); }
.badge-cell .sub { font-size: 0.75rem; color: var(--muted-foreground); }

/* ============== Testimonials ============== */
.testimonials .section-head { margin-bottom: 4rem; }
.testimonials-scroll {
  overflow-x: auto; padding-bottom: 1.5rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex; gap: 1.5rem;
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
  scroll-snap-type: x mandatory;
}
@media (min-width: 1024px) { .testimonials-track { padding: 0 2.5rem; } }
.testimonial {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  flex-shrink: 0;
  min-width: 85%;
  scroll-snap-align: center;
  background: var(--cream);
  padding: 2.5rem;
}
@media (min-width: 768px) { .testimonial { min-width: 26.25rem; padding: 3rem; } }
.testimonial .stars { display: flex; gap: 0.25rem; color: var(--primary); }
.testimonial .stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.testimonial .quote {
  margin: 2rem 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; line-height: 1.6;
  color: var(--ink);
}
.testimonial-foot { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testimonial-name { font-weight: 500; color: var(--ink); }
.testimonial-type { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }

/* ============== Articles ============== */
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .articles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.article {
  display: flex; flex-direction: column;
  background: var(--background);
  overflow: hidden;
}
.article .img-wrap { height: 14rem; overflow: hidden; }
.article .img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.article:hover .img-wrap img { transform: scale(1.05); }
.article-body { display: flex; flex-direction: column; flex: 1; padding: 1.75rem; }
.article-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted-foreground);
}
.article-meta .cat { color: var(--primary); }
.article-meta .sep { display: inline-block; height: 1px; width: 1rem; background: var(--border); }
.article-meta .icon { width: 12px; height: 12px; }
.article h3 { margin-top: 1rem; font-family: var(--serif); font-size: 1.5rem; line-height: 1.3; color: var(--ink); }
.article-excerpt { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.article-link {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--ink);
  transition: color 0.3s ease;
}
.article-link:hover { color: var(--primary); }
.article-link .icon { width: 14px; height: 14px; transition: transform 0.3s ease; }
.article-link:hover .icon { transform: translateX(4px); }

/* ============== Contact ============== */
.contact { background: var(--ink); color: var(--cream); padding: 8rem 0; }
.contact .section-head h2 { color: var(--cream); }
.contact .eyebrow { color: var(--secondary); }
.contact .eyebrow .line { background: var(--secondary); }
.contact .section-head .subtitle { color: color-mix(in oklab, var(--cream) 70%, transparent); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5rem; } }
.contact-info { }
@media (min-width: 1024px) { .contact-info { grid-column: span 2; } }
.contact-form-wrap { }
@media (min-width: 1024px) { .contact-form-wrap { grid-column: span 3; } }

.contact-portrait {
  position: relative; aspect-ratio: 4 / 5;
  width: 100%; max-width: 24rem;
  overflow: hidden;
}
.contact-portrait img { height: 100%; width: 100%; object-fit: cover; }
.contact-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, var(--ink) 70%, transparent), transparent);
}
.contact-portrait-meta { position: absolute; bottom: 0; left: 0; padding: 1.75rem; z-index: 1; }
.contact-portrait-meta .name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.contact-portrait-meta .title { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--secondary); }

.contact-meta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  color: color-mix(in oklab, var(--cream) 85%, transparent);
  transition: color 0.3s ease;
}
.contact-link:hover { color: var(--secondary); }
.contact-link span:first-child {
  display: flex; align-items: center; justify-content: center;
  height: 2.5rem; width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--cream) 20%, transparent);
  transition: border-color 0.3s ease;
}
.contact-link:hover span:first-child { border-color: var(--secondary); }
.contact-link .icon { width: 16px; height: 16px; }
.contact-link span:last-child { font-size: 1rem; }

.contact-socials { margin-top: 2.5rem; display: flex; gap: 0.75rem; }
.social {
  display: flex; align-items: center; justify-content: center;
  height: 2.75rem; width: 2.75rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--cream) 20%, transparent);
  color: color-mix(in oklab, var(--cream) 80%, transparent);
  transition: all 0.3s ease;
}
.social .icon { width: 16px; height: 16px; }
.social:hover { border-color: var(--secondary); background: var(--secondary); color: var(--ink); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: color-mix(in oklab, var(--cream) 60%, transparent);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 20%, transparent);
  background: transparent;
  padding: 0.75rem 0;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { background: var(--ink); color: var(--cream); }
.field textarea { resize: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--secondary); }
.field-error { margin-top: 0.5rem; font-size: 0.75rem; color: var(--secondary); }

.gdpr {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--cream) 70%, transparent);
}
.gdpr input {
  margin-top: 4px;
  height: 1rem; width: 1rem;
  cursor: pointer;
  accent-color: var(--secondary);
  flex-shrink: 0;
}

.submit-btn {
  margin-top: 1rem;
  background: var(--secondary); color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  width: 100%;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .submit-btn { width: auto; } }
.submit-btn:hover { background: var(--cream); }

.contact-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 25rem;
  border: 1px solid color-mix(in oklab, var(--cream) 15%, transparent);
  background: color-mix(in oklab, var(--cream) 5%, transparent);
  padding: 3rem;
  text-align: center;
}
.contact-success .check {
  display: flex; align-items: center; justify-content: center;
  height: 4rem; width: 4rem;
  border-radius: 9999px;
  background: var(--secondary); color: var(--ink);
}
.contact-success .check .icon { width: 28px; height: 28px; }
.contact-success h3 { margin-top: 1.5rem; font-family: var(--serif); font-size: 1.875rem; color: var(--cream); }
.contact-success p { margin-top: 0.75rem; max-width: 28rem; color: color-mix(in oklab, var(--cream) 70%, transparent); }

/* ============== Footer ============== */
.footer {
  border-top: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
  background: var(--ink);
  color: color-mix(in oklab, var(--cream) 70%, transparent);
  padding: 4rem 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.footer-tagline { margin-top: 1.5rem; max-width: 18rem; font-size: 0.875rem; line-height: 1.7; }
.footer-heading {
  margin-bottom: 1.25rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--secondary);
}
.footer-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-list a { transition: color 0.3s ease; }
.footer-list a:hover { color: var(--secondary); }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: color-mix(in oklab, var(--cream) 50%, transparent);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom .legal { display: flex; gap: 1.5rem; }
.footer-bottom .legal a:hover { color: var(--secondary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
