/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:       #4A2C4A;
  --plum-deep:  #3A1F3A;
  --plum-light: #6B406B;
  --amber:      #D4A03C;
  --amber-light:#E8C06A;
  --amber-pale: #FDF3E0;
  --cream:      #FAF8F5;
  --white:      #FFFFFF;
  --black:      #1A1A1A;
  --gray-900:   #2C2C2C;
  --gray-700:   #555555;
  --gray-500:   #888888;
  --gray-300:   #D0D0D0;
  --gray-100:   #F0EEEB;
  --serif:      'Instrument Serif', Georgia, serif;
  --sans:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-700); }

/* Focus */
:focus-visible { outline: 1.5px solid var(--amber); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--plum); color: var(--white);
  padding: 0.5rem 1rem; z-index: 200; font-size: 0.875rem;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Typography ───────────────────────────────────── */
.eyebrow, .section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 1.5rem;
}

/* ── Header ───────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 1px 0 var(--gray-100); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--sans);
}
.logo-mark {
  font-weight: 600; font-size: 1.1rem; color: var(--plum);
  letter-spacing: -0.02em;
}
.logo-text {
  font-weight: 300; font-size: 0.9rem; color: var(--gray-700);
  letter-spacing: 0.02em;
}

.nav ul { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.8125rem; font-weight: 400; color: var(--gray-700);
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav a:hover { color: var(--plum); }

.nav-cta {
  color: var(--amber) !important;
  border: 1px solid var(--amber);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--amber); color: var(--white) !important; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle-line {
  display: block; width: 22px; height: 1.5px; background: var(--gray-900);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.8rem 1.75rem; border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum); color: var(--white);
  border: 1.5px solid var(--plum);
}
.btn-primary:hover { background: var(--plum-deep); border-color: var(--plum-deep); }
.btn-outline {
  background: transparent; color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-light {
  background: var(--white); color: var(--plum);
  border: 1.5px solid var(--white);
}
.btn-light:hover { background: var(--amber-pale); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: stretch;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 5rem);
  padding-right: 0;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.08; color: var(--plum);
  margin-bottom: 1.75rem; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--amber); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.75; color: var(--gray-700);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-accent {
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--amber);
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}
.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover { background: var(--cream); border-color: var(--amber-light); }
.service-num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 400;
  color: var(--amber-light); line-height: 1; margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--amber); }
.service-card h3 {
  font-family: var(--serif); font-size: 1.375rem; font-weight: 400;
  color: var(--plum); margin-bottom: 0.75rem; line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem; line-height: 1.7; color: var(--gray-700); font-weight: 300;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-visual img {
  width: 100%; height: auto; aspect-ratio: 58/42;
  object-fit: cover; border-radius: 2px;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  font-size: 0.95rem; line-height: 1.8; color: var(--gray-700);
  margin-bottom: 1rem; font-weight: 300;
}
.about-details {
  display: flex; gap: 3rem; margin-top: 2rem;
  border-top: 1px solid var(--gray-100); padding-top: 2rem;
}
.about-details dt {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.35rem;
}
.about-details dd { font-size: 0.95rem; color: var(--gray-900); }
.about-details a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.about-details a:hover { color: var(--amber); }

/* ── Why ──────────────────────────────────────────── */
.why {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--plum);
}
.why .section-eyebrow { color: var(--amber-light); }
.why .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item {
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, border-color 0.3s;
}
.why-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); }
.why-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--amber); border-radius: 50%;
  color: var(--amber); margin-bottom: 1.5rem;
}
.why-item h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.3;
}
.why-item p {
  font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.6); font-weight: 300;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--amber);
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eyebrow { color: var(--plum); opacity: 0.6; margin-bottom: 1rem; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--plum);
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1rem; color: var(--plum); opacity: 0.7;
  margin-bottom: 2rem; font-weight: 300;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Location ─────────────────────────────────────── */
.location {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.location-info dl { margin-bottom: 2rem; }
.location-info dt {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.35rem;
}
.location-info dd { font-size: 1rem; color: var(--gray-900); margin-bottom: 1.25rem; }
.location-info a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.location-info a:hover { color: var(--amber); }
.location-note {
  font-size: 0.875rem; line-height: 1.7; color: var(--gray-500); font-weight: 300;
}
.location-map {
  aspect-ratio: 4/3; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--gray-100);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-content .section-title { margin-bottom: 1rem; }
.contact-content > p {
  font-size: 0.95rem; line-height: 1.75; color: var(--gray-700);
  margin-bottom: 2rem; font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--gray-700); font-weight: 300;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--plum); }
.contact-link svg { color: var(--amber); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: clamp(2rem, 3vw, 3rem);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea {
  width: 100%; font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  color: var(--gray-900); background: var(--cream);
  border: 1px solid var(--gray-300); border-radius: 2px;
  padding: 0.7rem 0.85rem; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--plum);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; font-size: 0.875rem; color: var(--plum); font-weight: 400;
}
.form-success svg { color: var(--amber); }

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.5rem; margin-bottom: 1rem;
}
.footer-brand .logo-mark { color: var(--amber); font-size: 1.1rem; }
.footer-brand .logo-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.35); font-weight: 300;
  line-height: 1.8;
}
.footer a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer a:hover { color: var(--amber); }

/* ── Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25,0.1,0.25,1), transform 0.7s cubic-bezier(0.25,0.1,0.25,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.7fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    padding: 2rem var(--gutter);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25,0.1,0.25,1);
    z-index: 99;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nav a { font-size: 1.1rem; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding-top: 5rem; padding-bottom: 4rem; min-height: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
