/* ── Tokens ── */
:root {
  /* Pastel / light theme */
  --bg: #f6f1ea;
  --bg2: #fbf7f0;
  --bg3: #ffffff;
  --text: #161616;
  --muted: rgba(22, 22, 22, 0.62);
  --line: rgba(22, 22, 22, 0.12);
  --gold: #b7903b;
  --gold-dim: rgba(183, 144, 59, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
em { font-style: italic; color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
}
.btn--gold:hover {
  background: #d4b872;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.25);
}
.btn--line {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--line:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.logo__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo__name em { font-style: italic; font-weight: 400; color: var(--muted); }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}
.nav a:hover { color: var(--text); }

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__phone {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.25s;
}
.header__phone:hover { color: var(--gold); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}
.burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.drawer {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.drawer[hidden] { display: none !important; }
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
}
.drawer__nav a {
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.drawer__nav a:hover { color: var(--text); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}
.hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 8s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.3) 0%, rgba(10,10,11,0.15) 40%, rgba(10,10,11,0.92) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.7) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  max-width: 720px;
}
.hero__title {
  font-size: clamp(44px, 7vw, 80px);
  margin-bottom: 24px;
}
.hero__text {
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.hero__stats span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Marquee */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  z-index: 3;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}
.marquee__track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 120px 0; }
.section--dark { background: var(--bg2); }
.section-head { margin-bottom: 64px; max-width: 560px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-desc { margin-top: 12px; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 56ch; }

/* Trust bar */
.trust { border-bottom: 1px solid var(--line); padding: 28px 0; background: var(--bg2); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__item strong { display: block; font-family: var(--serif); font-size: 20px; color: var(--gold); margin-bottom: 4px; }
.trust__item span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Tours */
.tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour {
  background: var(--bg2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.tour:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}
.tour__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tour:hover .tour__img img { transform: scale(1.05); }
.tour__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--gold);
  padding: 5px 10px;
  font-weight: 600;
}
.tour__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid var(--line);
}
.tour__body { padding: 28px; }
.tour__meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.tour__body h3 { margin-bottom: 10px; }
.tour__body > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.tour__list {
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.tour__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tour__price {
  font-size: 13px;
  color: var(--muted);
}
.tour__price strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  font-weight: 600;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg3);
  overflow: hidden;
  transition: border-color 0.35s;
}
.service:hover { border-color: rgba(201, 169, 98, 0.25); }
.service__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service:hover .service__img img { transform: scale(1.05); }
.service h3 { font-size: 18px; margin: 20px 20px 8px; }
.service p { font-size: 14px; color: var(--muted); line-height: 1.65; padding: 0 20px 24px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
}
.step__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__n {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  opacity: 0.5;
  margin: 16px 24px 8px;
  line-height: 1;
}
.step h3 { font-size: 18px; margin: 0 24px 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; padding: 0 24px 24px; }

/* About + Team */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__copy p { color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.about__nums {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__nums strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
}
.about__nums span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.about__visual > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.team__card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg2);
}
.team__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.team__card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.team__card span { font-size: 12px; color: var(--muted); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
}
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  background: rgba(10,10,11,0.65);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border: 1px solid var(--line);
}

.section-desc--center { margin-inline: auto; text-align: center; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__list { list-style: none; margin-top: 24px; }
.contact__list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact__list strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact__list a { color: var(--text); transition: color 0.25s; }
.contact__list a:hover { color: var(--gold); }
.contact__form {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg3);
  display: grid;
  gap: 16px;
}
.contact__form h3 { font-size: 22px; margin-bottom: 4px; }

/* Philosophy */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.philosophy__visual { position: relative; }
.philosophy__visual > img:first-child {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.philosophy__accent {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 55%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 4px solid var(--bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.bento--compact { grid-template-columns: 1fr 1fr; }
.bento--compact .bento__item { padding: 24px; }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento__item {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg3);
  transition: border-color 0.35s;
}
.bento__item:hover { border-color: rgba(201, 169, 98, 0.25); }
.bento__item--wide { grid-column: span 2; }
.bento__n {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 20px;
}
.bento__item h3 { margin-bottom: 10px; font-size: 20px; }
.bento__item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
}
.review__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.review__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  margin: 20px 24px 16px;
  color: rgba(242, 239, 233, 0.88);
}
.review footer {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0 24px 24px;
}

/* CTA + FAQ */
.section--cta { padding-bottom: 80px; }
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 300px at 0% 50%, var(--gold-dim), transparent 70%),
    var(--bg2);
  margin-bottom: 64px;
}
.cta-block__copy h2 { margin-bottom: 12px; }
.cta-block__copy p { color: var(--muted); max-width: 40ch; }

.faq-wrap { display: grid; gap: 8px; }
.faq {
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 0 24px;
}
.faq summary {
  padding: 20px 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer__brand p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer__ttl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--gold); }
.footer__muted { font-size: 12px; color: rgba(242,239,233,0.35); margin-top: 4px; }

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.4s, opacity 0.4s var(--ease);
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.modal__box {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 40px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
}
.modal.is-open .modal__box {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.25s;
  z-index: 2;
}
.modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal__title {
  font-size: 28px;
  margin-bottom: 8px;
}
.modal__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.modal__form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(242,239,233,0.3); }
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.modal__note {
  font-size: 12px;
  color: rgba(242,239,233,0.35);
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  background: var(--bg3);
  border: 1px solid var(--line);
  font-size: 14px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast[hidden] { display: none; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .tours { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .services { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__accent { right: 12px; bottom: -12px; width: 45%; }
  .bento, .bento--compact { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wrap { width: calc(100% - 32px); }
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .tours, .services, .steps, .reviews, .team, .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
  .footer__inner { flex-direction: column; }
  .footer__cols { grid-template-columns: 1fr; }
  .modal__box { padding: 32px 24px; }
  .trust__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
