:root {
  --bg: #fdf8f3;
  --bg-soft: #f8eee8;
  --rose: #d9a3a3;
  --rose-deep: #b77d79;
  --gold: #caa15f;
  --gold-soft: #e7d0a2;
  --champagne: #f3e4d6;
  --text: #3a2926;
  --text-soft: #75615d;
  --line: rgba(58, 41, 38, 0.08);
  --paper: rgba(255, 251, 247, 0.92);
  --shadow: 0 24px 60px rgba(122, 89, 79, 0.10);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 163, 163, 0.12), transparent 26%),
    radial-gradient(circle at right center, rgba(202, 161, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 44%, #fbf3ed 100%);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--text-soft); }
h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 8vw, 5.7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.section { padding: 6rem 0; }
.center { text-align: center; }
.narrow { max-width: 45rem; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 245, 243, 0.82);
  border-bottom: 1px solid rgba(51, 35, 33, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.logo-image {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(243,228,214,0.95));
  padding: 0.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(202, 161, 95, 0.15);
}
.brand-lockup-textual {
  gap: 1rem;
}
.logo-mark-text {
  min-width: 5.25rem;
  padding: 0.5rem 0.7rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(243,228,214,0.92));
  border: 1px solid rgba(202, 161, 95, 0.18);
  box-shadow: var(--shadow);
  text-align: center;
}
.logo-script {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1;
  font-style: italic;
  background: linear-gradient(135deg, #b77d79 0%, #d9a3a3 45%, #caa15f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-subline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 800;
}
.brand-lockup strong {
  display: block;
  font-size: 1rem;
}
.brand-lockup span {
  color: var(--text-soft);
  font-size: 0.92rem;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  color: var(--text-soft);
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: linear-gradient(135deg, #b77d79 0%, #d9a3a3 45%, #caa15f 100%);
  color: white;
  box-shadow: 0 18px 38px rgba(149, 107, 102, 0.22);
}
.btn-light {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border-color: rgba(208, 172, 114, 0.18);
}
.text-link {
  color: var(--rose-deep);
  font-weight: 700;
}
.brand-lockup strong,
.hero h1,
.section-heading h2,
.statement-copy h2,
.follow-copy h2,
.contact-copy h2 {
  background: linear-gradient(135deg, #b77d79 0%, #d9a3a3 45%, #caa15f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--rose-deep);
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: rgba(208, 172, 114, 0.7);
}

.hero-grid,
.follow-grid,
.statement-grid,
.contact-highlight-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}
.hero-grid { grid-template-columns: 0.95fr 1.05fr; align-items: center; min-height: calc(100vh - 82px); }
.follow-grid,
.statement-grid,
.contact-highlight-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.footer-grid { grid-template-columns: repeat(3, 1fr); }

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-copy p { max-width: 36rem; font-size: 1.06rem; }
.hero-actions { margin-top: 2rem; }

.hero-image-block,
.follow-card,
.statement-image,
.contact-visual {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(202, 161, 95, 0.12);
  background: linear-gradient(145deg, rgba(255,252,249,0.96), rgba(248,238,232,0.88));
}
.hero-image-block img,
.follow-card img,
.statement-image img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-block { min-height: 38rem; }
.follow-card,
.statement-image,
.contact-visual { min-height: 28rem; }
.empty-visual {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,251,247,0.98), rgba(248,238,232,0.9));
}
.empty-visual span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #b77d79 0%, #d9a3a3 45%, #caa15f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.empty-visual-soft {
  background: linear-gradient(145deg, rgba(255,251,247,0.94), rgba(245,231,229,0.84));
}

.follow-section,
.contact-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(248,238,232,0.52));
}

.signature-card,
.service-card,
.showcase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.section-heading { margin-bottom: 2rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.service-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,251,247,0.96), rgba(248,238,232,0.84));
}
.service-card p { margin-bottom: 0; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.showcase-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,251,247,0.96), rgba(248,238,232,0.84));
}
.showcase-card p { margin-bottom: 0; }

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(51, 35, 33, 0.06);
}
.site-footer p,
.site-footer a { color: var(--text-soft); }

@media (max-width: 1100px) {
  .hero-grid,
  .follow-grid,
  .statement-grid,
  .contact-highlight-grid,
  .footer-grid,
  .showcase-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .header-inner,
  .nav-links,
  .hero-grid,
  .follow-grid,
  .statement-grid,
  .contact-highlight-grid,
  .footer-grid,
  .showcase-grid,
  .services-grid,
  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
  .section { padding: 4.5rem 0; }
  .hero-grid { min-height: auto; }
  .hero-image-block,
  .follow-card,
  .statement-image,
  .contact-visual { min-height: 20rem; }
}
