/* ============================================================
   The Paradise Home Stay — Amritsar
   Design system
   ============================================================ */

:root {
  /* palette */
  --ivory:      #F5EFE6;
  --ivory-2:    #EFE7DA;
  --paper:      #FBF8F2;
  --ink:        #14171F;
  --indigo:     #1B2A4E;
  --indigo-2:   #253762;
  --brass:      #B08D57;
  --brass-dk:   #8E6E3D;
  --marigold:   #E4A853;
  --mist:       #C8D5C0;
  --line:       rgba(20,23,31,0.14);
  --line-2:     rgba(20,23,31,0.08);

  /* type */
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* space */
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ============ Type ============ */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.display em, .italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-dk);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dk);
  font-weight: 500;
}

.label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,23,31,0.55);
}

h1.display { font-size: clamp(56px, 9vw, 148px); }
h2.display { font-size: clamp(40px, 6vw, 88px); }
h3.display { font-size: clamp(28px, 3.4vw, 44px); }

p.lede {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 300;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  color: var(--indigo);
  max-width: 30ch;
}

/* ============ Layout ============ */
.wrap {
  width: 100%;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section); }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,239,230,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-2);
  padding-block: 14px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--indigo);
  display: flex; align-items: center; gap: 12px;
}
.nav-brand::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--brass);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L14 8 L20 8 L15 12 L17 18 L12 15 L7 18 L9 12 L4 8 L10 8 Z' fill='black'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L14 8 L20 8 L15 12 L17 18 L12 15 L7 18 L9 12 L4 8 L10 8 Z' fill='black'/></svg>") center/contain no-repeat;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brass);
}
.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--indigo);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--indigo);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--indigo); color: var(--ivory); }

.nav-toggle {
  display: none;
  background: transparent; border: none;
  width: 40px; height: 32px;
  cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: transform 0.3s;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: var(--ivory);
    padding: 40px var(--gutter);
    gap: 20px;
    font-size: 22px;
    font-family: var(--display);
    align-items: flex-start;
  }
  .nav.open .nav-toggle span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav-toggle span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s, color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--indigo);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(20,23,31,0.4);
}
.btn-ghost {
  border: 1px solid var(--indigo);
  color: var(--indigo);
  background: transparent;
}
.btn-ghost:hover { background: var(--indigo); color: var(--ivory); }

.btn-arrow::after {
  content: "→";
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============ Homepage Hero ============ */
.hero {
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
}
.hero-eyebrow {
  position: absolute;
  top: 110px; left: var(--gutter);
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.hero-title { margin-bottom: 40px; }
.hero-title .l1 { display: block; }
.hero-title .l2 { display: block; margin-left: 1.4em; }
.hero-title .l3 { display: block; margin-left: 0.4em; font-style: italic; color: var(--brass-dk); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }

.hero-meta {
  display: flex; gap: 40px; margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 500px;
}
.hero-meta > div { flex: 1; }
.hero-meta .val {
  font-family: var(--display);
  font-size: 22px;
  color: var(--indigo);
  display: block;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,42,78,0.4));
}
.hero-card {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: var(--paper);
  padding: 20px 22px;
  z-index: 2;
  border-left: 2px solid var(--brass);
}
.hero-card .l { display: flex; justify-content: space-between; align-items: baseline; }
.hero-card .l + .l { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line-2); }
.hero-card .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(20,23,31,0.55); }
.hero-card .v { font-family: var(--display); font-size: 16px; color: var(--indigo); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 140px; }
  .hero-right { aspect-ratio: 4/5; }
  .hero-title .l2 { margin-left: 0; }
  .hero-title .l3 { margin-left: 0; }
}

/* ============ Marquee ============ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.marquee-track span { display: flex; align-items: center; gap: 60px; }
.marquee-track .sep {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 3vw, 56px);
  margin-bottom: clamp(36px, 4.5vw, 64px);
  align-items: end;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--brass-dk);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============ Feature grid (home) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.feature {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(20,23,31,0.25); }
.feature .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.feature h3 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.05;
  margin-top: 60px;
  color: var(--indigo);
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.feature p { font-size: 14px; color: rgba(20,23,31,0.72); margin-top: 12px; }
.f-1 { grid-column: span 5; background: var(--indigo); color: var(--ivory); }
.f-1 h3 { color: var(--ivory); }
.f-1 p { color: rgba(245,239,230,0.75); }
.f-1 .num { color: var(--marigold); }
.f-2 { grid-column: span 4; }
.f-3 { grid-column: span 3; }
.f-4 { grid-column: span 4; }
.f-5 { grid-column: span 4; background: var(--ivory-2); }
.f-6 { grid-column: span 4; }
@media (max-width: 860px) {
  .feature { grid-column: span 12 !important; }
}

/* ============ Split (about teaser / room preview) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { color: var(--indigo); margin-bottom: 24px; }
.split-body p { color: rgba(20,23,31,0.72); margin-bottom: 16px; max-width: 46ch; }
.split-body .eyebrow { margin-bottom: 20px; display: inline-block; }
.split-body .btn { margin-top: 24px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* ============ Testimonial ============ */
.quote-block {
  padding: var(--section) var(--gutter);
  background: var(--indigo);
  color: var(--ivory);
}
.quote-block .inner { max-width: 1000px; margin: 0 auto; }
.quote-block blockquote {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.15;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.quote-block blockquote em {
  color: var(--marigold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.quote-block cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--marigold);
}

/* ============ Footer ============ */
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 90px var(--gutter) 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,230,0.14);
}
footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  font-weight: 500;
}
footer .brand-l {
  font-family: var(--display);
  font-size: 44px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--ivory);
}
footer p, footer a, footer li {
  font-size: 14px;
  color: rgba(245,239,230,0.75);
  line-height: 1.7;
}
footer ul { list-style: none; }
footer a:hover { color: var(--marigold); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  color: rgba(245,239,230,0.45);
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============ Page hero (interior pages) ============ */
.page-hero {
  padding: 180px var(--gutter) 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: 32px;
}
.page-hero .breadcrumb .sep { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  color: var(--indigo);
  max-width: 12ch;
  letter-spacing: -0.02em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--brass-dk);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-hero .sub {
  margin-top: 40px;
  max-width: 60ch;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-variation-settings: "opsz" 60, "SOFT" 20;
  color: rgba(20,23,31,0.72);
}

/* ============ Rooms page ============ */
.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.room:last-child { border-bottom: 1px solid var(--line); }
.room:nth-child(even) .room-media { order: 2; }
.room-media {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.room-media:hover img { transform: scale(1.04); }
.room-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--ivory);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
}
.room-body h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--indigo);
  margin-bottom: 20px;
}
.room-body h2 em {
  font-style: italic; color: var(--brass-dk);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.room-body > p {
  font-size: 15.5px;
  color: rgba(20,23,31,0.72);
  max-width: 46ch;
  margin-bottom: 32px;
}
.spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  padding: 24px 0;
  border-block: 1px solid var(--line-2);
  margin-bottom: 32px;
}
.spec > div {}
.spec .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(20,23,31,0.55); }
.spec .v { font-family: var(--display); font-size: 18px; color: var(--indigo); margin-top: 4px; }
.room-price {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px;
}
.room-price .amt {
  font-family: var(--display);
  font-size: 44px;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.room-price .per { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(20,23,31,0.5); }
.room-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .room { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .room:nth-child(even) .room-media { order: 0; }
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 var(--gutter) var(--section);
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(20,23,31,0.75));
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.g-a { grid-column: span 7; aspect-ratio: 3/2; }
.g-b { grid-column: span 5; aspect-ratio: 3/2; }
.g-c { grid-column: span 4; aspect-ratio: 4/5; }
.g-d { grid-column: span 4; aspect-ratio: 4/5; }
.g-e { grid-column: span 4; aspect-ratio: 4/5; }
.g-f { grid-column: span 5; aspect-ratio: 3/2; }
.g-g { grid-column: span 7; aspect-ratio: 3/2; }
.g-h { grid-column: span 6; aspect-ratio: 3/2; }
.g-i { grid-column: span 6; aspect-ratio: 3/2; }
@media (max-width: 860px) {
  .gallery-grid > * { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}

/* ============ Sightseeing ============ */
.sight-intro {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.sight-intro .col-l .eyebrow { margin-bottom: 24px; display: block; }
.sight-intro .col-l h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  color: var(--indigo);
}
.sight-intro .col-l h2 em {
  font-style: italic; color: var(--brass-dk);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.sight-intro .col-r p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(20,23,31,0.78);
  max-width: 60ch;
  margin-bottom: 20px;
}
.sight-intro .col-r p:first-child::first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--brass-dk);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
}
@media (max-width: 860px) {
  .sight-intro { grid-template-columns: 1fr; gap: 40px; }
}

/* Sight cards — the meat of the sightseeing page */
.sight {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 90px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.sight-num {
  font-family: var(--display);
  font-size: 74px;
  color: var(--brass);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  padding-top: 6px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.sight-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sight-body h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  color: var(--indigo);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sight-body .native {
  font-family: var(--display);
  font-style: italic;
  color: var(--brass-dk);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 20px;
  margin-bottom: 24px;
  display: block;
}
.sight-body p {
  font-size: 15.5px;
  line-height: 1.72;
  color: rgba(20,23,31,0.78);
  margin-bottom: 16px;
  max-width: 52ch;
}
.sight-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding: 22px 0;
  margin-top: 24px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.sight-meta > div .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(20,23,31,0.5); }
.sight-meta > div .v { font-family: var(--display); font-size: 16px; color: var(--indigo); margin-top: 4px; font-variation-settings: "opsz" 60, "SOFT" 30; }

.sight-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.sight-media img { width: 100%; height: 100%; object-fit: cover; }
.sight-media .stamp {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--ivory);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
}

.sight-quote {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 70ch;
}
.sight-quote::before {
  content: "“";
  font-size: 60px;
  line-height: 0;
  vertical-align: -22px;
  color: var(--brass);
  margin-right: 6px;
}

@media (max-width: 860px) {
  .sight { grid-template-columns: 1fr; gap: 24px; padding: 60px var(--gutter); }
  .sight-num { position: static; font-size: 56px; }
  .sight-body { grid-template-columns: 1fr; gap: 32px; }
}

/* Food strip */
.food-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--section) var(--gutter);
}
.food-strip .lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.food-strip h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  color: var(--ivory);
}
.food-strip h2 em {
  font-style: italic; color: var(--marigold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.food-strip .lead p {
  color: rgba(245,239,230,0.72);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 50ch;
}
.food-strip .eyebrow { color: var(--marigold); }
.food-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.food-item {
  padding: 32px 0;
  border-top: 1px solid rgba(245,239,230,0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.food-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(245,239,230,0.14); }
.food-item:nth-child(even) { padding-left: 40px; }
.food-item h4 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 4px;
}
.food-item h4 em { font-style: italic; color: var(--marigold); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.food-item p { font-size: 13.5px; color: rgba(245,239,230,0.62); line-height: 1.6; max-width: 40ch; }
.food-item .must {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marigold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
}
@media (max-width: 720px) {
  .food-list { grid-template-columns: 1fr; }
  .food-item:nth-child(odd), .food-item:nth-child(even) { padding: 24px 0; border-right: none; }
  .food-strip .lead { grid-template-columns: 1fr; gap: 24px; }
}

/* Itinerary strip */
.itin {
  padding: var(--section) var(--gutter);
  background: var(--ivory-2);
}
.itin-title { margin-bottom: 60px; text-align: center; max-width: 720px; margin-inline: auto; }
.itin-title h2 { font-family: var(--display); font-size: clamp(36px, 4vw, 60px); color: var(--indigo); line-height: 1; }
.itin-title h2 em { font-style: italic; color: var(--brass-dk); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.itin-title p { margin-top: 20px; color: rgba(20,23,31,0.7); font-size: 15px; }
.itin-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.itin-day {
  padding: 32px 28px;
  background: var(--paper);
  border-top: 3px solid var(--brass);
  min-height: 320px;
  display: flex; flex-direction: column;
}
.itin-day .day {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: 8px;
}
.itin-day h4 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--indigo);
  line-height: 1.05;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.itin-day ol {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: rgba(20,23,31,0.75);
  line-height: 1.7;
}
.itin-day ol li {
  padding-left: 22px;
  position: relative;
  padding-block: 4px;
}
.itin-day ol li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--brass);
}
@media (max-width: 860px) {
  .itin-days { grid-template-columns: 1fr; }
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 var(--gutter) var(--section);
}
.contact-info h3 {
  font-family: var(--display);
  font-size: 40px;
  color: var(--indigo);
  margin-bottom: 12px;
  line-height: 1;
}
.contact-info h3 em { font-style: italic; color: var(--brass-dk); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.contact-info > p { color: rgba(20,23,31,0.72); font-size: 15px; margin-bottom: 40px; max-width: 42ch; }
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line-2); }
.contact-list .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(20,23,31,0.55); }
.contact-list .v { font-family: var(--display); font-size: 18px; color: var(--indigo); font-variation-settings: "opsz" 60, "SOFT" 30; }
.contact-list .v a:hover { color: var(--brass-dk); }
.contact-list .v .small { font-family: var(--body); font-size: 13.5px; color: rgba(20,23,31,0.6); display: block; margin-top: 4px; }

.contact-cta {
  background: var(--indigo);
  color: var(--ivory);
  padding: 48px 40px;
  align-self: start;
}
.contact-cta .eyebrow { color: var(--marigold); }
.contact-cta h3 {
  font-family: var(--display);
  font-size: 36px;
  color: var(--ivory);
  margin: 20px 0 20px;
  line-height: 1.05;
}
.contact-cta h3 em { font-style: italic; color: var(--marigold); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.contact-cta p { color: rgba(245,239,230,0.75); font-size: 14.5px; margin-bottom: 28px; }
.contact-cta .btn-primary { background: var(--marigold); color: var(--indigo); }
.contact-cta .btn-primary:hover { background: var(--ivory); }
.contact-cta .fine {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,230,0.15);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245,239,230,0.5);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============ About page prose ============ */
.about-lead {
  padding: 0 var(--gutter) var(--section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lead .col-l .eyebrow { display: block; margin-bottom: 24px; }
.about-lead .col-l h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  color: var(--indigo);
}
.about-lead .col-l h2 em { font-style: italic; color: var(--brass-dk); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.about-lead .col-r p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(20,23,31,0.78);
  margin-bottom: 18px;
  max-width: 55ch;
}
.about-lead .col-r p:first-child::first-letter {
  font-family: var(--display);
  font-size: 68px;
  float: left;
  line-height: 0.82;
  padding: 4px 12px 0 0;
  color: var(--brass-dk);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.about-lead .signature {
  margin-top: 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.about-lead .signature small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20,23,31,0.55);
  font-style: normal;
  margin-top: 4px;
}
@media (max-width: 860px) {
  .about-lead { grid-template-columns: 1fr; gap: 32px; }
}

.values {
  padding: var(--section) var(--gutter);
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.value {
  padding: 40px 40px;
  border-right: 1px solid var(--line-2);
}
.value:last-child { border-right: none; }
.value .num { font-family: var(--mono); font-size: 12px; color: var(--brass); letter-spacing: 0.18em; }
.value h4 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--indigo);
  margin: 24px 0 12px;
  line-height: 1.1;
}
.value p { font-size: 14.5px; color: rgba(20,23,31,0.72); line-height: 1.65; }
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line-2); }
  .value:last-child { border-bottom: none; }
}

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.55);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ============ Small ============ */
.hr-orn {
  display: flex; align-items: center; gap: 12px;
  margin: 40px 0;
}
.hr-orn::before, .hr-orn::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.hr-orn .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
/* ============================================
   SPACING SCALE  (added — used by blocks below)
   ============================================ */
:root{
  --stack-xs: clamp(10px, 1vw, 14px);
  --stack-sm: clamp(16px, 1.8vw, 24px);
  --stack-md: clamp(28px, 3.2vw, 44px);
  --stack-lg: clamp(48px, 5.5vw, 76px);
  --stack-xl: clamp(72px, 8vw, 110px);
}

/* Adjacent .wrap sections: avoid double-gap, keep a single rhythm unit */
section.wrap + section.wrap { padding-top: 0; padding-bottom: var(--section); }

/* ============================================
   TWO WAYS TO STAY  (homepage)
   ============================================ */
.stay-pair{
  display:grid; grid-template-columns:1fr 1fr;
  gap: clamp(24px, 2.6vw, 40px);
}
.stay-card{
  background:var(--ivory-2);
  border:1px solid rgba(27,42,78,0.10);
  display:flex; flex-direction:column;
}
.stay-media{ position:relative; overflow:hidden; }
.stay-media img{
  width:100%; aspect-ratio:4/3; object-fit:cover; display:block;
  transition:transform .9s cubic-bezier(.2,.7,.2,1);
}
.stay-card:hover .stay-media img{ transform:scale(1.035); }
.stay-tag{
  position:absolute; top:0; left:0;
  background:var(--indigo); color:var(--ivory);
  font-family:var(--mono); font-size:11px; letter-spacing:.14em;
  padding:9px 14px;
}
.stay-body{
  padding: clamp(26px, 2.6vw, 38px);
  display:flex; flex-direction:column; flex:1;
}
.stay-body h3{
  font-family:var(--display);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height:1.14; color:var(--indigo);
  margin:0 0 var(--stack-xs);
  font-variation-settings:"SOFT" 30,"WONK" 1;
}
.stay-body > p{
  font-size:15px; line-height:1.75; color:rgba(20,23,31,0.74);
  margin:0 0 var(--stack-md); max-width:46ch;
}
.stay-specs{ list-style:none; padding:0; margin:0 0 var(--stack-md); }
.stay-specs li{
  display:flex; justify-content:space-between; align-items:baseline;
  gap:20px; padding:12px 0;
  border-bottom:1px solid rgba(27,42,78,0.12);
}
.stay-specs li:first-child{ border-top:1px solid rgba(27,42,78,0.12); }
.stay-specs span{
  font-family:var(--mono); font-size:10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:rgba(20,23,31,0.5); white-space:nowrap;
}
.stay-specs b{
  font-weight:600; font-size:14.5px; color:var(--indigo);
  text-align:right; line-height:1.45;
}
.stay-specs b i{
  font-style:normal; font-family:var(--mono); font-size:11px;
  color:rgba(20,23,31,0.5); letter-spacing:.04em;
}
.stay-body .btn{ margin-top:auto; align-self:flex-start; }

.stay-note{
  margin: var(--stack-lg) auto 0; max-width:62ch; text-align:center;
  font-size:14.5px; line-height:1.75; color:rgba(20,23,31,0.62);
  padding-top: var(--stack-md);
  border-top:1px solid rgba(27,42,78,0.14);
}

/* ============================================
   HOUSE STRIP  (pool / gym / restaurant)
   ============================================ */
.house-strip{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap: clamp(18px, 2vw, 30px);
}
.house-strip figure{ margin:0; }
.house-strip img{
  width:100%; aspect-ratio:3/2; object-fit:cover; display:block;
  filter:saturate(.96);
  transition:transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.house-strip figure:hover img{ transform:scale(1.03); filter:saturate(1.05); }
.house-strip figcaption{
  display:flex; align-items:baseline; gap:12px;
  margin-top: var(--stack-xs);
  font-family:var(--mono); font-size:11.5px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--indigo);
}
.house-strip figcaption span{ color:var(--brass); }

.foot-note{
  font-size:12px !important; color:rgba(245,239,230,0.45) !important;
  margin-top:10px; line-height:1.55;
}

/* ============================================
   ROOM FILMSTRIP + PLAIN NOTES
   ============================================ */
.room-film{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap: clamp(12px, 1.3vw, 20px);
  margin: 0 0 var(--stack-xl);
}
.room-film figure{ margin:0; }
.room-film img{
  width:100%; aspect-ratio:1/1; object-fit:cover; display:block;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.room-film figure:hover img{ transform:scale(1.04); }
.room-film figcaption{
  margin-top: var(--stack-xs);
  font-family:var(--mono); font-size:10.5px;
  letter-spacing:.15em; text-transform:uppercase;
  color:rgba(20,23,31,0.52);
}

.notes-plain{ margin-top: var(--stack-md); max-width:66ch; }
.notes-plain p{
  font-size:15px; line-height:1.8; color:rgba(20,23,31,0.72);
  margin:0 0 var(--stack-sm); padding-left:20px;
  border-left:2px solid rgba(176,141,87,0.4);
}
.notes-plain p:last-child{ margin-bottom:0; }
.notes-plain b{ color:var(--indigo); font-weight:600; }

/* ============================================
   GALLERY CHAPTER HEADS
   ============================================ */
.gal-head{ margin: 0 0 var(--stack-md); max-width:60ch; }
.gal-num{
  display:block; font-family:var(--mono); font-size:11px;
  letter-spacing:.2em; color:var(--brass); margin-bottom: var(--stack-xs);
}
.gal-head h2{
  font-size: clamp(28px, 3.4vw, 44px); line-height:1.08;
  color:var(--indigo); margin:0 0 12px;
  font-variation-settings:"SOFT" 40,"WONK" 1;
}
.gal-head p{
  font-size:15px; line-height:1.7; color:rgba(20,23,31,0.65); margin:0;
}
/* gallery rhythm: chapter head sits close to its grid, grids breathe apart */
section.gal-chapter{ padding-block: var(--stack-xl) var(--stack-md); }
section.gal-chapter:first-of-type{ padding-top: var(--stack-md); }
.gallery-grid{ padding-block: 0 var(--stack-lg); }
.gal-head{ margin-bottom: var(--stack-sm); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:900px){
  .stay-pair{ grid-template-columns:1fr; }
  .house-strip{ grid-template-columns:1fr; }
  .room-film{ grid-template-columns:repeat(2,1fr); }
  .section-head{ grid-template-columns:1fr; gap: var(--stack-sm); margin-bottom: var(--stack-md); }
}

/* ---- responsive fixes: rigid grids ---- */
.notes-facts{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.find-panel{
  background: var(--indigo); color: var(--ivory);
  padding: clamp(32px, 4.4vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 760px){
  .notes-facts{ grid-template-columns: repeat(2, 1fr); }
  .find-panel{ grid-template-columns: 1fr; }
}

/* Collapse double padding between adjacent sections */
section.wrap + .quote-block,
.quote-block + section.wrap,
section.wrap + .values,
.values + section.wrap { margin-top: calc(-1 * var(--section) / 2); }

/* ============================================
   HERO SLIDER (full-width)
   ============================================ */
.hero-slider{
  position:relative; width:100%; overflow:hidden;
  aspect-ratio:21/9; max-height:95vh; margin-top:60px;
  padding-top:25px;
}
.slider-track{ position:relative; width:100%; height:100%; }
.slide{
  position:absolute; inset:0;
  opacity:0; transition:opacity 1.1s ease;
}
.slide.active{ opacity:1; z-index:1; }
.slide img{
  width:100%; height:100%;
  object-fit:cover; display:block;
}
.slider-overlay{
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  background:linear-gradient(transparent, rgba(27,42,78,0.7));
  padding:60px var(--gutter) 32px;
}
.slider-badge{
  font-family:var(--mono); font-size:12px;
  letter-spacing:.22em; text-transform:uppercase;
  color:rgba(245,239,230,0.85);
}
.slider-btn{
  position:absolute; top:50%; z-index:3;
  transform:translateY(-50%);
  background:rgba(245,239,230,0.15); backdrop-filter:blur(6px);
  border:1px solid rgba(245,239,230,0.25);
  color:var(--ivory); width:50px; height:50px;
  font-size:20px; cursor:pointer; border-radius:50%;
  transition:background .3s ease, transform .3s ease;
  display:flex; align-items:center; justify-content:center;
}
.slider-btn:hover{
  background:rgba(245,239,230,0.3);
  transform:translateY(-50%) scale(1.08);
}
.slider-prev{ left:var(--gutter); }
.slider-next{ right:var(--gutter); }

.slider-dots{
  position:absolute; bottom:18px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; gap:10px;
}
.slider-dot{
  width:10px; height:10px; border-radius:50%;
  background:rgba(245,239,230,0.35); border:none; cursor:pointer;
  transition:background .3s ease, transform .3s ease;
}
.slider-dot.active{
  background:var(--ivory); transform:scale(1.25);
}

@media(max-width:768px){
  .hero-slider{ aspect-ratio:16/9; margin-top:56px; }
  .slider-btn{ width:40px; height:40px; font-size:16px; }
}

/* ============================================
   PHOTO SHOWCASE (homepage grid)
   ============================================ */
.photo-showcase{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:clamp(12px, 1.4vw, 20px);
}
.photo-showcase figure{
  margin:0; overflow:hidden;
}
.photo-showcase img{
  width:100%; aspect-ratio:4/3;
  object-fit:cover; display:block;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.photo-showcase figure:hover img{ transform:scale(1.04); }

@media(max-width:900px){
  .photo-showcase{ grid-template-columns:repeat(2, 1fr); }
}

/* ============================================
   UNIFORM GALLERY GRID (replaces old mosaic)
   ============================================ */
.gallery-uniform{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:clamp(14px, 1.6vw, 24px);
  padding-inline:var(--gutter);
}
.gallery-uniform figure{
  margin:0; overflow:hidden;
}
.gallery-uniform img{
  width:100%; aspect-ratio:4/3;
  object-fit:cover; display:block;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery-uniform figure:hover img{ transform:scale(1.04); }
.gallery-uniform figcaption{
  margin-top:clamp(8px,1vw,14px);
  font-family:var(--mono); font-size:11px;
  letter-spacing:.16em; text-transform:uppercase;
  color:rgba(20,23,31,0.52);
}

/* Gallery hub cards */
.gallery-hub{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(20px, 2.4vw, 36px);
}
.gallery-hub-card{
  position:relative; overflow:hidden; display:block;
  text-decoration:none; color:var(--ivory);
}
.gallery-hub-card img{
  width:100%; aspect-ratio:3/2;
  object-fit:cover; display:block;
  transition:transform 1s cubic-bezier(.2,.7,.2,1);
}
.gallery-hub-card:hover img{ transform:scale(1.05); }
.gallery-hub-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(transparent 40%, rgba(27,42,78,0.8));
  display:flex; flex-direction:column;
  justify-content:flex-end; padding:clamp(24px, 3vw, 40px);
}
.gallery-hub-overlay .gal-num{
  color:var(--brass); margin-bottom:8px;
}
.gallery-hub-overlay h3{
  font-family:var(--display); font-size:clamp(26px, 3vw, 40px);
  line-height:1.1; margin:0 0 6px;
  font-variation-settings:"SOFT" 30,"WONK" 1;
}
.gallery-hub-overlay p{
  font-size:14px; line-height:1.6;
  color:rgba(245,239,230,0.75); margin:0;
  max-width:38ch;
}
.gallery-hub-overlay .arrow{
  margin-top:16px; font-family:var(--mono);
  font-size:12px; letter-spacing:.16em;
  color:var(--brass); text-transform:uppercase;
}

@media(max-width:768px){
  .gallery-hub{ grid-template-columns:1fr; }
  .gallery-uniform{ grid-template-columns:repeat(2, 1fr); }
}
