/* Kohinoor Travels — matte white + red shine (no gold) */
:root {
  --bg: #f2f1ef;
  --bg-2: #faf9f7;
  --bg-3: #e8e6e3;
  --ink: #141210;
  --muted: #5c574f;
  --line: rgba(20, 18, 16, 0.1);
  --red: #c41a1a;
  --red-deep: #7a0e0e;
  --red-hot: #ff3a3a;
  --red-soft: #f0d4d4;
  --wrap: 1100px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--red-deep); }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(242, 241, 239, 0.94);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.logo:hover { color: var(--red); }
.logo-globe {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(196, 26, 26, 0.16));
  animation: globeFloat 5.5s ease-in-out infinite;
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(8deg); }
}

/* Lively photo mosaic */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 7.5rem;
  gap: 0.55rem;
}
@media (max-width: 900px) {
  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 6.5rem;
  }
}
@media (max-width: 520px) {
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}
.photo-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ddd;
}
.photo-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.photo-mosaic figure:nth-child(4) { grid-column: span 2; }
.photo-mosaic figure:nth-child(7) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .photo-mosaic figure:nth-child(1),
  .photo-mosaic figure:nth-child(7) { grid-column: span 1; grid-row: span 1; }
  .photo-mosaic figure:nth-child(4) { grid-column: span 1; }
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.photo-mosaic figure:hover img { transform: scale(1.08); }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem auto 0;
  width: min(100% - 2.5rem, var(--wrap));
}
.hero-strip.strip-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) {
  .hero-strip,
  .hero-strip.strip-2 { grid-template-columns: 1fr; }
}
.hero .hero-figure {
  margin-top: 2rem;
}
.hero-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196, 26, 26, 0.18);
  box-shadow: 0 14px 36px rgba(20, 18, 16, 0.08);
  min-height: 16rem;
  position: relative;
  background: #111;
}
.hero-strip img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 20rem;
  object-fit: cover;
}
.hero-strip figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.nav { display: none; gap: 1.1rem; align-items: center; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav .btn-primary,
.nav a.btn-primary {
  background: var(--red);
  color: #fff !important;
  border: 1px solid var(--red-deep);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(196, 26, 26, 0.35);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav .btn-primary:hover,
.nav a.btn-primary:hover {
  background: var(--red-deep);
  color: #fff !important;
  border-color: #5a0a0a;
  filter: none;
}
.nav-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}
.site-header.is-open .nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  gap: 0.85rem;
}

.notice {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(196, 26, 26, 0.28);
  background: rgba(122, 14, 14, 0.08);
  color: #6b3a3a;
  font-size: 0.8rem;
}
.notice strong { color: var(--red-deep); }
.notice a { color: var(--red); text-decoration: none; font-weight: 600; }

/* Red shiny headline — GWU style, no gold */
.shine {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--red);
  background-image: linear-gradient(
    115deg,
    var(--red-deep) 0%,
    var(--red) 18%,
    var(--red-hot) 34%,
    #ff8a8a 48%,
    #fff5f5 55%,
    var(--red-hot) 68%,
    var(--red) 84%,
    var(--red-deep) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(196, 26, 26, 0.22));
  animation: redShine 9s ease-in-out infinite;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .shine {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
    background: none;
    filter: none;
    animation: none;
  }
}
@keyframes redShine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.lead strong { color: var(--ink); font-weight: 600; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red) 45%, var(--red-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(196, 26, 26, 0.28);
}
.btn-primary:hover { color: #fff; filter: brightness(1.05); }
.btn-secondary {
  border-color: rgba(196, 26, 26, 0.35);
  color: var(--red-deep);
  background: #fff;
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff8f8;
}

.hero { padding: 3.25rem 0 2.25rem; }
.hero h1.shine {
  font-size: clamp(2.6rem, 7.5vw, 4.6rem);
  max-width: 15ch;
}
.hero-figure {
  margin: 2rem auto 0;
  width: min(100% - 2.5rem, var(--wrap));
  border: 1px solid rgba(196, 26, 26, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 18, 16, 0.1);
  background: #fff;
}
.hero-figure img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.meta-row strong { color: var(--ink); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
}
.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.marquee {
  border-block: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.marquee-track span::after {
  content: "◆";
  margin-left: 2.5rem;
  color: rgba(196, 26, 26, 0.35);
  font-size: 0.55rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section { padding: 3.5rem 0; }
.section-head {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}
.section-head p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: rgba(196, 26, 26, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 18, 16, 0.08);
}
.card-media {
  position: relative;
  height: 11.5rem;
  overflow: hidden;
  background: #e8e4de;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-code {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.card-body .btn { margin-top: auto; align-self: flex-start; }
.card .price,
.price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.35rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.journey-grid > .journey {
  grid-column: auto;
  min-height: 24rem;
}
@media (max-width: 720px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .journey-grid > .journey {
    min-height: 22rem;
  }
}
.journey {
  position: relative;
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1714;
}
.journey img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.journey:hover img { transform: scale(1.06); }
.journey-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(12, 11, 10, 0.92) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(196, 26, 26, 0.28), transparent 50%);
}
.journey-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 1;
  color: #f6f1e8;
}
.journey-body .eyebrow { color: #ff8a8a; }
.journey-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
}
.journey-body p {
  margin: 0 0 0.85rem;
  color: #cfc6ba;
  font-size: 0.92rem;
}
.journey-body .price { color: #ffb4b4; }
.journey-body .btn-primary { box-shadow: none; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .dest-grid { grid-template-columns: 1fr; }
}
.dest {
  position: relative;
  min-height: 10.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.06);
}
.dest img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dest:hover img { transform: scale(1.08); }
.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(12, 11, 10, 0.88) 100%);
}
.dest > * { position: relative; z-index: 1; }
.dest h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}
.dest p {
  margin: 0.2rem 0 0;
  color: #cfc6ba;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.15rem;
  align-items: stretch;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}
.split-visual {
  border: 1px solid rgba(196, 26, 26, 0.25);
  border-radius: var(--radius);
  min-height: 22rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.split-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.04);
}
.split-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
}
.split-copy p { color: var(--muted); margin: 0 0 0.85rem; }
.checklist {
  list-style: none;
  margin: 1rem 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.checklist li {
  color: var(--ink);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
}
.checklist li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.55rem;
  top: 0.35rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 800px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.04);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; }
}
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.04);
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
  color: var(--ink);
}
.quote footer {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.faq { display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1.15rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--red);
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  border: 1px solid rgba(196, 26, 26, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(196, 26, 26, 0.1), transparent 45%),
    #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 12px 36px rgba(20, 18, 16, 0.05);
}
.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
}
.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 36rem;
}

.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  max-width: 14ch;
}
.page-hero .lead { margin-top: 0.85rem; }

.tour-list { display: grid; gap: 1rem; }
.tour-row {
  display: grid;
  grid-template-columns: 16rem 1fr auto;
  gap: 1.15rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.04);
}
@media (max-width: 800px) {
  .tour-row { grid-template-columns: 1fr; }
}
.tour-row img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
}
.tour-row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}
.tour-row > div:nth-child(2) { padding: 1rem 0; }
@media (max-width: 800px) {
  .tour-row > div:nth-child(2) { padding: 0 1rem; }
}
.tour-row p { margin: 0 0 0.6rem; color: var(--muted); font-size: 0.95rem; }
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-price { padding-right: 1.25rem; text-align: right; }
@media (max-width: 800px) {
  .tour-price { padding: 0 1rem 1.15rem; text-align: left; }
}

.form-wrap { max-width: 42rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 26, 26, 0.12);
}
.form-note { margin-top: 1rem; color: var(--muted); font-size: 0.92rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 26, 26, 0.25);
  background: rgba(196, 26, 26, 0.06);
}
.form-success.is-visible { display: block; }

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}
.site-footer a:hover { color: var(--red); }
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }

.price-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 46rem;
}
.price-note strong { color: var(--ink); }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 34rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(196, 26, 26, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(20, 18, 16, 0.14);
  padding: 1rem 1.15rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.cookie-banner .actions { margin-top: 0; }
