:root {
  --cream: #f7f2eb;
  --paper: #fbf8f3;
  --line: #e4d8c8;
  --gold: #ad8341;
  --gold-deep: #936d34;
  --ink: #171513;
  --muted: #5f5a55;
  --footer: #1d1a19;
  --footer-line: rgba(214, 188, 145, 0.22);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #efe9e1;
  color: var(--ink);
  font-family: 'Inter', Arial, sans-serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.page-shell {
  width: min(100%, 1672px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0,0,0,.03);
}

.topbar {
  display: grid;
  grid-template-columns: 1.15fr 1.6fr 0.75fr;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 10px 48px 8px;
  background: rgba(255,255,255,.96);
}

.logo-wrap { display: flex; align-items: center; }
.logo-image { width: 360px; max-width: 100%; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  font-size: 15px;
}
.main-nav a {
  position: relative;
  color: #27221d;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
}

.ghost-btn {
  justify-self: end;
  border: 1px solid rgba(215, 188, 144, .85);
  color: #f3e5d1;
  background: rgba(24, 22, 20, .92);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: .12em;
  white-space: nowrap;
}
.ghost-btn span { margin-left: 10px; }
.header-btn { color: #eee3d0; }

.hero {
  min-height: 470px;
  background-image: url('assets/hero-clean.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,248,243,.1) 0%, rgba(251,248,243,0) 35%, rgba(15,14,14,.05) 100%);
}
.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.1fr 260px;
  padding: 28px 56px 42px 66px;
}
.hero-content { align-self: center; max-width: 520px; }
.eyebrow {
  margin: 0 0 14px;
  letter-spacing: .35em;
  font-size: 13px;
  color: #645f58;
}
.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(74px, 7vw, 92px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--gold); }
.hero-copy { margin-top: 18px; max-width: 420px; }
.subbrand {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .27em;
  font-weight: 600;
}
.hero-copy p:last-child {
  margin: 0;
  color: #4f4b46;
  line-height: 1.55;
  font-size: 16px;
}
.cta-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #b48a46, #9b7335);
  color: #fff6eb;
  border-radius: 8px;
  padding: 16px 24px;
  letter-spacing: .09em;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(167, 124, 54, .18);
}

.hero-note {
  justify-self: end;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 220px;
  padding: 8px 0 18px;
  color: #efe5d6;
  text-align: left;
}
.hero-note-top {
  align-self: end;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: .24em;
  line-height: 1.7;
  color: #ddd0ba;
}
.hero-note-line {
  width: 72px;
  height: 2px;
  background: rgba(203, 172, 116, .7);
  margin: auto 0 18px auto;
}
.hero-note p {
  margin: 0 0 12px auto;
  width: 145px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.15;
  color: #e8dac5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.03);
  border-bottom: 1px solid rgba(0,0,0,.03);
  background: #fbfaf7;
}
.feature-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 26px 32px 24px 36px;
  border-right: 1px solid var(--line);
}
.feature-card:last-child { border-right: 0; }
.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.feature-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-text h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
}
.feature-text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.feature-text a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .13em;
  color: var(--gold-deep);
  font-weight: 600;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) repeat(2, minmax(0, 1.125fr));
  gap: 32px;
  padding: 34px 54px 24px 64px;
  align-items: start;
}
.contact-intro { padding-right: 18px; }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: .34em;
  color: #5e5951;
}
.section-kicker::before {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--gold);
}
.contact-intro h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.2vw, 70px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.04em;
}
.contact-intro p {
  margin: 0;
  font-size: 15px;
  color: #4f4b46;
  line-height: 1.6;
}
.signature-line {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0 10px;
}
.signature-text {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-deep);
  font-size: 30px;
  line-height: 1.05;
}

.profile-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.profile-photo-link { display: block; }
.profile-photo {
  width: 100%;
  height: 266px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(189, 154, 95, .6);
}
.profile-info { min-width: 0; }
.profile-info h3 {
  margin: 12px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  white-space: nowrap;
}
.profile-brand {
  margin: 4px 0 18px;
  letter-spacing: .22em;
  font-size: 12px;
  color: #6d665f;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 600;
  white-space: nowrap;
}
.phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b48a46, #9b7335);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.phone-icon svg {
  width: 21px;
  height: 21px;
  fill: #fff8f0;
}
.profile-info blockquote {
  margin: 18px 0 18px;
  padding: 0;
  border: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.15;
  color: #49433e;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 240px;
  padding: 14px 22px;
  border: 1px solid rgba(171, 131, 65, .7);
  border-radius: 7px;
  color: #504840;
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 600;
  transition: .2s ease;
}
.call-btn:hover,
.cta-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 26px;
  background: linear-gradient(180deg, #201c1a, #181513);
  color: #e9d6bc;
  padding: 14px 32px 16px;
  font-size: 12px;
  letter-spacing: .16em;
}
.footer-brand,
.footer-domain,
.footer-center,
.footer-motto { white-space: nowrap; }
.footer-divider {
  height: 1px;
  background: var(--footer-line);
  min-width: 50px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-socials a { opacity: .92; }
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: #f3e1c7;
}
.footer-motto {
  text-align: right;
  line-height: 1.5;
  letter-spacing: .13em;
}

@media (max-width: 1380px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px 24px;
  }
  .header-btn { justify-self: center; }
  .hero-overlay { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .feature-grid,
  .contact-section { grid-template-columns: 1fr; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .profile-card { grid-template-columns: 280px 1fr; }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-motto,
  .footer-brand,
  .footer-domain,
  .footer-center { white-space: normal; }
  .footer-motto { text-align: center; }
  .footer-divider { width: 100%; }
}

@media (max-width: 860px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
  .hero { background-position: 63% center; }
  .hero-overlay { padding: 24px 22px 28px; }
  .hero-content { max-width: 100%; }
  .eyebrow { font-size: 11px; letter-spacing: .24em; }
  .hero h1 { font-size: 60px; }
  .contact-section { padding: 28px 22px 22px; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-photo { height: auto; max-height: 380px; }
  .feature-card { padding: 22px; grid-template-columns: 60px 1fr; }
  .feature-text h3 { font-size: 28px; }
  .topbar { padding: 14px 16px; }
}
