/* ==========================================================================
   The Grace Studio — Landing Page
   White base, black cinematic sections, gold accent — elegant, modern
   ========================================================================== */

:root {
  --c-bg: #ffffff;
  --c-mist: #f3f1ec;
  --c-card: #ffffff;
  --c-black: #0d0d0c;
  --c-text: #24231f;
  --c-gray: #7b7468;
  --c-line: #e4e1d9;
  --c-gold: #b8a37b;
  --c-gold-dark: #96835f;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 18px 42px rgba(17,17,15,.16);
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'STIX Two Text', 'Times New Roman', serif;
  --font-ui: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--c-black);
  background: var(--c-bg);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1288px; margin: 0 auto; padding: 0 32px; }

/* ===== Cursor follower ===== */
.cursor-circle {
  position: fixed;
  top: 0; left: 0;
  width: 50px; height: 50px;
  margin-left: -25px; margin-top: -25px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100px, -100px);
  transition: transform .1s ease-out, opacity .2s ease;
  opacity: 0;
}
.cursor-circle.is-active { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-circle { display: none; }
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .4em;
  color: var(--c-gray);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-eyebrow--center { text-align: center; }
.section-eyebrow--dark { color: rgba(255,255,255,.55); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--c-black);
}
.section-title--center { text-align: center; max-width: 680px; margin: 0 auto 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(17,17,15,.3);
  border-radius: 999px;
  color: var(--c-black);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { border-color: var(--c-black); }
.btn--wide { width: 100%; justify-content: center; text-align: center; }
.btn--wide {
  background: #fff;
  border-color: #fff;
  color: var(--c-black);
}
.btn--wide:hover { background: #eee; border-color: #eee; }

/* ===== Top Bar ===== */
.topbar {
  position: relative;
  background: var(--c-bg);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.topbar__inner {
  max-width: 1288px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.topbar__logo { display: block; }
.topbar__logo img { height: 48px; width: auto; }

.topbar__nav { display: flex; gap: 32px; font-family: var(--font-ui); }
.topbar__nav a {
  color: var(--c-text);
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}

.topbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.topbar__burger span { width: 22px; height: 1.5px; background: var(--c-black); }

/* ===== Floating Quick Nav ===== */
.quicknav {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-black);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  font-family: var(--font-ui);
}
.quicknav__item {
  color: #fff;
  background: var(--c-black);
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background-color .15s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1);
}
.quicknav__arrow { margin-right: 2px; font-size: .9em; }
.quicknav__item:hover { background: #222; }
.quicknav__item.active {
  background: #fff;
  color: var(--c-black);
}
.quicknav__item.active:hover {
  background: var(--c-black);
  color: #fff;
}

@media (min-width: 768px) {
  .quicknav { right: 24px; bottom: 24px; border-radius: 16px; }
  .quicknav__item { font-size: 13px; padding: 12px 16px; }
}

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 88px; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.34;
  margin-bottom: 20px;
}
.hero__desc { font-family: var(--font-body); font-weight: 500; color: var(--c-gray); font-size: 18px; margin-bottom: 32px; max-width: 440px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__hint { display: flex; align-items: center; gap: 12px; font-family: var(--font-ui); font-size: 14px; color: var(--c-gray); }
.hero__hint-line { width: 48px; height: 1px; background: var(--c-line); flex: 0 0 auto; }

.hero__media-wrap { position: relative; }
.hero__ring {
  position: absolute; left: -24px; top: -24px;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,15,.1);
  pointer-events: none;
}
.hero__deco-dot {
  position: absolute; right: 24px; top: 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-mist);
  pointer-events: none;
}
.hero__media {
  position: relative;
  width: 92%;
  aspect-ratio: 10 / 16;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--c-mist);
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.is-active { opacity: 1; }
/* hover swaps to the 2nd photo (desktop/mouse) */
.hero__media:hover .hero__slide:first-child,
.hero__media.is-swapped .hero__slide:first-child { opacity: 0; }
.hero__media:hover .hero__slide:last-child,
.hero__media.is-swapped .hero__slide:last-child { opacity: 1; }

/* ===== Section 2: Cinematic Quote (black) ===== */
.scene {
  background: var(--c-black);
  color: #fff;
  padding: 96px 0 140px;
  overflow: hidden;
}
.scene__inner { text-align: center; }
.scene__line {
  display: block;
  height: 1px;
  width: min(100%, 420px);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  background-size: 200% 100%;
}
.scene__line--top {
  margin-bottom: 28px;
  animation: scene-line-right 15s linear infinite;
}
.scene__line--bottom {
  margin: 28px auto 64px;
  animation: scene-line-left 15s linear infinite;
}
@keyframes scene-line-right {
  from { background-position: -100% 0; }
  to { background-position: 100% 0; }
}
@keyframes scene-line-left {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}
.scene__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.scene__ticker {
  display: flex;
  justify-content: center;
}
.scene__ticker-box {
  position: relative;
  display: inline-block;
}
.scene__ticker-ghost,
.scene__ticker-text,
.scene__ticker-cursor {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .35em;
  white-space: nowrap;
}
.scene__ticker-ghost,
.scene__ticker-text,
.scene__ticker-cursor {
  color: rgba(255,255,255,.6);
}
.scene__ticker-ghost {
  visibility: hidden;
}
.scene__ticker-live {
  position: absolute;
  left: 0;
  top: 0;
}
.scene__ticker-cursor {
  animation: scene-blink 1s step-end infinite;
}
@keyframes scene-blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.scene__quotes { display: grid; place-items: center; }
.scene__quote {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,.92);
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
}
.scene__quote.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== Price ===== */
.price { padding: 80px 0 64px; }
.price__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.price__tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: italic;
  color: var(--c-gray);
  font-size: 15px;
  text-align: right;
  line-height: 1.6;
}
.price__divider { height: 1px; background: var(--c-line); margin: 28px 0 44px; }

.price__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.price__row {
  display: grid;
  grid-template-columns: repeat(auto-fill, 290px);
  gap: 18px;
  margin-bottom: 20px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--c-black);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(17,17,15,.28); }
.price-card h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color .25s ease;
}
.price-card:hover h4 { text-decoration-color: #fff; }
.price-card__note { font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.5); }
.price-card__price {
  display: block;
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.price-card__price span { font-size: 15px; margin-left: 3px; color: rgba(255,255,255,.6); font-weight: 500; }
.price-card__link {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500; letter-spacing: .5px; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 3px;
  margin-top: auto;
}


/* Popups */
.popup {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,13,12,.78);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup.is-open { display: flex; }
.popup__box {
  background: var(--c-card);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}
.popup__box h4 { font-family: var(--font-display); margin-bottom: 16px; }
.popup__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background-color: var(--c-mist);
}
@media (min-width: 641px) {
  .popup__box { max-width: 600px; }
}
@media (max-width: 640px) {
  .popup { padding: 0; }
  .popup__box {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}
.popup__close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--c-gray); line-height: 1;
}
.popup__close:hover { color: var(--c-black); }

/* ===== Portfolio / Lookbook ===== */
.portfolio { padding: 90px 0; }
.portfolio__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 360px;
  gap: 18px;
}
.portfolio__item {
  background-color: var(--c-mist);
  background-size: cover;
  border-radius: var(--radius);
  transition: transform .4s ease, box-shadow .4s ease;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__item--wide { grid-column: span 2; }
.portfolio__item--focus-top { background-position: center 20%; }
.portfolio__item--focus-bottom { background-position: center 80%; }
.portfolio__item--focus-center { background-position: center; }
.portfolio__item:hover { transform: scale(1.02); box-shadow: var(--shadow); }

.portfolio__more { text-align: center; margin-top: 32px; }

/* ===== Full Gallery ===== */
.gallery {
  display: none;
  position: fixed; inset: 0;
  background: var(--c-bg);
  z-index: 950;
  overflow-y: auto;
}
.gallery.is-open { display: block; }
.gallery__bar {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
  z-index: 1;
}
.gallery__count { font-family: var(--font-ui); font-size: 14px; letter-spacing: .5px; color: var(--c-gray); }
.gallery__close { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--c-gray); line-height: 1; }
.gallery__close:hover { color: var(--c-black); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 24px 32px 60px;
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--c-mist);
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery__thumb:hover { transform: scale(1.04); }

/* ===== Image Viewer ===== */
.viewer {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,13,12,.94);
  z-index: 970;
  align-items: center;
  justify-content: center;
}
.viewer.is-open { display: flex; }
.viewer__img { max-width: 88vw; max-height: 88vh; border-radius: var(--radius-sm); }
.viewer__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 30px;
  color: #fff; cursor: pointer; opacity: .8;
}
.viewer__close:hover { opacity: 1; }
.viewer__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none;
  color: #fff; font-size: 30px; width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
}
.viewer__nav:hover { background: rgba(255,255,255,.2); }
.viewer__nav--prev { left: 20px; }
.viewer__nav--next { right: 20px; }

/* ===== Process ===== */
.process { padding: 90px 0 100px; background: var(--c-bg); }
.process__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.process__title { margin-bottom: 0; }
.process__desc {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--c-gray);
  font-size: 16px;
  text-align: right;
  line-height: 1.7;
}
.process__divider { height: 1px; background: var(--c-line); margin: 28px 0 48px; }

.process__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 24px 4px 56px;
  margin: -24px -4px -56px;
}
.process__track::-webkit-scrollbar { display: none; }
.process-card {
  scroll-snap-align: start;
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(17,17,15,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(17,17,15,.18);
}
.process-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-mist);
  margin-bottom: 20px;
  overflow: hidden;
  animation: process-icon-float 2.6s ease-in-out infinite;
}
.process-card__icon img {
  width: 74%; height: 74%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.35) brightness(.92);
}
.process-card:nth-child(3) .process-card__icon { animation-delay: .15s; }
.process-card:nth-child(5) .process-card__icon { animation-delay: .3s; }
.process-card:nth-child(7) .process-card__icon { animation-delay: .45s; }
.process-card:nth-child(9) .process-card__icon { animation-delay: .6s; }
.process-card:nth-child(11) .process-card__icon { animation-delay: .75s; }
.process-card:nth-child(13) .process-card__icon { animation-delay: .9s; }
.process-card:nth-child(15) .process-card__icon { animation-delay: 1.05s; }
@keyframes process-icon-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.06); }
}
.process-card h4 { font-family: var(--font-display); font-size: 19px; margin-bottom: 10px; }
.process-card p { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--c-gray); }
.process__arrow {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  color: var(--c-gray);
  font-size: 20px;
}
.process__controls { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.process__ctrl {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: var(--c-card);
  font-size: 18px;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.process__ctrl:hover { border-color: var(--c-black); transform: scale(1.15); }

/* ===== Reservation ===== */
.reservation { padding: 88px 0; background: var(--c-black); color: #fff; }
.reservation__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.reservation__aside { padding-top: 8px; position: sticky; top: 100px; }
.reservation__aside-title {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 32px;
}
.reservation__points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.reservation__points li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  padding-left: 22px;
  position: relative;
}
.reservation__points li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
}
.reservation__points strong { color: #fff; font-weight: 600; }

.reservation__form-title { font-family: var(--font-display); font-size: 26px; letter-spacing: .04em; margin-bottom: 28px; color: #fff; }

.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 8px; color: rgba(255,255,255,.8); }
.form-row label span { color: rgba(255,255,255,.55); font-weight: 500; text-transform: none; letter-spacing: 0; }
.form-row label span.hint { color: rgba(255,255,255,.45); }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="date"] {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 15px;
}
.form-row input::placeholder { color: rgba(255,255,255,.4); }
.form-row input:focus { outline: none; border-color: var(--c-gold); }
.form-row input[type="date"] { color-scheme: dark; }

.form-row__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 4px; }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
}
.checkbox { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); cursor: pointer; }
.checkbox input { width: 16px; height: 16px; accent-color: var(--c-gold); flex: 0 0 auto; }

.reservation__success { display: none; margin-top: 16px; text-align: center; font-family: var(--font-ui); font-weight: 600; color: #fff; font-size: 14px; }
.reservation__success.is-visible { display: block; }

/* ===== Closing reel ===== */
.reel {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}
.reel__slide {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
}
.reel__slide.is-active { opacity: 1; }

/* ===== Contact / Footer ===== */
.contact { padding: 56px 0 40px; background: var(--c-bg); }
.contact__channels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 40px;
}
.contact__channels a:hover { color: var(--c-black); }
.contact__channels span { color: var(--c-line); }

.contact__row {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
}
.contact__line { font-family: var(--font-ui); font-weight: 500; font-size: 14px; color: rgb(110,110,110); margin-bottom: 5px; max-width: 640px; line-height: 1.6; }

.contact__copy { margin-top: 20px; font-family: var(--font-ui); font-size: 13px; letter-spacing: .3px; color: var(--c-gray); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .topbar__nav { display: none; }
  .topbar__burger { display: flex; }
  .hero { padding: 72px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { margin: 0 auto; }

  .scene { padding: 72px 0 96px; }
  .scene__line--top { margin-bottom: 20px; }
  .scene__line--bottom { margin: 20px auto 48px; }

  .price__head { flex-direction: column; }
  .price__tagline { text-align: left; }
  .price__row { grid-template-columns: repeat(2, 1fr); }

  .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }

  .process__head { flex-direction: column; align-items: flex-start; }
  .process__desc { text-align: left; }

  .reservation__grid { grid-template-columns: 1fr; gap: 40px; }
  .reservation__aside { position: static; }
  .form-row__cols { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }

  .topbar { position: relative; z-index: 500; }
  .topbar.mobile-open .topbar__nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--c-bg);
    padding: 20px 32px;
    gap: 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
    z-index: 10;
  }
}

@media (max-width: 560px) {
  .price__row { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .portfolio__item--wide { grid-column: span 1; }
  .reel { height: 34vh; min-height: 220px; }

  .process-card { flex: 0 0 88%; min-width: 0; }
}
