/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #b8953f;
  --gold-l: #d4af6a;
  --dark:   #1a1713;
  --mid:    #2e2a24;
  --cream:  #faf8f4;
  --warm:   #f5f1eb;
  --text:   #3d3730;
  --muted:  #7a7168;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,149,63,0.15);
}

.nav__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__logo-mark {
  flex-shrink: 0;
  display: block;
}

.nav nav {
  display: flex;
  gap: 2rem;
}

.nav nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav nav a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background:
    linear-gradient(to bottom, rgba(250,248,244,0.55) 0%, rgba(250,248,244,1) 100%),
    radial-gradient(ellipse at 65% 35%, rgba(184,149,63,0.14) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 70%, rgba(184,149,63,0.07) 0%, transparent 60%);
  position: relative;
}

.hero__content { max-width: 700px; }

.hero__logo {
  margin-bottom: 2rem;
}

.hero__logo img {
  display: block;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover { background: var(--dark); border-color: var(--dark); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover { background: var(--gold); color: #fff; }

/* ── Heritage strip ── */
.heritage {
  background: var(--dark);
  padding: 2.5rem 2rem;
}

.heritage__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--gold-l);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.stat__num sup {
  font-size: 0.6em;
  vertical-align: super;
}

.stat__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.4);
  margin-top: 0.35rem;
}

.heritage__rule {
  width: 1px;
  height: 3rem;
  background: rgba(184,149,63,0.25);
  flex-shrink: 0;
}

/* ── Sections ── */
.section { padding: 6rem 2rem; }

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--cream {
  background: var(--warm);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section__inner--split-contact {
  gap: 4rem;
}

.section__inner--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__text h2,
.section__inner--center h2,
.section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
}

.section--dark h2 em {
  font-style: italic;
  color: var(--gold-l);
}

.section__text p { color: var(--muted); margin-bottom: 1rem; }

.section--dark .section__text p,
.section--dark p { color: rgba(250,248,244,0.65); }

.section__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.section__sub--center { max-width: 560px; margin: 0 auto 2rem; }

.label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.label--light { color: var(--gold-l); }

/* ── Image placeholder ── */
.image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #ede6d8, #d4c9b0);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder--tall { aspect-ratio: 3/4; }

.image-placeholder--contact { aspect-ratio: 1/1; }

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184,149,63,0.2);
  border-radius: 2px;
  pointer-events: none;
}

.image-placeholder__inner {
  text-align: center;
  padding: 2rem;
}

.image-placeholder__ornament {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}

.image-placeholder__year {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.image-placeholder__founder {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(184,149,63,0.18);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,149,63,0.1);
}

.service-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0.7;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Materials row ── */
.materials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.material-chip {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184,149,63,0.35);
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-l);
  background: rgba(184,149,63,0.06);
}

/* ── Contact list ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item__value {
  font-size: 1rem;
  color: var(--dark);
}

.contact-item__value:hover { color: var(--gold); }

/* ── Divider ── */
.divider {
  text-align: center;
  padding: 2.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  background: var(--cream);
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--mid);
  color: rgba(250,248,244,0.35);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(250,248,244,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.footer__copy { margin-top: 0.5rem; }

.footer a { color: var(--gold-l); transition: color 0.2s; }
.footer a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage__inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .heritage__rule { display: none; }

  .stat { flex: 0 0 calc(50% - 1.5rem); }
}

@media (max-width: 680px) {
  .section__inner--split,
  .section__inner--split-contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section__image { order: -1; }

  .image-placeholder--tall,
  .image-placeholder--contact { aspect-ratio: 3/2; }

  .services-grid { grid-template-columns: 1fr; }

  .stat { flex: 0 0 calc(50% - 0.75rem); }

  .nav nav { gap: 1.25rem; }

  .hero__actions { flex-direction: column; align-items: center; }
}
