:root {
  --bg: #f7f3eb;
  --bg-soft: #fdfaf4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #2d3a40;
  --muted: #66747a;
  --line: rgba(69, 92, 102, 0.16);
  --gold: #c89144;
  --gold-soft: #a7722d;
  --ivory: #fffef9;
  --sky: #d8eef4;
  --peach: #f5ddd0;
  --shadow: 0 24px 55px rgba(90, 107, 114, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 238, 244, 0.92), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 221, 208, 0.74), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #f6f0e6 48%, #f2eee5 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.7;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0 32px;
  border-bottom: 1px solid rgba(69, 92, 102, 0.12);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  color: var(--gold);
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(110, 126, 133, 0.08);
}

.flag {
  width: 8px;
  height: 18px;
  border-radius: 999px;
}

.flag-blue {
  background: #002b7f;
}

.flag-yellow {
  background: #fcd116;
}

.flag-red {
  background: #ce1126;
}

.heritage-text {
  font-size: 0.84rem;
  color: var(--muted);
}

main {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

section {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.78)),
    radial-gradient(circle at top right, rgba(216, 238, 244, 0.22), transparent 30%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero,
.feature,
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero {
  padding: 44px;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(3.3rem, 6vw, 6rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #efc98d);
  color: #2d2418;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(200, 145, 68, 0.24);
}

.button-secondary {
  border: 1px solid rgba(69, 92, 102, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9ecfd8, #f1bf7b);
  vertical-align: middle;
}

.hero-visual img,
.feature-visual img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(69, 92, 102, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.metrics,
.services,
.gallery,
.process,
.feature,
.contact {
  padding: 34px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metrics article,
.service-card,
.gallery-card,
.process-grid article {
  border: 1px solid rgba(69, 92, 102, 0.1);
  background: var(--surface);
  border-radius: 22px;
}

.metrics article {
  padding: 24px;
}

.metric-value {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.service-grid,
.gallery-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  padding: 24px;
}

.service-card h3,
.gallery-card h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.service-card p,
.gallery-card p,
.feature-copy p,
.feature-note p,
.process-grid p,
.contact-panel p {
  color: var(--muted);
}

.feature {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(216, 238, 244, 0.35), rgba(255, 255, 255, 0.72));
}

.feature-note span {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--gold);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(69, 92, 102, 0.1);
}

.gallery-card div {
  padding: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  padding: 22px;
}

.process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 238, 244, 0.8);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.contact {
  padding: 0;
}

.contact-panel {
  padding: 34px;
}

.contact-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.contact-note {
  max-width: 34ch;
  font-size: 0.92rem;
}

.footer {
  padding: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .feature,
  .contact-panel,
  .metrics,
  .gallery-grid,
  .process-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .metrics,
  .services,
  .gallery,
  .process,
  .feature,
  .contact-panel {
    padding: 26px;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .heritage-badge {
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero h1,
  .section-heading h2,
  .feature-copy h2,
  .contact-panel h2 {
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
