:root {
  --ink: #171717;
  --muted: #67625a;
  --paper: #fbfaf7;
  --stone: #ede8df;
  --gold: #b48a42;
  --gold-dark: #8a672e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .14);
}

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

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(251,250,247,.96) 0%, rgba(251,250,247,.86) 38%, rgba(0,0,0,.12) 70%),
    url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--ink);
  position: relative;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  width: 168px;
  height: 108px;
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 800; }
.nav-links a { opacity: .85; }
.nav-links a:hover { opacity: 1; }
.nav-cta { border: 1px solid rgba(180,138,66,.55); padding: 10px 18px; border-radius: 999px; color: var(--gold-dark); }
.menu-toggle { display: none; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 124px);
  display: grid;
  grid-template-columns: minmax(430px, 620px) 320px;
  align-items: center;
  gap: 40px;
  padding: 70px 0;
}
.hero-content { max-width: 760px; }
.hero-logo-wrap {
  width: min(520px, 92vw);
  margin: 0 0 34px;
  background: rgba(255,255,255,.98);
  border-radius: 28px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.hero-logo { width: 100%; height: auto; object-fit: contain; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 8vw, 6.9rem); letter-spacing: -.05em; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.hero-text { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 620px; color: var(--muted); margin: 24px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { padding: 14px 22px; border-radius: 999px; font-weight: 800; }
.button.primary { background: var(--gold); color: #fff; }
.button.secondary { border: 1px solid rgba(180,138,66,.42); color: var(--gold-dark); background: rgba(255,255,255,.72); }
.hero-card {
  align-self: end;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card span { color: var(--muted); display: block; }
.hero-card strong { font-family: Georgia, 'Times New Roman', serif; font-size: 2rem; line-height: 1.1; display: block; margin-top: 8px; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0; }
.intro { display: grid; grid-template-columns: 1fr .85fr; gap: 60px; align-items: start; }
.intro > p { font-size: 1.18rem; color: var(--muted); margin: 42px 0 0; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards article, .steps li {
  background: var(--white);
  border: 1px solid rgba(138,103,46,.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 10px 34px rgba(0,0,0,.05);
}
.cards p, .steps p { color: var(--muted); margin-bottom: 0; }

.gallery { padding-top: 30px; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .8fr; grid-template-rows: 270px 270px; gap: 20px; }
.gallery figure { margin: 0; border-radius: 30px; overflow: hidden; position: relative; box-shadow: var(--shadow); background: var(--stone); }
.gallery figure.large { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
figcaption { position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,.9); padding: 10px 14px; border-radius: 999px; font-weight: 800; font-size: .9rem; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps span { color: var(--gold); font-weight: 900; display: block; margin-bottom: 14px; }
.steps strong { font-size: 1.15rem; }

.contact-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: 36px;
  padding: clamp(32px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 40px;
  box-shadow: var(--shadow);
}
.contact-panel p:not(.eyebrow) { color: rgba(255,255,255,.74); max-width: 560px; }
.contact-details { display: grid; gap: 16px; align-content: center; }
.contact-details a { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 20px; border-radius: 20px; font-weight: 800; }
.contact-details a:hover { background: rgba(255,255,255,.14); }

footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 32px 0 46px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
footer a { color: var(--gold-dark); font-weight: 800; }

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; border: 1px solid rgba(180,138,66,.4); color: var(--ink); background: rgba(255,255,255,.78); border-radius: 999px; padding: 10px 16px; }
  .nav-links { display: none; position: absolute; top: 132px; left: 20px; right: 20px; background: rgba(23,23,23,.94); padding: 18px; border-radius: 22px; flex-direction: column; align-items: stretch; z-index: 5; }
  .nav-links.open { display: flex; }
  .hero, .intro, .contact-panel { grid-template-columns: 1fr; }
  .brand { width: 138px; height: 88px; }
  .hero-logo-wrap { width: 100%; padding: 14px; margin-bottom: 26px; }
  .hero-card { max-width: 360px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 360px 260px 260px; }
  .gallery figure.large { grid-row: auto; }
  footer { flex-direction: column; }
}
