@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary: #8B7355;
  --primary-soft: #B8A595;
  --primary-deep: #5C4D3C;
  --accent: #C9A876;
  --accent-soft: #E5D5B7;
  --bg: #FFFFFF;
  --bg-tint: #F5EFE6;
  --bg-cream: #FAF6F0;
  --bg-card: #FFFFFF;
  --text: #3A2E25;
  --text-soft: #6B5D4F;
  --text-mute: #9C8E80;
  --border: #E8DED1;
  --border-soft: #F0E8DC;
  --shadow-soft: 0 16px 50px rgba(92, 77, 60, 0.10);
  --shadow-card: 0 6px 24px rgba(92, 77, 60, 0.06);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; color: var(--text-soft); }

a { color: var(--primary-deep); text-decoration: none; }
a:hover { color: var(--primary); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 280ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(92, 77, 60, 0.24);
}
.btn-primary:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(92, 77, 60, 0.30);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-cream);
  border-color: var(--accent);
  color: var(--primary-deep);
}
.btn-wide { display: block; text-align: center; margin-top: 1.4rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-mark {
  color: var(--primary);
  font-size: 1.4rem;
}
.site-nav {
  display: flex;
  gap: 30px;
}
.site-nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 200ms;
}
.site-nav a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: all 250ms;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }
  .site-nav.open { max-height: 320px; }
  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
}

/* ============ HERO ============ */
.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.08), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 400;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.hero-points span {
  color: var(--accent);
  font-size: 0.9rem;
}
.hero-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-figure:hover img { transform: scale(1.04); }
.hero-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(transparent, rgba(42, 42, 38, 0.7));
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--font-heading);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0; }
  .hero-figure { aspect-ratio: 4/3; order: -1; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 90px 0;
  position: relative;
}
.section-tint { background: var(--bg-cream); }
.section-accent {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  position: relative;
}
.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.10), transparent 50%);
  pointer-events: none;
}
.section-accent > .container { position: relative; z-index: 1; }
.section-accent h2,
.section-accent .eyebrow { color: #fff; }
.section-accent .eyebrow { color: rgba(255,255,255,0.8); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
}
.center-col { text-align: center; max-width: 780px; margin: 0 auto; }
.quote {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
}

/* ============ CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; gap: 18px; }
}
.card {
  background: var(--bg-card);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(60, 50, 30, 0.12);
}
.card:hover::before { transform: scaleX(1); }

.card-feature {
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
  transform: translateY(-8px);
  border-color: var(--accent-soft);
}
.card-feature:hover { transform: translateY(-14px); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.card-list li {
  padding: 6px 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  position: relative;
  padding-left: 18px;
}
.card-list li::before {
  content: "—";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 400;
  font-size: 0.85rem;
  top: 7px;
}

/* ============ TWO COLUMN ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
}
.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature {
  margin-top: 1.6rem;
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
}
.signature-line {
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.signature-name {
  font-size: 1.3rem;
  color: var(--primary-deep);
  font-weight: 500;
  font-family: var(--font-heading);
  font-style: italic;
}

/* ============ PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.2rem;
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  padding: 24px 22px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}
.pillar-num {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.pillar h4 { margin-bottom: 4px; }
.pillar p { font-size: 0.9rem; margin: 0; }

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
.contact-card,
.hours-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
@media (max-width: 600px) {
  .contact-card, .hours-card { padding: 30px 24px; }
}
.contact-intro {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ci {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.cl-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 2px;
  font-weight: 600;
}
.cl-value { color: var(--text); font-size: 1rem; }

.hours-card h3 { margin-bottom: 1.2rem; }
.hours {
  width: 100%;
  border-collapse: collapse;
}
.hours td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-soft);
}
.hours td:last-child { text-align: right; color: var(--text); }
.hours tr:last-child td { border-bottom: 0; }
.hours-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-soft);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 28px;
  margin-top: 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-row .brand { color: #fff; }
.footer-row .brand-mark { color: var(--primary-soft); }
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  margin-top: 12px;
}

/* ============ ANIMATION ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 800ms ease backwards; }
.hero-text > *:nth-child(1) { animation-delay: 80ms; }
.hero-text > *:nth-child(2) { animation-delay: 200ms; }
.hero-text > *:nth-child(3) { animation-delay: 320ms; }
.hero-text > *:nth-child(4) { animation-delay: 440ms; }
.hero-text > *:nth-child(5) { animation-delay: 560ms; }
.hero-figure { animation: fadeUp 900ms ease 200ms backwards; }
