:root {
  --bg: #f5f1eb;
  --bg-alt: #ede6de;
  --paper: #fffdfa;
  --paper-strong: #ffffff;
  --ink: #191715;
  --muted: #6d655f;
  --line: rgba(36, 31, 26, 0.1);
  --brand: #1f3142;
  --brand-soft: #e7edf4;
  --accent: #c46f43;
  --accent-soft: #f3e0d3;
  --shadow: 0 28px 80px rgba(45, 36, 28, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 111, 67, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(31, 49, 66, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8f4 0%, #f5f1eb 48%, #efe7dd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 248, 244, 0.82);
  border-bottom: 1px solid rgba(25, 23, 21, 0.06);
}

.nav-shell,
.hero-shell,
.section-shell,
.band-shell,
.footer-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), #2f4760);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 32px rgba(31, 49, 66, 0.16);
}

.brand-copy {
  display: grid;
}

.brand-copy span:first-child {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-copy span:last-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.3rem;
  font-weight: 600;
  color: #4f4842;
}

.nav-actions {
  gap: 0.75rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.button {
  background: linear-gradient(135deg, var(--brand), #304a62);
  color: #fff;
  box-shadow: 0 20px 40px rgba(31, 49, 66, 0.18);
}

.button-secondary,
.button-ghost {
  border: 1px solid var(--line);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 49, 66, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.eyebrow-accent {
  background: rgba(196, 111, 67, 0.14);
  color: #9c542f;
}

.hero {
  padding: 0;
}

.hero-panel,
.service-card,
.gallery-card,
.process-card,
.faq-item,
.contact-panel,
.area-card,
.mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-glass-card h1,
.section-heading h2,
.band h2,
.contact-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-stat {
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.mini-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-radius: 0;
  background: linear-gradient(160deg, #223445, #1d2d3a);
  box-shadow: none;
  border: 0;
}

.hero-panel-full {
  min-height: calc(100svh - var(--header-height) + 5rem);
}

.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-overlay-wide {
  padding: calc(var(--header-height) + 1.75rem) clamp(1rem, 3vw, 2.25rem) 2rem;
  background:
    linear-gradient(180deg, rgba(9, 17, 24, 0.2) 0%, rgba(12, 19, 27, 0.28) 26%, rgba(11, 18, 25, 0.64) 100%);
}

.contact-chip {
  align-self: flex-start;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-glass-card {
  width: min(1320px, 100%);
  padding: 2rem 2rem 2.15rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 34px 90px rgba(12, 18, 25, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-glass-card h1 {
  max-width: 100%;
  color: #fff;
  text-wrap: balance;
}

.hero-glass-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.25rem;
  align-items: end;
  margin-top: 1.2rem;
}

.hero-glass-card .hero-lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-glass-card .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-highlights-overlay {
  width: min(1240px, 100%);
  margin-top: 1.25rem;
}

.hero-highlights-overlay .mini-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-highlights-overlay .mini-stat strong,
.hero-highlights-overlay .mini-stat span {
  color: #fff;
}

.hero-panel-copy {
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(15, 22, 29, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-panel-copy h2 {
  margin: 0.9rem 0 0.85rem;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
}

.hero-panel-copy p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 5.75rem 0 0;
}

.section-tight {
  padding-top: 4.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
}

.section-heading p {
  max-width: 34rem;
}

.section-heading-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading-centered p {
  max-width: 44rem;
}

.service-grid,
.gallery-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.card-media {
  aspect-ratio: 1.2;
  background: linear-gradient(180deg, #f5f6f7, #ecf1f5);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.45rem;
}

.card-body h3,
.gallery-copy h3,
.faq-item h3,
.process-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-list,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-list li + li,
.check-list li + li {
  margin-top: 0.45rem;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.service-card-accent {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(140deg, rgba(196, 111, 67, 0.14), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
}

.inline-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--brand);
  transition: transform 180ms ease, color 180ms ease;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.gallery-copy {
  padding: 1.35rem;
}

.band {
  padding: 5.75rem 0 0;
}

.band-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1f3142, #314b62);
  box-shadow: 0 30px 80px rgba(31, 49, 66, 0.22);
}

.band h2 {
  margin: 1rem 0 1rem;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.band p,
.check-list li {
  color: rgba(255, 255, 255, 0.78);
}

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

.process-card,
.faq-item {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.process-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(31, 49, 66, 0.03), rgba(196, 111, 67, 0.06));
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.contact-copy p {
  max-width: 48rem;
  margin-top: 1rem;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 300px;
}

.area-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(31, 49, 66, 0.06);
}

.area-card strong,
.footer-brand {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(25, 23, 21, 0.08);
}

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

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

@media (max-width: 1120px) {
  .nav-shell,
  .nav-links,
  .nav-actions,
  .service-grid,
  .gallery-grid,
  .band-shell,
  .process-grid,
  .faq-grid,
  .contact-panel,
  .hero-highlights,
  .hero-glass-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    min-height: auto;
    padding: 1rem 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-panel {
    min-height: 560px;
  }

  .hero-overlay-wide {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .hero-glass-card {
    width: 100%;
  }

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

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .section-shell,
  .band-shell,
  .footer-shell {
    width: min(var(--max), calc(100% - 1.1rem));
  }

  .nav-actions,
  .nav-links {
    width: 100%;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .button,
  .nav-actions .button-ghost,
  .hero-actions .button,
  .hero-actions .button-secondary,
  .contact-actions .button,
  .contact-actions .button-secondary {
    width: 100%;
  }

  .hero-copy,
  .hero-glass-card,
  .contact-panel,
  .band-shell,
  .process-card,
  .faq-item,
  .card-body,
  .gallery-copy {
    padding: 1.25rem;
  }

  .hero-glass-card h1,
  .section-heading h2,
  .band h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero-glass-card h1,
  .band h2 {
    max-width: none;
  }

  .hero-panel {
    min-height: calc(100svh - 48px);
  }

  .hero-overlay-wide {
    padding: calc(var(--header-height) + 1rem) 0.9rem 1rem;
  }

  .contact-chip {
    font-size: 0.82rem;
  }

  .faq-grid,
  .process-grid,
  .gallery-grid,
  .service-grid,
  .hero-highlights,
  .hero-glass-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    margin-top: 0.25rem;
  }

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

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

  .button,
  .button-secondary,
  .button-ghost,
  .inline-link,
  .reveal {
    transition: none;
  }

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