/* ============================================================
   RESTLESS HABITATION — Interior Design (Home)
   ============================================================ */

@font-face {
  font-family: "Dancing In The Rain";
  src: url("assets/DancingInTheRain.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper:  #E9E5E4;
  --paper-2:#F1EEEC;
  --cream:  #F6F4F2;
  --mauve:  #B7A6AB;
  --mauve-d:#9c8a90;
  --plum:   #68555D;
  --sage:   #595B51;
  --ink:    #393A33;
  --ink-soft: #4c4d44;
  --gold:   #E8D99B;
  --line:   rgba(57,58,51,0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body:  Georgia, "Times New Roman", Times, serif;
  --script:"Dancing In The Rain", "Snell Roundhand", cursive;

  --maxw: 1280px;
  --gutter: clamp(22px, 6vw, 120px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

p { text-wrap: pretty; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--mauve-d);
  margin: 0;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin: 0;
}
.script {
  font-family: var(--script);
  font-weight: 400;
  line-height: 0.9;
}
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.32;
  letter-spacing: 0.004em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* button / link styles */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 1.15em 2.1em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--filled { background: var(--plum); border-color: var(--plum); color: #fff; }
.btn--filled:hover { background: var(--ink); border-color: var(--ink); }
.btn--light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color:#fff; }

.txtlink {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: bold;
  color: var(--ink);
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--ink);
  transition: gap .4s var(--ease), color .4s var(--ease);
}
.txtlink:hover { gap: 1.1em; color: var(--plum); }
.txtlink .arr { transition: transform .4s var(--ease); }
.txtlink:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--gutter);
  transition: background .55s var(--ease), padding .55s var(--ease), box-shadow .55s var(--ease);
}
.topbar.solid {
  background: var(--paper);
  padding: 16px var(--gutter);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -34px rgba(57,58,51,.6);
}

.menu-btn {
  display: inline-flex; align-items: center; gap: 0.85em;
  background: none; border: 0; cursor: pointer; padding: 6px 0;
  font-family: var(--body); text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 0.7rem; font-weight: bold;
  color: #fff; transition: color .55s var(--ease);
}
.topbar.solid .menu-btn { color: var(--ink); }
.menu-btn .bars { display: inline-flex; flex-direction: column; gap: 4px; width: 24px; }
.menu-btn .bars span {
  height: 1.5px; width: 100%; background: currentColor; display: block;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.menu-open .menu-btn .bars span:nth-child(1){ transform: translateY(5.5px) rotate(45deg); }
.menu-open .menu-btn .bars span:nth-child(2){ opacity: 0; }
.menu-open .menu-btn .bars span:nth-child(3){ transform: translateY(-5.5px) rotate(-45deg); }

/* center logo in solid bar */
.topbar .bar-logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  height: 40px; opacity: 0; pointer-events: none;
  transition: opacity .55s var(--ease);
}
.topbar.solid .bar-logo { opacity: 1; }

.bar-right {
  font-family: var(--body); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.7rem; font-weight: bold;
  color: #fff; transition: color .55s var(--ease);
  border-bottom: 1px solid transparent; padding-bottom: 3px;
}
.topbar.solid .bar-right { color: var(--ink); }
.bar-right:hover { border-bottom-color: currentColor; }

/* dropdown panel (Jean Stoffer style, mauve block) */
.menu-panel {
  position: fixed; inset: 0 0 auto 0; z-index: 55;
  background: var(--mauve);
  transform: translateY(-100%);
  transition: transform .72s var(--ease);
  padding: clamp(96px,12vh,150px) var(--gutter) clamp(48px,7vh,80px);
  box-shadow: 0 40px 80px -40px rgba(57,58,51,.6);
}
.menu-open .menu-panel { transform: translateY(0); }
.menu-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end;
}
.menu-nav { display: flex; flex-direction: column; gap: 2px; }
.menu-nav a {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.12;
  color: #fff; width: fit-content; position: relative;
  transition: color .4s var(--ease), padding-left .45s var(--ease);
}
.menu-nav a .idx {
  font-family: var(--body); font-size: 0.72rem; font-weight: bold;
  letter-spacing: 0.2em; vertical-align: super; margin-right: 0.5em;
  color: rgba(255,255,255,.7);
}
.menu-nav a:hover { color: var(--ink); padding-left: 18px; }
.menu-meta {
  border-left: 1px solid rgba(255,255,255,.35); padding-left: 34px;
  color: #fff;
}
.menu-meta .eyebrow { color: rgba(255,255,255,.8); }
.menu-meta p { margin: 10px 0 0; font-size: 0.96rem; line-height: 1.7; color: rgba(255,255,255,.92); }
.menu-meta a.mailto { border-bottom: 1px solid rgba(255,255,255,.6); }
.menu-social { display: flex; gap: 26px; margin-top: 26px; }
.menu-social a {
  font-family: var(--body); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.68rem; font-weight: bold; color: #fff; opacity: .9;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
}
.menu-social a:hover { opacity: 1; border-bottom-color: #fff; }
.scrim {
  position: fixed; inset: 0; z-index: 50; background: rgba(57,58,51,0);
  pointer-events: none; transition: background .6s var(--ease);
}
.menu-open .scrim { background: rgba(57,58,51,.45); pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.8s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 52% at 50% 47%, rgba(40,40,35,.44) 0%, rgba(40,40,35,.10) 62%, transparent 78%),
    linear-gradient(to bottom, rgba(40,40,35,.48) 0%, rgba(40,40,35,.22) 30%, rgba(40,40,35,.28) 62%, rgba(40,40,35,.64) 100%);
}
.hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero__logo {
  /* sized by height so the centered stack stays short enough to clear the
     scroll cue / dots on short (laptop) viewports */
  height: clamp(220px, 46vh, 440px);
  width: auto;
  max-width: 90vw;
  filter: drop-shadow(0 6px 26px rgba(0,0,0,.55));
  opacity: 0; transform: translateY(18px);
  animation: rise 1.4s var(--ease) .25s forwards;
}
.hero__tag {
  margin-top: 30px; color: rgba(255,255,255,.92);
  text-transform: uppercase; letter-spacing: 0.42em; font-size: 0.74rem; font-weight: bold;
  opacity: 0; transform: translateY(14px);
  animation: rise 1.4s var(--ease) .55s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero__cta {
  margin-top: 34px;
  opacity: 0; transform: translateY(14px);
  animation: rise 1.4s var(--ease) .8s forwards;
}

.hero__cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85);
}
.hero__cue span {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.62rem; font-weight: bold;
}
.hero__cue i {
  width: 1px; height: 46px; background: rgba(255,255,255,.7); display: block;
  animation: cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

.hero__dots { position: absolute; right: var(--gutter); bottom: 34px; z-index: 2; display: flex; gap: 12px; }
.hero__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,.8);
  background: transparent; cursor: pointer; padding: 0; transition: background .4s var(--ease);
}
.hero__dots button.active { background: #fff; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(80px, 12vh, 168px) 0; }
.section--tight { padding: clamp(60px, 9vh, 120px) 0; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- ethos statement ---------- */
.ethos { text-align: center; position: relative; }
.ethos .wrap { max-width: 1040px; position: relative; z-index: 2; }
.ethos__mark {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%);
  width: min(520px, 80vw); opacity: 0.5; z-index: 1; pointer-events: none;
}
.ethos .eyebrow { margin-bottom: 30px; }
.ethos h2 { margin: 0; }
.ethos h2 em { font-style: italic; color: var(--plum); }
.ethos .sig { display: block; font-family: var(--script); color: var(--mauve-d); font-size: clamp(2rem,4vw,3rem); margin-top: 26px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative; z-index: 2; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 50px 80px -46px rgba(57,58,51,.85);
}
.about__media::before {
  content: ""; position: absolute; z-index: 1;
  left: -22px; bottom: -22px; width: 64%; height: 70%;
  border: 1px solid var(--mauve);
}
.about__media .cap {
  position: absolute; z-index: 3; right: 18px; bottom: -16px;
  background: var(--paper); padding: 10px 18px;
  font-family: var(--script); font-size: 1.6rem; color: var(--plum);
  box-shadow: 0 24px 40px -30px rgba(57,58,51,.6);
}
.about__body .eyebrow { margin-bottom: 22px; }
.about__body h2 { margin: 0 0 6px; font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.about__role {
  font-family: var(--body); font-style: italic; color: var(--sage);
  font-size: 1.05rem; letter-spacing: 0.02em; margin: 0 0 26px;
}
.about__body p { margin: 0 0 1.2em; color: var(--ink-soft); }
.about__body p:first-of-type { font-size: 1.08rem; }
.about__tags {
  display: flex; flex-wrap: wrap; gap: 10px 10px; margin: 26px 0 34px;
}
.about__tags span {
  font-family: var(--body); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--sage);
  border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper-2); }
.services__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  margin-bottom: clamp(40px, 6vh, 76px);
}
.services__head h2 { margin: 14px 0 0; font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.services__head p { margin: 0; color: var(--ink-soft); font-size: 1.06rem; }
.services__head .lede em { font-style: italic; color: var(--plum); }

.accordion { border-top: 1px solid var(--line); }
.acc {
  border-bottom: 1px solid var(--line);
}
.acc__head {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: clamp(16px,3vw,46px);
  align-items: center; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: clamp(26px,3.4vw,40px) 4px;
  color: var(--ink); transition: color .4s var(--ease);
}
.acc__head:hover { color: var(--plum); }
.acc__num {
  font-family: var(--body); font-size: 0.8rem; font-weight: bold;
  letter-spacing: 0.16em; color: var(--mauve-d);
}
.acc__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1; }
.acc__tag {
  font-family: var(--body); font-style: italic; color: var(--sage);
  font-size: 0.98rem; justify-self: end; max-width: 30ch; text-align: right;
}
.acc__icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: currentColor; transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.acc__icon::before { left: 0; top: 9.25px; width: 100%; height: 1.5px; }
.acc__icon::after  { top: 0; left: 9.25px; height: 100%; width: 1.5px; }
.acc.open .acc__icon::after { transform: scaleY(0); opacity: 0; }
.acc.open .acc__head { color: var(--plum); }

.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease);
}
.acc.open .acc__panel { grid-template-rows: 1fr; }
.acc__panelInner { overflow: hidden; }
.acc__content {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px,5vw,72px);
  padding: 4px 4px clamp(40px,5vw,64px); align-items: start;
}
.acc:nth-child(even) .acc__content { direction: rtl; }
.acc:nth-child(even) .acc__content > * { direction: ltr; }
.acc__blurb p { margin: 0 0 1.1em; color: var(--ink-soft); }
.acc__process { margin-top: 30px; }
.acc__process h4 {
  font-family: var(--body); text-transform: uppercase; letter-spacing: 0.26em;
  font-size: 0.7rem; font-weight: bold; color: var(--mauve-d); margin: 0 0 18px;
}
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.step:first-of-type { border-top: 0; }
.step .n {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--mauve);
  min-width: 1.6ch;
}
.step b { font-family: var(--serif); font-weight: 600; font-size: 1.16rem; display: block; margin-bottom: 2px; }
.step span { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.6; }
.acc__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: 0 40px 60px -48px rgba(57,58,51,.8); }
.acc__media.land img { aspect-ratio: 4/3; }
.acc__media .mcap {
  font-family: var(--body); font-style: italic; color: var(--sage);
  font-size: 0.86rem; margin-top: 12px; text-align: center;
}

/* ============================================================
   REVIEWS  (plum band)
   ============================================================ */
.reviews { background: var(--plum); color: #fff; }
.reviews__head { text-align: center; margin-bottom: clamp(40px,6vh,72px); }
.reviews__head .eyebrow { color: rgba(255,255,255,.72); }
.reviews__head h2 { color: #fff; margin: 14px 0 0; font-size: clamp(2.2rem,4.4vw,3.4rem); }
.reviews__head .script { display:block; color: var(--gold); font-size: clamp(2rem,4vw,3rem); margin-top: 6px; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px,4vw,60px);
}
.review { display: flex; flex-direction: column; gap: 16px; }
.stars { display: flex; gap: 5px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.review p {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.18rem,1.7vw,1.42rem);
  line-height: 1.5; margin: 0; color: rgba(255,255,255,.95);
}
.review p::before { content: "“"; }
.review p::after { content: "”"; }
.review .who {
  font-family: var(--body); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.68rem; font-weight: bold; color: rgba(255,255,255,.7); margin-top: auto;
}
.reviews__cta { text-align: center; margin-top: clamp(44px,6vh,72px); }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: clamp(34px,5vh,60px); flex-wrap: wrap;
}
.gallery__head h2 { margin: 12px 0 0; font-size: clamp(2.2rem,4.4vw,3.4rem); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px,1.6vw,22px);
  grid-auto-flow: dense;
}
.gtile { overflow: hidden; position: relative; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gtile:hover img { transform: scale(1.05); }
.g-a { grid-column: span 5; aspect-ratio: 4/3; }
.g-b { grid-column: span 4; aspect-ratio: 3/4; }
.g-c { grid-column: span 3; aspect-ratio: 3/4; }
.g-d { grid-column: span 4; aspect-ratio: 3/4; }
.g-e { grid-column: span 5; aspect-ratio: 4/3; }
.g-f { grid-column: span 3; aspect-ratio: 3/4; }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta__mark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: min(460px, 50vw); opacity: 0.10; pointer-events: none;
}
.cta .wrap { position: relative; z-index: 2; max-width: 940px; }
.cta .eyebrow { color: var(--mauve); }
.cta h2 { color: #fff; margin: 18px 0 0; font-size: clamp(2.2rem,4.6vw,3.7rem); max-width: 18ch; }
.cta p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 56ch; margin: 24px 0 0; }
.cta__row { display: flex; gap: 18px 26px; align-items: center; margin-top: 38px; flex-wrap: wrap; }
.cta__fee {
  font-family: var(--body); font-style: italic; color: rgba(255,255,255,.7); font-size: 0.95rem;
}
.cta__booking {
  margin-top: 46px; border: 1px dashed rgba(255,255,255,.32); border-radius: 4px;
  padding: 26px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; background: rgba(255,255,255,.02);
}
.cta__booking .lbl {
  font-family: monospace; font-size: 0.72rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--mauve); display: block; margin-bottom: 6px;
}
.cta__booking .txt { font-family: var(--serif); font-size: 1.3rem; }
.cta__booking small { color: rgba(255,255,255,.55); font-family: var(--body); }

/* ============================================================
   BOTTOM BANNER / FOOTER
   ============================================================ */
.banner { background: var(--paper); padding: clamp(64px,9vh,110px) 0 0; }
.banner__top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; align-items: start;
  padding-bottom: clamp(48px,7vh,80px); border-bottom: 1px solid var(--line);
}
.banner__brand img { width: 96px; margin-bottom: 22px; }
.banner__brand .lets { font-family: var(--serif); font-size: clamp(2rem,3.2vw,2.8rem); line-height: 1.1; margin: 0; }
.banner__brand a.email {
  display: inline-block; margin-top: 14px; font-family: var(--body); font-size: 1.12rem;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
}
.banner__brand a.email:hover { color: var(--plum); border-color: var(--plum); }
.banner__col h4 {
  font-family: var(--body); text-transform: uppercase; letter-spacing: 0.26em;
  font-size: 0.68rem; font-weight: bold; color: var(--mauve-d); margin: 6px 0 18px;
}
.banner__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.banner__col a { font-size: 1rem; color: var(--ink-soft); transition: color .3s var(--ease); width: fit-content; }
.banner__col a:hover { color: var(--plum); }
.banner__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 26px 0 34px; flex-wrap: wrap;
}
.banner__bottom small { font-family: var(--body); color: var(--sage); font-size: 0.8rem; letter-spacing: 0.02em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .menu-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-meta { border-left: 0; border-top: 1px solid rgba(255,255,255,.3); padding-left: 0; padding-top: 26px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 460px; }
  .services__head { grid-template-columns: 1fr; gap: 18px; }
  .acc__head { grid-template-columns: auto 1fr auto; }
  .acc__tag { display: none; }
  .acc__content { grid-template-columns: 1fr; }
  .acc:nth-child(even) .acc__content { direction: ltr; }
  .acc__media { max-width: 420px; margin-top: 8px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .g-a,.g-b,.g-c,.g-d,.g-e,.g-f { grid-column: span 1; aspect-ratio: 3/4; }
  .g-a,.g-e { aspect-ratio: 4/3; }
  .banner__top { grid-template-columns: 1fr; gap: 36px; }
  .hero__dots { display: none; }
}
@media (max-width: 540px) {
  .hero__cue { display: none; }
  .cta__booking { flex-direction: column; align-items: flex-start; }
}
/* short (laptop) viewports: drop the scroll cue so it can't collide with the CTA */
@media (max-height: 720px) {
  .hero__cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity 1s; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__logo, .hero__tag, .hero__cta { animation: none; opacity: 1; transform: none; }
  .hero__cue i { animation: none; }
}
