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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --dark: #1a1612;
  --brown: #6b4c2a;
  --gold: #c4973a;
  --text: #2e2620;
  --muted: #8a7b6e;
  --border: rgba(106,76,42,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.72rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brown); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--brown);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,0.15) 0%, transparent 30%);
}

/* SECTION SHARED */
section { padding: 7rem 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.ornament {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
}

/* ABOUT */
#about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.about-body {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
}

.about-body p + p { margin-top: 1.2rem; }

.about-side {
  padding-top: 1rem;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--brown);
  border-left: 2px solid var(--gold);
  padding-left: 1.8rem;
  margin-top: 3rem;
}

/* TESTIMONIALS */
#testimonials { background: var(--cream); }

.testimonials-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

.testimonials-intro .ornament { margin: 1.5rem auto 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.8rem;
  padding-top: 1.5rem;
}

.testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

/* CONTACTS */
#contacts { background: var(--dark); }

#contacts .section-title { color: var(--cream); }
#contacts .section-label { color: var(--gold); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(196,151,58,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-value {
  color: rgba(245,240,232,0.85);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.55;
}

.contact-value:hover { color: var(--gold); }

.contact-map {
  border: 1px solid rgba(196,151,58,0.2);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
  filter: none;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(196,151,58,0.15);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.1em;
}

/* RESPONSIVE */
/* HAMBURGER MENU (mobile only) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: auto; }
  .hero-image img { height: auto; object-fit: contain; }
  .hero-text { padding: 4rem 2rem; }
  .about-grid, .testimonials-grid, .contacts-grid { grid-template-columns: 1fr; gap: 3rem; }
  nav { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
  }
}
