:root {
  --black: #0f0b07;
  --dark: #1e1914;
  --text: #272727;
  --muted: #6f6a64;
  --light: #f6f5f1;
  --white: #ffffff;
  --gold: #e8cf72;
  --gold-dark: #c9aa42;
  --border: #ece7dc;
  --shadow: 0 20px 50px rgba(15, 11, 7, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 7vw;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.main-nav { display: flex; gap: 36px; font-weight: 700; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--gold-dark); }
.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-button,
.button.primary { background: var(--gold); color: var(--black); box-shadow: 0 10px 24px rgba(232,207,114,.25); }
.button.secondary { border: 2px solid var(--black); color: var(--black); background: transparent; }
.header-button:hover,
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15,11,7,.15); }

.section-light { background: linear-gradient(180deg, #f8f7f3 0%, #efeee9 100%); }
.section-white { background: var(--white); }
.hero { padding: 92px 7vw 72px; text-align: center; }
.hero-inner { max-width: 980px; margin: 0 auto; }
.hero-logo {
  width: 165px;
  height: 165px;
  object-fit: contain;
  margin: 0 auto 34px;
  border-radius: 50%;
  filter: drop-shadow(0 18px 22px rgba(15,11,7,.14));
}
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; letter-spacing: -0.04em; }
h1 { font-size: clamp(4rem, 9vw, 8.5rem); line-height: .88; color: var(--black); }
h1 span, h2, .service-card h3, .contact-box h3 { color: var(--gold); }
.hero p { max-width: 880px; margin: 34px auto 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.7rem); line-height: 1.45; }
.button-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 46px; }

.services, .contact { padding: 78px 7vw 92px; }
.section-heading { text-align: center; margin: 0 auto 58px; max-width: 900px; }
.section-heading h2 { font-size: clamp(3.5rem, 7vw, 6.6rem); line-height: .95; }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.35rem); }
.cards { display: grid; gap: 34px; max-width: 1160px; margin: 0 auto; }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  min-height: 285px;
  padding: 42px 38px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 8px 28px rgba(15,11,7,.04);
}
.service-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.25rem; line-height: 1.05; margin-bottom: 24px; }
.service-card p { color: #56514d; font-size: 1.05rem; margin: 0; }

.testimonials { padding: 86px 7vw 96px; background: var(--black); color: var(--white); }
.dark-heading h2 { color: var(--gold); }
.dark-heading p { color: rgba(255,255,255,.72); }
.testimonial-card {
  padding: 44px 42px;
  min-height: 315px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.18));
  border: 1px solid rgba(232,207,114,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), var(--shadow);
}
.quote { margin: 0 0 36px; font-size: 1.18rem; font-style: italic; color: rgba(255,255,255,.9); }
.name { margin: 0; color: var(--gold); font-weight: 800; }
.role { margin: 4px 0 0; font-size: .92rem; color: rgba(255,255,255,.68); }

.contact-box {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 34px 38px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid var(--border);
}
.contact-box p { margin: 12px 0; color: var(--muted); }
.email-link { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--black); border-bottom: 2px solid var(--gold); }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding: 64px 7vw;
  background: var(--black);
  color: var(--white);
}
.footer-logo { width: 78px; height: 78px; object-fit: contain; border-radius: 50%; margin-bottom: 22px; }
.footer-brand p { max-width: 310px; color: rgba(255,255,255,.76); margin: 0; }
.footer-column h3 { color: var(--gold); margin-bottom: 18px; font-size: 1.1rem; }
.footer-column a, .footer-column p { display: block; color: rgba(255,255,255,.76); margin: 0 0 10px; }
.footer-column a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .site-header { padding: 0 5vw; height: auto; min-height: 84px; flex-wrap: wrap; justify-content: center; padding-top: 14px; padding-bottom: 14px; }
  .main-nav { order: 3; width: 100%; justify-content: center; gap: 22px; font-size: .95rem; }
  .three-columns, .two-columns, .site-footer { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .service-card, .testimonial-card { min-height: auto; }
}

@media (max-width: 560px) {
  .header-button { padding: 0 18px; min-height: 42px; }
  .nav-logo { width: 48px; height: 48px; }
  .hero-logo { width: 128px; height: 128px; }
  h1 { font-size: 4.1rem; }
  .section-heading h2 { font-size: 3.4rem; }
  .button { width: 100%; }
  .service-card, .testimonial-card, .contact-box { padding: 30px 26px; }
}
