@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f5f6f5;
  --paper-soft: #fbfbf8;
  --ink: #0d1110;
  --muted: #4e5753;
  --line: rgba(18, 25, 23, 0.14);
  --line-strong: rgba(18, 25, 23, 0.24);
  --green: #123429;
  --green-2: #0e261f;
  --green-3: #1e4b3c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 27, 25, 0.1);
  --shadow-deep: 0 34px 90px rgba(12, 22, 19, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1340px, calc(100vw - 80px));
  --font-ui: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-display: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(245, 246, 245, 0.96) 440px),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--green);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid rgba(18, 52, 41, 0.72);
  outline-offset: 4px;
}

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

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

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

#portfolio,
#packages,
#dates,
#prep,
#reviews,
#booking {
  scroll-margin-top: 138px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--container);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 36px 0;
  border: 1px solid transparent;
  border-radius: 8px;
  transform: translateX(-50%);
  color: var(--ink);
  transition: top 240ms var(--ease), width 240ms var(--ease), padding 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease), border 240ms var(--ease);
}

.site-header.is-scrolled {
  top: 16px;
  width: min(1340px, calc(100vw - 42px));
  padding: 13px 18px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(250, 251, 249, 0.84);
  box-shadow: 0 18px 56px rgba(16, 24, 22, 0.1);
  backdrop-filter: blur(20px) saturate(1.12);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 5vw, 74px);
  font-size: 18px;
  font-weight: 500;
}

.nav a,
.mobile-panel a,
.text-link,
.under-link {
  position: relative;
}

.nav a::after,
.mobile-panel a::after,
.text-link::after,
.under-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav a:hover::after,
.mobile-panel a:hover::after,
.text-link:hover::after,
.under-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn,
.icon-btn,
.circle-btn,
.portfolio-card,
.date-card {
  border: 0;
  background: transparent;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 34px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

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

.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-3), var(--green-2));
  box-shadow: 0 18px 42px rgba(13, 42, 33, 0.26);
}

.btn-dark:hover {
  box-shadow: 0 24px 56px rgba(13, 42, 33, 0.34);
}

.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
}

.btn-outline:hover {
  border-color: rgba(18, 52, 41, 0.38);
  background: rgba(255, 255, 255, 0.82);
}

.btn svg {
  width: 21px;
  height: 21px;
}

.header-cta {
  min-height: 62px;
  padding: 0 28px;
  white-space: nowrap;
}

.icon-btn,
.circle-btn {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(20, 27, 25, 0.08);
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.icon-btn:hover,
.circle-btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(18, 52, 41, 0.22);
  box-shadow: 0 16px 36px rgba(20, 27, 25, 0.13);
}

.menu-toggle {
  display: none;
}

.mobile-panel {
  position: fixed;
  z-index: 40;
  top: 82px;
  right: 20px;
  left: 20px;
  display: none;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 251, 250, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-panel.open {
  display: grid;
}

.hero {
  position: relative;
  min-height: min(972px, 88vh);
  overflow: hidden;
  background: #dfe3e0;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(245, 246, 245, 0.08));
  content: "";
  pointer-events: none;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.15) saturate(1.08) brightness(0.98);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 249, 247, 0.91) 0%, rgba(247, 249, 247, 0.72) 28%, rgba(247, 249, 247, 0.24) 50%, rgba(8, 12, 11, 0.1) 100%),
    linear-gradient(180deg, rgba(247, 249, 247, 0.06) 0%, rgba(7, 11, 10, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(210px, 24vh, 280px);
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 48px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(62px, 7.7vw, 122px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-line {
  display: block;
  width: 78px;
  height: 3px;
  margin: 58px 0 38px;
  background: var(--ink);
}

.hero-copy {
  margin: 0;
  font-size: clamp(25px, 2.35vw, 39px);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 96px);
  margin-top: 34px;
}

.text-link,
.under-link {
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: max(46px, calc((100vw - 1340px) / 2));
  bottom: 64px;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 12, 11, 0.24);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.scroll-cue:hover {
  transform: translateY(-3px);
  background: rgba(8, 12, 11, 0.34);
}

.section {
  padding: 58px 0 40px;
}

h2 {
  margin: 0 0 36px;
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.portfolio-section {
  background:
    linear-gradient(180deg, var(--paper-soft), #f7f8f6 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(230px, 22vw, 312px);
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 24px 26px;
  color: var(--white);
  text-align: left;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(14, 18, 17, 0.13);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.portfolio-card::before,
.portfolio-card::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.portfolio-card::before {
  background: var(--photo) center / cover no-repeat;
  transition: transform 360ms var(--ease), filter 360ms var(--ease);
}

.portfolio-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 38%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 54%);
}

.portfolio-card:hover::before {
  transform: scale(1.055);
  filter: saturate(1.04);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 74px rgba(14, 18, 17, 0.18);
}

.portfolio-card span {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.25vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card svg {
  width: 34px;
  height: 34px;
}

.packages-section {
  padding-top: 60px;
  background:
    linear-gradient(180deg, #f7f8f6, var(--paper-soft));
}

.package-grid {
  display: grid;
  max-width: 1140px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 46px 40px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 52px rgba(25, 32, 30, 0.07);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.package-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), transparent 42%);
  content: "";
  pointer-events: none;
}

.package-card-popular {
  border-color: rgba(18, 52, 41, 0.35);
  box-shadow: var(--shadow-deep);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 52, 41, 0.28);
  box-shadow: 0 30px 80px rgba(25, 32, 30, 0.11);
}

.badge {
  position: absolute;
  top: -17px;
  left: 50%;
  border-radius: 8px;
  padding: 8px 20px;
  transform: translateX(-50%);
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.package-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.package-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.package-icon svg {
  width: 44px;
  height: 44px;
}

.package-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.package-card p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.package-card ul {
  display: grid;
  gap: 18px;
  margin: 50px 0 38px;
  padding: 0;
  list-style: none;
  font-size: 20px;
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.package-card li svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  background: rgba(10, 15, 14, 0.08);
}

.package-card .btn {
  margin-top: auto;
  width: 100%;
}

.dates-section {
  padding: 42px 0 48px;
  background: var(--paper-soft);
}

.dates-section h2,
.prep-section h2 {
  margin-bottom: 28px;
}

.dates-row {
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  gap: 26px;
}

.date-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 18px;
}

.date-card {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 248, 247, 0.5)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 30px rgba(25, 32, 30, 0.045);
  transition: border 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.date-card:hover,
.date-card.active {
  border-color: rgba(18, 52, 41, 0.38);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(25, 32, 30, 0.08);
}

.hidden-date.active {
  display: grid;
}

.date-card.active::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 5px rgba(18, 52, 41, 0.1);
}

.date-card em {
  color: rgba(13, 17, 16, 0.55);
  font-family: var(--font-display);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.date-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.date-card span {
  display: block;
  font-size: 17px;
  text-transform: uppercase;
}

.hidden-date {
  display: none;
}

.under-link {
  display: block;
  margin: 26px auto 0;
  padding: 8px 16px;
  border: 1px solid rgba(18, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.under-link::after {
  display: none;
}

.under-link:hover,
.under-link[aria-expanded="true"] {
  border-color: rgba(18, 52, 41, 0.2);
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.date-wheel-panel {
  display: grid;
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 360ms var(--ease), margin 260ms var(--ease), opacity 240ms var(--ease), transform 260ms var(--ease);
}

.date-wheel-panel.open {
  max-height: 780px;
  margin-top: 22px;
  opacity: 1;
  transform: translateY(0);
}

.date-calendar-card {
  padding: 24px;
  border: 1px solid rgba(18, 25, 23, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 248, 0.78)),
    var(--white);
  box-shadow: 0 24px 70px rgba(16, 24, 22, 0.075);
}

.date-wheel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px;
}

.date-wheel-head span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-wheel-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
  text-align: right;
}

.date-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.date-month {
  padding: 18px;
  border: 1px solid rgba(18, 25, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.date-month header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.date-month header strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.date-month header span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.date-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.date-calendar-grid > span,
.date-calendar-grid > i,
.date-calendar-day {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 8px;
  font-size: 15px;
  font-style: normal;
}

.date-calendar-grid > span:nth-child(-n + 7) {
  min-height: 26px;
  color: rgba(13, 17, 16, 0.46);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-calendar-grid > span:nth-child(n + 8) {
  color: rgba(13, 17, 16, 0.34);
  background: rgba(13, 17, 16, 0.035);
}

.date-calendar-grid > i {
  background: transparent;
}

.date-calendar-day {
  border: 1px solid rgba(18, 52, 41, 0.22);
  color: var(--green);
  background: rgba(18, 52, 41, 0.08);
  font-weight: 700;
  transition: transform 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.date-calendar-day:hover,
.date-calendar-day.selected {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 52, 41, 0.18);
}

.date-calendar-day.selected {
  box-shadow: 0 0 0 4px rgba(18, 52, 41, 0.1), 0 12px 24px rgba(18, 52, 41, 0.18);
}

.date-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.9fr) auto;
  align-items: center;
  gap: 28px;
  margin: 30px auto 0;
  padding: 24px;
  border: 1px solid rgba(18, 25, 23, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 248, 0.78)),
    var(--white);
  box-shadow: 0 24px 70px rgba(16, 24, 22, 0.075);
}

.date-detail-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-detail h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.date-detail p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
}

.date-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.date-detail-list li {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(18, 25, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.date-detail-list strong,
.date-detail-list span {
  display: block;
}

.date-detail-list strong {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.date-detail-list span {
  color: rgba(13, 17, 16, 0.58);
  font-size: 15px;
  line-height: 1.2;
}

.date-detail .btn {
  min-width: 222px;
}

.prep-section {
  padding: 28px 0 82px;
  background: var(--paper-soft);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.prep-item {
  display: grid;
  min-height: 114px;
  place-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.prep-item:last-child {
  border-right: 0;
}

.prep-item svg {
  width: 54px;
  height: 54px;
  color: rgba(13, 17, 16, 0.9);
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.prep-item:hover svg {
  color: var(--green);
  transform: translateY(-3px);
}

.prep-item span {
  min-height: 42px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.reviews-cta {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #dfe7e7;
}

.reviews-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/forest-bottom-clean.jpg") center bottom / cover no-repeat;
  filter: saturate(0.84) contrast(1.04);
}

.reviews-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247, 248, 248, 0.9) 0%, rgba(247, 248, 248, 0.68) 34%, rgba(12, 22, 20, 0.08) 58%, rgba(4, 9, 8, 0.56) 100%),
    rgba(255, 255, 255, 0.04);
  content: "";
}

.reviews-section {
  padding: 44px 0 52px;
}

.reviews-container h2 {
  margin-bottom: 28px;
}

.review-shell {
  display: grid;
  grid-template-columns: 70px minmax(0, 880px) 70px;
  align-items: center;
  justify-content: center;
  gap: 62px;
}

.review-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: 148px 1fr;
  align-items: center;
  gap: 44px;
  padding: 36px 68px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 82px rgba(21, 31, 28, 0.12);
  backdrop-filter: blur(16px) saturate(1.06);
}

.review-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.review-text {
  max-width: 680px;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.review-dots button {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 15, 14, 0.18);
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.review-dots button.active {
  background: var(--ink);
  transform: scale(1.08);
}

.cta-section {
  padding: 54px 0 28px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 12, 11, 0.2) 0%, rgba(4, 9, 8, 0.76) 100%);
}

.cta-container {
  text-align: center;
}

.cta-container h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  text-transform: none;
}

.cta-container p {
  margin: 0 0 44px;
  font-size: clamp(22px, 2.3vw, 34px);
}

.booking-strip {
  display: grid;
  min-height: 104px;
  grid-template-columns:
    minmax(160px, 1fr)
    minmax(160px, 1fr)
    minmax(150px, 0.78fr)
    minmax(180px, 0.9fr)
    minmax(240px, 0.86fr);
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 92px rgba(4, 8, 7, 0.26);
  backdrop-filter: blur(16px) saturate(1.04);
}

.booking-strip label,
.booking-field {
  position: relative;
  display: block;
  border-right: 1px solid rgba(8, 12, 11, 0.14);
  color: var(--ink);
}

.booking-field {
  min-width: 0;
}

.booking-field.open {
  z-index: 30;
}

.booking-strip label span,
.booking-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.booking-strip input {
  width: 100%;
  height: 100%;
  border: 0;
  color: var(--ink);
  background: transparent;
  padding: 0 38px;
  font-size: 22px;
  outline: 0;
  transition: background 180ms var(--ease);
}

.booking-strip input:focus,
.modal-form input:focus,
.modal-form select:focus {
  background: rgba(18, 52, 41, 0.045);
}

.field-button {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  padding: 0 30px;
  text-align: left;
  transition: background 180ms var(--ease);
}

.field-button:hover,
.booking-field.open .field-button {
  background: rgba(18, 52, 41, 0.045);
}

.field-button small,
.field-button strong {
  display: block;
}

.field-button small {
  margin-bottom: 4px;
  color: rgba(13, 17, 16, 0.52);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.field-button strong {
  font-size: 22px;
  font-weight: 500;
}

.field-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--green);
}

.choice-field .field-button svg {
  transform: rotate(90deg);
  transition: transform 180ms var(--ease);
}

.choice-field.open .field-button svg {
  transform: rotate(-90deg);
}

.calendar-popover,
.choice-popover {
  position: absolute;
  right: 12px;
  bottom: calc(100% + 14px);
  left: 12px;
  z-index: 40;
  display: none;
  max-height: var(--popover-max-height, min(420px, calc(100vh - 32px)));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(18, 25, 23, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 247, 0.96)),
    var(--white);
  box-shadow: 0 28px 80px rgba(4, 9, 8, 0.28);
}

.booking-field.open .calendar-popover,
.booking-field.open .choice-popover {
  display: block;
}

.booking-field.open-down .calendar-popover,
.booking-field.open-down .choice-popover {
  top: calc(100% + 14px);
  bottom: auto;
}

.choice-field .choice-popover {
  top: calc(100% + 14px);
  bottom: auto;
  max-height: var(--popover-max-height, min(520px, calc(100vh - 32px)));
}

.choice-field.open .choice-popover {
  position: fixed;
  top: var(--choice-popover-top, 16px);
  right: auto;
  bottom: auto;
  left: var(--choice-popover-left, 16px);
  width: var(--choice-popover-width, min(420px, calc(100vw - 32px)));
  max-height: var(--choice-popover-height, min(520px, calc(100vh - 32px)));
}

.choice-popover.is-floating {
  position: fixed;
  top: var(--choice-popover-top, 16px);
  right: auto;
  bottom: auto;
  left: var(--choice-popover-left, 16px);
  z-index: 120;
  display: block;
  width: var(--choice-popover-width, min(420px, calc(100vw - 32px)));
  max-height: var(--choice-popover-height, min(520px, calc(100vh - 32px)));
}

.calendar-popover {
  width: min(430px, calc(100vw - 36px));
  padding: 18px;
}

.calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.calendar-head strong,
.calendar-head span {
  display: block;
}

.calendar-head strong {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.calendar-head span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.calendar-pill {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--green);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-grid > span,
.calendar-grid button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  font-size: 16px;
}

.calendar-grid > span:nth-child(-n + 7) {
  min-height: 28px;
  color: rgba(13, 17, 16, 0.48);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-grid > span:nth-child(n + 8) {
  color: rgba(13, 17, 16, 0.32);
  background: rgba(13, 17, 16, 0.035);
}

.calendar-grid button {
  border: 1px solid rgba(18, 52, 41, 0.2);
  color: var(--green);
  background: rgba(18, 52, 41, 0.08);
  font-weight: 700;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.calendar-grid button:hover,
.calendar-grid button.selected {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.calendar-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 25, 23, 0.1);
}

.calendar-extra button {
  border: 1px solid rgba(18, 25, 23, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.calendar-extra button.selected,
.calendar-extra button:hover {
  border-color: rgba(18, 52, 41, 0.26);
  color: var(--white);
  background: var(--green);
}

.choice-popover {
  width: min(420px, calc(100vw - 36px));
  padding: 10px;
  scrollbar-width: none;
}

.choice-popover::-webkit-scrollbar {
  display: none;
}

.choice-popover button {
  display: grid;
  width: 100%;
  gap: 4px;
  border: 0;
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.choice-popover button:hover,
.choice-popover button.selected {
  color: var(--white);
  background: var(--green);
}

.choice-popover strong,
.choice-popover span {
  display: block;
}

.choice-popover strong {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.choice-popover span {
  color: rgba(13, 17, 16, 0.6);
  font-size: 15px;
  line-height: 1.28;
}

.choice-popover button:hover span,
.choice-popover button.selected span {
  color: rgba(255, 255, 255, 0.76);
}

.booking-strip .btn {
  height: calc(100% - 16px);
  margin: 8px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: clamp(19px, 1.25vw, 22px);
}

.site-footer {
  display: flex;
  width: var(--container);
  margin: 36px auto 0;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 9, 0.64);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 247, 0.94)),
    var(--paper-soft);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.28);
}

.gallery-modal {
  width: min(1180px, calc(100vw - 40px));
  padding-top: 36px;
}

.about-modal {
  width: min(980px, calc(100vw - 40px));
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
}

.modal-card .eyebrow {
  margin-bottom: 20px;
  font-size: 16px;
}

.modal-card h2 {
  margin-bottom: 24px;
  text-align: left;
  text-transform: none;
}

.modal-copy {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.about-card {
  display: grid;
  align-content: end;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(18, 25, 23, 0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 52, 41, 0.2), rgba(6, 17, 14, 0.86)),
    url("assets/cards/thumbs/content.jpg") center / cover no-repeat;
  box-shadow: 0 22px 64px rgba(13, 19, 18, 0.18);
}

.about-card span,
.about-card strong,
.about-card p {
  display: block;
}

.about-card span {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-card strong {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.04;
  text-transform: uppercase;
}

.about-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.4;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 28px;
}

.about-stats div {
  padding: 18px;
  border: 1px solid rgba(18, 25, 23, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.about-stats span {
  color: var(--muted);
  font-size: 16px;
}

.about-process {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(18, 25, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.about-process h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
}

.about-process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.about-process li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.about-process p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.modal-form label {
  display: grid;
  gap: 9px;
  font-weight: 700;
}

.modal-form input,
.modal-form select {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 16px;
  outline: 0;
}

.wide {
  grid-column: 1 / -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 260px;
  align-items: start;
}

.gallery-grid img {
  width: 100%;
  height: min(48vh, 440px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: rgba(18, 25, 23, 0.05);
  box-shadow: 0 14px 34px rgba(12, 18, 17, 0.09);
  cursor: zoom-in;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(12, 18, 17, 0.16);
  outline: 0;
}

.gallery-grid.is-curated img {
  box-shadow: 0 18px 44px rgba(12, 18, 17, 0.15);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  place-items: center;
  padding: 24px;
}

.photo-lightbox.open {
  display: grid;
}

.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 7, 0.78);
  backdrop-filter: blur(10px);
}

.photo-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, calc(100vw - 48px));
  height: min(82vh, 780px);
  place-items: center;
}

.photo-lightbox-panel img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
}

.photo-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.94);
}

.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: rgba(8, 12, 11, 0.42);
  transform: translateY(-50%);
}

.photo-lightbox-prev {
  left: 16px;
}

.photo-lightbox-next {
  right: 16px;
}

.photo-lightbox-count {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 3;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(8, 12, 11, 0.58);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  transform: translateX(-50%);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: min(380px, calc(100vw - 48px));
  padding: 18px 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@supports (content-visibility: auto) {
  .portfolio-section,
  .packages-section,
  .dates-section,
  .prep-section,
  .reviews-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

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

@media (min-width: 721px) and (max-height: 800px) {
  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding-top: clamp(148px, 19vh, 176px);
    padding-bottom: 54px;
  }

  .eyebrow {
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.05vw, 104px);
  }

  .hero-line {
    margin: 38px 0 28px;
  }

  .hero-copy {
    font-size: clamp(24px, 2.1vw, 34px);
  }

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

  .scroll-cue {
    bottom: 34px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1040px);
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-header.is-scrolled {
    width: min(100% - 32px, 1040px);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 800px;
  }

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

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .date-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .date-detail {
    grid-template-columns: 1fr;
  }

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

  .prep-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }

  .prep-item:nth-child(3n) {
    border-right: 0;
  }

  .review-shell {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 22px;
  }

  .booking-strip {
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip .btn {
    grid-column: 1 / -1;
    min-height: 88px;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 640px);
  }

  .site-header {
    padding: 20px 0;
  }

  .site-header.is-scrolled {
    top: 10px;
    width: min(100% - 20px, 640px);
    padding: 10px 12px;
  }

  .header-cta {
    display: none;
  }

  .mobile-panel {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: clamp(640px, 100svh, 740px);
  }

  .hero-video {
    object-position: 43% center;
    filter: contrast(1.12) saturate(1.05) brightness(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 249, 247, 0.78) 0%, rgba(247, 249, 247, 0.56) 38%, rgba(247, 249, 247, 0.3) 66%, rgba(5, 9, 8, 0.18) 100%),
      linear-gradient(90deg, rgba(247, 249, 247, 0.88) 0%, rgba(247, 249, 247, 0.5) 48%, rgba(247, 249, 247, 0.12) 100%);
  }

  .hero-inner {
    padding-top: clamp(104px, 15svh, 124px);
    padding-bottom: 80px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(40px, 11.4vw, 56px);
    line-height: 0.96;
  }

  .hero-line {
    width: 70px;
    margin: 26px 0 22px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: clamp(21px, 6vw, 25px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 26px;
  }

  .scroll-cue {
    right: 24px;
    bottom: 28px;
    width: 58px;
    height: 58px;
  }

  .section {
    padding: 44px 0 24px;
  }

  h2 {
    margin-bottom: 24px;
  }

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

  .portfolio-card {
    min-height: 230px;
    padding: 0 16px 20px;
  }

  .portfolio-card svg {
    width: 27px;
    height: 27px;
  }

  .package-card {
    min-height: 0;
    padding: 34px 24px 26px;
  }

  .package-card ul {
    margin: 34px 0 28px;
    font-size: 18px;
  }

  .dates-row {
    grid-template-columns: 1fr;
  }

  .dates-row .circle-btn {
    display: none;
  }

  .date-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .date-wheel-panel.open {
    max-height: 1260px;
  }

  .date-calendar-card {
    padding: 18px;
  }

  .date-wheel-head {
    display: grid;
    padding: 0;
  }

  .date-wheel-head p {
    max-width: none;
    text-align: left;
  }

  .date-months {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .date-month {
    padding: 14px;
  }

  .date-month header strong {
    font-size: 20px;
  }

  .date-calendar-grid > span,
  .date-calendar-grid > i,
  .date-calendar-day {
    min-height: 36px;
    font-size: 14px;
  }

  .date-card {
    min-height: 104px;
  }

  .date-detail {
    gap: 20px;
    padding: 20px;
  }

  .date-detail-list {
    grid-template-columns: 1fr;
  }

  .date-detail .btn {
    width: 100%;
  }

  .prep-section {
    padding-bottom: 52px;
  }

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

  .prep-item,
  .prep-item:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .prep-item:nth-child(2n) {
    border-right: 0;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
    border-radius: 8px;
    text-align: center;
  }

  .review-avatar {
    margin: 0 auto;
  }

  .review-text {
    font-size: 19px;
  }

  .cta-section {
    padding-top: 42px;
  }

  .booking-strip {
    grid-template-columns: 1fr;
  }

  .booking-strip label,
  .booking-field {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 12, 11, 0.14);
  }

  .booking-strip input,
  .field-button {
    padding: 0 24px;
    font-size: 19px;
  }

  .booking-strip input {
    min-height: 78px;
    height: auto;
  }

  .field-button {
    min-height: 78px;
    height: auto;
  }

  .field-button strong {
    font-size: 19px;
  }

  .calendar-popover,
  .choice-popover {
    position: static;
    width: auto;
    margin: 10px;
    box-shadow: 0 18px 46px rgba(4, 9, 8, 0.18);
  }

  .booking-strip .btn {
    min-height: 76px;
    font-size: 19px;
  }

  .modal-card {
    padding: 34px 22px 24px;
  }

  .about-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 220px;
  }

  .about-process {
    padding: 20px;
  }

  .modal-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: min(64vh, 460px);
    aspect-ratio: auto;
  }

  .photo-lightbox {
    padding: 14px;
  }

  .photo-lightbox-panel {
    width: calc(100vw - 28px);
    height: min(78vh, 680px);
  }

  .photo-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .photo-lightbox-nav {
    width: 48px;
    height: 48px;
  }

  .photo-lightbox-prev {
    left: 8px;
  }

  .photo-lightbox-next {
    right: 8px;
  }

  .site-footer {
    width: var(--container);
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .text-link {
    width: auto;
  }
}

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

  .hero-video {
    display: none;
  }
}
