/* ============================================================
   ShareGroup Travel — Homepage Styles
   Palette & type matched to the reference design
   ============================================================ */

:root {
  --ink: #0e2a47;          /* deep navy — headings/foreground */
  --ember: #2c5a87;        /* slate-blue accent */
  --ember-deep: #1f4061;   /* accent hover */
  --ember-light: #93b2d2;  /* accent on dark backgrounds */
  --night: #08111d;        /* dark sections */
  --white: #ffffff;
  --mist: #f7f9fc;         /* alt section background */
  --muted: #54657a;        /* body copy */
  --line: rgba(14, 42, 71, .12);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Eyebrow / titles ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--ember-light); }

.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section__title em { font-style: italic; color: var(--ember); }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--ember-light); }

/* ---------- Buttons (sharp, uppercase, tracked) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  padding: 19px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--ember); color: var(--white); }
.btn--solid:hover { background: var(--ember-deep); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--sm { padding: 14px 24px; font-size: 10px; background: var(--ember); color: var(--white); }
.btn--sm:hover { background: var(--ember-deep); }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(14,42,71,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--white);
  transition: color .4s var(--ease);
}
.brand em { font-style: italic; color: var(--ember-light); }
.brand__sep { color: var(--ember-light); font-size: .55em; vertical-align: middle; margin: 0 11px; }
.brand__sub { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; vertical-align: middle; }
.nav.scrolled .brand__sep { color: var(--ember); }
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .brand em { color: var(--ember); }
.brand--light { color: var(--white); }
.brand--light em { color: var(--ember-light); }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85); position: relative; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--ember-light); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink); }

.nav__cta { font-size: 10px; padding: 14px 24px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: all .3s; }
.nav.scrolled .nav__toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://preview-chat-61b258ab-b8ad-4c57-bfb4-208d54d33c67.space-z.ai/images/waynoka-hero.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.16); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,17,29,.55) 0%, rgba(8,17,29,.42) 45%, rgba(8,17,29,.6) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; padding-top: 70px; text-align: center; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: 26px;
}
.hero__title em { font-style: italic; color: var(--ember-light); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 300; max-width: 600px; color: rgba(255,255,255,.9); margin: 0 auto 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Search bar (only addition to the design) ---------- */
.search {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, .97);
  max-width: 720px;
  margin: 28px auto 0;
  box-shadow: 0 30px 60px -28px rgba(8, 17, 29, .7);
  text-align: left;
}
.search__field {
  display: flex; flex-direction: column; justify-content: center;
  padding: 16px 24px; flex: 1; min-width: 0;
  border-right: 1px solid var(--line); text-align: left;
}
.search__label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ember); font-weight: 700; margin-bottom: 4px;
}
.search__input {
  border: 0; background: transparent; font-family: var(--sans);
  font-size: 14px; color: var(--ink); padding: 0; width: 100%; outline: none; font-weight: 500;
}
.search__input::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }
.search__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ember); color: var(--white); border: 0; cursor: pointer;
  padding: 0 30px; font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  transition: background .35s var(--ease);
}
.search__btn:hover { background: var(--ember-deep); }
.search__btn-icon { font-size: 18px; line-height: 1; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.hero__scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.45); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -46px; left: 0; width: 100%; height: 46px; background: var(--ember-light); animation: scrollDrop 2s ease-in-out infinite; }
@keyframes scrollDrop { 0% { top: -46px; } 60%,100% { top: 46px; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(76px, 10vw, 136px) 0; }
.section--alt { background: var(--mist); }
.section__head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__intro { margin-top: 22px; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.3rem; font-weight: 400; line-height: 1.5; }

.search-result {
  text-align: center; margin: -16px 0 40px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--ember);
}

/* ============================================================
   PROPERTIES (tabbed showcase)
   ============================================================ */
.ptabs {
  display: flex; flex-wrap: wrap; gap: 8px 40px;
  border-bottom: 1px solid var(--line); margin-bottom: 56px;
}
.ptab {
  background: none; border: 0; cursor: pointer; padding: 0 0 20px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  position: relative; transition: color .3s var(--ease); white-space: nowrap;
}
.ptab::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--ember); transition: width .35s var(--ease);
}
.ptab:hover { color: var(--ink); }
.ptab.is-active { color: var(--ember); }
.ptab.is-active::after { width: 100%; }

.pshowcase { position: relative; }
.ppanel { display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.ppanel.is-active { display: grid; animation: panelFade .5s var(--ease); }
@keyframes panelFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.pshow__media {
  position: relative; min-height: 500px; background-size: cover; background-position: center;
}
.pshow__loc {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: rgba(8,17,29,.78); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 10px 18px;
}

.pshow__body { display: flex; flex-direction: column; padding: 4px 0; }
.pshow__kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--ember); font-weight: 600; }
.pshow__title { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300; color: var(--ink); line-height: 1.02; margin: 14px 0 24px; }

.pshow__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 26px; }
.pshow__specs li { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); font-weight: 500; }
.pshow__specs svg { width: 19px; height: 19px; fill: none; stroke: var(--ember); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pshow__specs svg.fill { fill: var(--ember); stroke: none; }
.pshow__star { color: var(--muted); font-size: 13px; }

.pshow__desc { font-family: var(--serif); font-size: 1.25rem; font-style: italic; font-weight: 400; line-height: 1.5; color: var(--muted); margin-bottom: 26px; }
.pshow__highlight {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink);
  background: var(--mist); border-left: 3px solid var(--ember); padding: 16px 20px; margin-bottom: 28px;
}

.pshow__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.pshow__tags li { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 9px 14px; }

.pshow__foot {
  margin-top: auto; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.pshow__price { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--ember); }
.pshow__price small { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-left: 6px; }
.pshow__book { gap: 12px; }
.pshow__book .arr { transition: transform .3s var(--ease); }
.pshow__book:hover .arr { transform: translateX(5px); }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.exp {
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.exp:hover { transform: translateY(-6px); box-shadow: 0 36px 70px -34px rgba(8,17,29,.5); }
.exp__media { position: relative; height: 380px; background-size: cover; background-position: center; }
.exp__badge {
  position: absolute; top: 20px; left: 20px; width: 48px; height: 48px;
  background: var(--ember); display: grid; place-items: center;
}
.exp__badge svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.exp__text { padding: 34px 36px 42px; }
.exp h3 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 16px; }
.exp p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 16px; }
.g {
  position: relative; overflow: hidden; background-size: cover; background-position: center; cursor: pointer;
  transition: transform .6s var(--ease);
}
.g::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,29,.72), transparent 60%); opacity: .5; transition: opacity .4s; }
.g:hover::after { opacity: .9; }
.g figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  transform: translateY(8px); opacity: 0; transition: all .4s var(--ease);
}
.g:hover figcaption { transform: translateY(0); opacity: 1; }
.g--tall { grid-row: span 1; }
.g--wide { grid-column: span 1; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { position: relative; padding: clamp(84px, 12vw, 150px) 0; color: var(--white); overflow: hidden; background: var(--night); }
.testimonial__bg {
  position: absolute; inset: 0; opacity: .22;
  background: url('https://preview-chat-61b258ab-b8ad-4c57-bfb4-208d54d33c67.space-z.ai/images/tulum-beach.png') center/cover;
}
.testimonial__inner { position: relative; z-index: 2; text-align: center; max-width: 840px; }
.quote { margin-top: 38px; }
.quote__mark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--ember-light); display: block; margin-bottom: 14px; }
.quote p { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.05rem); font-style: italic; font-weight: 300; line-height: 1.45; color: var(--white); }
.quote footer { margin-top: 30px; display: flex; flex-direction: column; gap: 5px; }
.quote footer strong { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-light); }
.quote footer span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity {
  background: var(--white); border: 1px solid var(--line);
  padding: 30px 22px; text-align: center; transition: all .35s var(--ease);
}
.amenity:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-4px); }
.amenity:hover h4 { color: var(--white); }
.amenity:hover p { color: var(--ember-light); }
.amenity__icon { font-size: 26px; display: block; margin-bottom: 14px; }
.amenity h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.amenity p { font-size: 12.5px; color: var(--muted); font-weight: 300; }

/* ============================================================
   EXPLORE
   ============================================================ */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 26px; }
.explore {
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.explore:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(8,17,29,.45); }
.explore__media { position: relative; height: 220px; background-size: cover; background-position: center; }
.explore__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,29,.5), transparent 60%); }
.explore__tag {
  position: absolute; left: 18px; top: 18px; z-index: 2; background: var(--ember); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 7px 15px;
}
.explore__body { padding: 32px; }
.explore__body h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ink); margin-bottom: 20px; }
.explore__body ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.explore__body li { display: flex; flex-direction: column; padding-left: 22px; position: relative; }
.explore__body li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--ember); }
.explore__body strong { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.explore__body span { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ============================================================
   BOOK DIRECT
   ============================================================ */
.bookdirect { position: relative; padding: clamp(76px,10vw,128px) 0; background: var(--night); color: var(--white); overflow: hidden; }
.bookdirect::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 15%, rgba(44,90,135,.28), transparent 55%); }
.bookdirect__inner { position: relative; z-index: 2; text-align: center; max-width: 840px; margin: 0 auto; }
.bookdirect__lead { margin: 24px auto 44px; max-width: 640px; color: rgba(255,255,255,.82); font-weight: 300; font-size: 1.05rem; }
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.perk { display: flex; flex-direction: column; gap: 8px; padding: 28px 18px; border: 1px solid rgba(255,255,255,.14); }
.perk strong { font-family: var(--serif); font-size: 1.4rem; color: var(--ember-light); font-weight: 400; }
.perk span { font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.65); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.info { display: flex; flex-direction: column; gap: 5px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.info:last-child { border-bottom: 0; }
.info__label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ember); font-weight: 700; }
.info a, .info p { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); font-weight: 400; }
.info a:hover { color: var(--ember); }
.info__note { font-size: 13px; color: var(--muted); font-weight: 300; font-family: var(--sans); }

.contact__form {
  background: var(--white); border: 1px solid var(--line);
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ember); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 14px; padding: 14px 16px; border: 1px solid var(--line);
  background: var(--mist); color: var(--ink); transition: border-color .3s, background .3s;
  width: 100%; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ember); background: var(--white); }
.contact__form .btn { grid-column: 1 / -1; }
.form__note { grid-column: 1/-1; text-align: center; font-size: 14px; color: var(--ember); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night); color: rgba(255,255,255,.75); padding: 76px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1.3fr 1.3fr 1.3fr; gap: 44px; padding-bottom: 54px; }
.footer__brand .brand { font-size: 1.8rem; margin-bottom: 18px; display: inline-block; }
.footer__brand p { font-size: 14px; font-weight: 300; max-width: 290px; }
.footer__col h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 20px; font-weight: 700; }
.footer__col a, .footer__col p { display: block; font-size: 14px; font-weight: 300; margin-bottom: 11px; transition: color .3s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 26px 28px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .ppanel { grid-template-columns: 1fr; gap: 0; }
  .pshow__media { min-height: 320px; }
  .pshow__body { padding: 30px 0 0; }
  .ptabs { flex-wrap: nowrap; overflow-x: auto; gap: 0 28px; -webkit-overflow-scrolling: touch; }
  .ptab { padding-bottom: 16px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(3, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 10px 28px 22px; box-shadow: 0 30px 50px -30px rgba(8,17,29,.5);
  }
  .nav__links.open a { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .nav__links.open a::after { display: none; }

  .search { flex-direction: column; max-width: 420px; }
  .search__field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search__btn { width: 100%; padding: 16px; justify-content: center; }

  .contact__form { grid-template-columns: 1fr; padding: 28px; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
