:root {
  --ink: #1d1b18;
  --ink-soft: #5d5850;
  --paper: #f7f4ed;
  --surface: #fffdf8;
  --surface-muted: #ebece4;
  --charcoal: #2b2a26;
  --accent: #7f8b72;
  --accent-strong: #59654f;
  --accent-warm: #9e6b62;
  --accent-gold: #b69b5f;
  --line: rgba(29, 27, 24, 0.14);
  --line-strong: rgba(29, 27, 24, 0.26);
  --shadow: 0 24px 80px rgba(29, 27, 24, 0.14);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(235, 236, 228, 0.52)),
    repeating-linear-gradient(90deg, rgba(29, 27, 24, 0.025) 0 1px, transparent 1px 46px),
    var(--paper);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.56;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(127, 139, 114, 0.08) 34% 48%, transparent 48% 100%),
    linear-gradient(60deg, transparent 0 56%, rgba(158, 107, 98, 0.06) 56% 68%, transparent 68% 100%);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  letter-spacing: 0;
}

button:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 56px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(29, 27, 24, 0.08);
  box-shadow: 0 14px 45px rgba(29, 27, 24, 0.06);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 253, 248, 0.96);
  border-color: var(--line);
  box-shadow: 0 18px 55px rgba(29, 27, 24, 0.1);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 104px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.main-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 330px);
  gap: 48px;
  align-items: end;
  padding: 148px 56px 58px;
  color: var(--surface);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(29, 27, 24, 0.86) 0%, rgba(29, 27, 24, 0.62) 52%, rgba(29, 27, 24, 0.24) 100%),
    linear-gradient(0deg, rgba(29, 27, 24, 0.32), transparent 44%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, transparent 0 72%, rgba(29, 27, 24, 0.5));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img {
  filter: saturate(0.72) contrast(1.04) brightness(0.84);
  object-position: center center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  max-width: 760px;
}

.hero-place,
.section-number {
  margin: 0 0 18px;
  color: var(--accent-gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.tribute-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: 4.9rem;
}

.hero-content > p:not(.hero-place) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.12rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.button-primary:hover {
  color: var(--surface);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button-secondary {
  color: var(--surface);
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.4);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--surface);
  background: rgba(255, 253, 248, 0.15);
}

.hero-card {
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.58rem;
  line-height: 1.08;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  padding: 9px 10px;
  color: var(--surface);
  background: var(--accent-strong);
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
}

.hero-whatsapp svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-whatsapp span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 150px;
  padding: 32px 44px;
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.82rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-band span {
  max-width: 360px;
  color: var(--ink-soft);
  font-weight: 700;
}

.section-pad {
  padding: 104px 56px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 0.62fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .section-number {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-strong);
}

.section-heading h2,
.tribute-copy h2,
.booking-copy h2 {
  font-size: 4rem;
}

.section-heading p,
.tribute-copy p,
.booking-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 324px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(29, 27, 24, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px rgba(29, 27, 24, 0.12);
}

.service-card.featured {
  color: var(--surface);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  margin-bottom: 36px;
  color: var(--accent-strong);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.featured .icon-shell {
  color: var(--surface);
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.18);
}

.icon-shell svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: auto 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.78rem;
  line-height: 1.06;
}

.service-card p {
  min-height: 82px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.featured p {
  color: rgba(255, 253, 248, 0.75);
}

.service-card span {
  color: var(--accent-strong);
  font-weight: 800;
}

.featured span {
  color: var(--accent-gold);
}

.vibe {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(235, 236, 228, 0.7)),
    var(--surface-muted);
}

.vibe-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.vibe-shot {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(29, 27, 24, 0.1);
}

.vibe-shot.wide {
  grid-row: span 2;
}

.vibe-shot.tall {
  grid-row: auto;
}

.vibe-shot img {
  filter: saturate(0.78) contrast(1.03);
  transition: transform 500ms ease, filter 500ms ease;
}

.vibe-shot:hover img {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.06);
}

.tribute {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: 68px;
  align-items: center;
  padding: 104px 56px 116px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(127, 139, 114, 0.12), transparent 44%),
    var(--charcoal);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.tribute-copy {
  max-width: 590px;
}

.tribute-copy .section-number {
  color: var(--accent-gold);
}

.tribute-copy p {
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.76);
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 30px;
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -5px;
  height: 2px;
  background: var(--accent-gold);
}

.memory-gallery {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.memory-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.memory-main {
  min-height: 540px;
}

.memory-card img {
  filter: saturate(0.86) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.memory-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.06);
}

.memory-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: var(--radius);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.team {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(235, 236, 228, 0.62)),
    var(--surface);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-member {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(127, 139, 114, 0.12), transparent 48%),
    rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(29, 27, 24, 0.08);
}

.team-member span {
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.team-member h3 {
  max-width: 460px;
  margin: 12px 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.team-member p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.design-sale {
  background: var(--surface);
  color: var(--ink);
}

.design-sale .section-heading .section-number {
  color: var(--accent-strong);
}

.design-market {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 18px;
  align-items: stretch;
}

.design-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(29, 27, 24, 0.14);
}

.design-card-wide {
  min-height: 500px;
}

.design-card img {
  filter: saturate(0.82) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.design-card-wide img {
  object-position: center center;
}

.design-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.08);
}

.design-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 253, 248, 0.68);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.design-card figcaption span {
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.design-card figcaption strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.design-card figcaption small {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing {
  background:
    linear-gradient(180deg, rgba(235, 236, 228, 0.56), rgba(255, 253, 248, 0.82)),
    var(--paper);
}

.section-heading.compact {
  grid-template-columns: minmax(260px, 0.88fr) minmax(280px, 0.58fr);
  margin-bottom: 44px;
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-group {
  padding: 24px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(29, 27, 24, 0.08);
}

.price-group:target {
  border-color: var(--accent);
  box-shadow: 0 22px 58px rgba(29, 27, 24, 0.12);
}

.price-group summary {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.price-group[open] summary::after {
  transform: rotate(225deg) translate(-3px, -3px);
}

.price-group summary span {
  padding-right: 28px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.88rem;
  line-height: 1.06;
}

.price-group summary small {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-list {
  padding-top: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
}

.price-row strong {
  color: var(--accent-strong);
  white-space: nowrap;
  font-weight: 800;
}

.price-note {
  max-width: 980px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.booking {
  padding: 104px 56px;
  color: var(--surface);
  background:
    linear-gradient(120deg, rgba(127, 139, 114, 0.14), transparent 48%),
    var(--charcoal);
}

.booking-panel {
  max-width: 980px;
  margin: 0 auto;
}

.booking-copy .section-number {
  color: var(--accent-gold);
}

.booking-copy p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.76);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 40px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
}

.contact-list dt {
  color: var(--accent-gold);
  font-size: 0.96rem;
  font-weight: 800;
}

.contact-list dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-weight: 800;
}

.opening-hours {
  display: grid;
  gap: 4px;
}

.opening-hours span {
  opacity: 0.78;
}

.map-card {
  overflow: hidden;
  margin-top: 28px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: contrast(1.02) saturate(0.82);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
}

.map-link svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 56px;
  color: rgba(255, 253, 248, 0.68);
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-footer span {
  color: var(--surface);
}

.section-observe {
  opacity: 1;
  transform: translateY(0);
}

.js .section-observe {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .section-pad,
  .tribute,
  .booking,
  .site-footer {
    padding-left: 36px;
    padding-right: 36px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .section-heading h2,
  .tribute-copy h2,
  .booking-copy h2 {
    font-size: 3.45rem;
  }

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

@media (max-width: 940px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: stretch;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px 36px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 55px rgba(29, 27, 24, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header-h)));
    transition: opacity 180ms ease, transform 220ms ease, visibility 0ms linear 220ms;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }

  .site-header.nav-active .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .site-header.nav-active .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-active .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-active .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-card {
    max-width: 340px;
  }

  .intro-band,
  .section-heading,
  .section-heading.compact,
  .tribute,
  .booking-panel,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .memory-gallery {
    grid-template-columns: 1fr;
  }

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

  .vibe-shot.wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .memory-main,
  .memory-card {
    min-height: 430px;
  }

  .design-market {
    grid-template-columns: 1fr;
  }

  .design-card,
  .design-card-wide {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section-pad,
  .tribute,
  .booking,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 86px;
  }

  .brand span:last-child {
    max-width: 96px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.72rem;
    line-height: 1.06;
  }

  .hero-content > p:not(.hero-place) {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-card {
    max-width: none;
    padding: 16px;
  }

  .hero-card strong {
    font-size: 1.34rem;
  }

  .intro-band strong,
  .price-group summary span,
  .service-card h3 {
    font-size: 1.62rem;
  }

  .section-heading h2,
  .tribute-copy h2,
  .booking-copy h2 {
    font-size: 2.42rem;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 36px;
  }

  .service-grid,
  .price-board,
  .team-grid,
  .vibe-gallery {
    grid-template-columns: 1fr;
  }

  .vibe-shot.wide,
  .vibe-shot.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .vibe-gallery {
    grid-auto-rows: 260px;
  }

  .service-card {
    min-height: 286px;
  }

  .memory-main,
  .memory-card,
  .design-card,
  .design-card-wide {
    min-height: 340px;
  }

  .design-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .design-card figcaption strong {
    font-size: 1.24rem;
  }

  .price-row,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    white-space: normal;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
