/* Ported from the Voute Digital portfolio pattern (visitrotterdam.com static/assets/css/sections.css),
   trimmed to the sections visitdoha.com actually uses, with the accent color swapped from
   Rotterdam red (185,59,39) to Doha/Qatar maroon (138,21,56) everywhere it was hardcoded as rgba()
   instead of var(--accent-600). Street-directory, kids-page and moments-gallery sections omitted:
   not part of the visitdoha.com page set. */

@property --glow-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0f212b;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 33, 43, 0.55) 0%,
    rgba(15, 33, 43, 0.22) 32%,
    rgba(15, 33, 43, 0.35) 60%,
    rgba(15, 33, 43, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 6vw, 80px) clamp(64px, 10vh, 110px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-eyebrow {
  font-size: clamp(14px, 3.5vw, 15px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(52px, 13vw, 96px);
  line-height: 0.98;
  margin-top: 12px;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-italic);
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 8px;
  opacity: 0.85;
}

.hero-subtitle {
  font-family: var(--font-italic);
  font-size: clamp(22px, 5vw, 26px);
  margin-top: 16px;
  max-width: 640px;
}

@media (max-width: 480px) {
  .hero-subtitle {
    max-width: 100%;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

section.intro,
section.grid-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

.section-title {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin-top: 10px;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.dv-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dv-card:hover,
.dv-card:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dv-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dv-card-body {
  padding: 20px;
}

.dv-card-body h3 {
  font-size: 19px;
}

.dv-card-body p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* ===== INTERIOR PAGE HERO (shorter banner, not full viewport) ===== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0f212b;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 33, 43, 0.55) 0%,
    rgba(15, 33, 43, 0.15) 38%,
    rgba(15, 33, 43, 0.75) 100%
  );
}

.page-hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 6vw, 80px) clamp(18px, 6vw, 80px) clamp(40px, 7vh, 76px);
  color: #fff;
}

.page-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}

.page-hero-heading {
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.02;
  margin-top: 10px;
}

.page-hero-intro {
  font-family: var(--font-italic);
  font-size: clamp(16px, 1.8vw, 21px);
  margin-top: 14px;
  max-width: 640px;
}

/* ===== INTERIOR CONTENT SECTIONS ===== */
.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 90px) clamp(18px, 6vw, 80px);
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--ink2);
  max-width: 800px;
  margin-top: 18px;
}

.content-lede + .content-lede {
  margin-top: 14px;
}

.data-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: clamp(15px, 1.5vw, 17px);
}

.data-table th, .data-table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  border-bottom: 2px solid var(--line);
}

.data-table td {
  color: var(--ink2);
}

.numbered-list, .content-section .source-list {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink2);
  max-width: 800px;
  margin: 18px 0;
  padding-left: 22px;
}

.numbered-list li, .source-list li {
  margin-bottom: 10px;
}

.source-list {
  list-style: none;
  padding-left: 0;
}

.source-list li {
  padding-left: 18px;
  position: relative;
}

.source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-600);
}

.source-list a {
  color: var(--accent-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== POI / LISTING GRID (landmarks, hotels, museums) ===== */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin-top: 36px;
}

.fbq-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
  margin-top: 24px;
}

.fbq-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(38, 64, 58, 0.04);
  border: 1px solid var(--line);
}

.fbq-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(38, 64, 58, 0.04);
}

.fbq-gallery figcaption {
  padding: 8px 10px;
  font-size: 13px;
  color: var(--stone);
}

.poi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.32s ease;
}

.poi-card:hover,
.poi-card:focus-within,
.poi-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Running border light on hover, see visitrotterdam.com tools/dev-previews/glow-cards.css
   for the full rationale. Retuned to Doha accent-600 (138,21,56). */
.poi-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--glow-angle),
    transparent 0deg,
    rgba(141, 28, 61, 0.85) 18deg,
    transparent 50deg,
    transparent 310deg,
    rgba(141, 28, 61, 0.85) 342deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: glow-rotate 5s linear infinite;
  animation-play-state: paused;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.poi-card:hover::after,
.poi-card:focus-within::after,
.poi-card:focus-visible::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes glow-rotate {
  to {
    --glow-angle: 360deg;
  }
}

/* Beeld vult de kaart volledig, geen letterbox meer.
   Was: object-fit: contain op een --sand achtergrond. Dat leverde beige balken op,
   en wel om twee redenen tegelijk. Ten eerste hebben de <img>-elementen een
   height-attribuut in de HTML. Dat attribuut wordt een presentational hint met een
   definitieve hoogte, waardoor de browser aspect-ratio negeert: de box werd
   bijvoorbeeld 265 x 599 px in plaats van 4/3. Ten tweede schaalde contain de foto
   binnen die veel te hoge box, zodat de --sand achtergrond boven en onder zichtbaar
   bleef. height: auto zet de hint uit zodat aspect-ratio weer leidend is, en cover
   vult de box volledig. max-width: none is nodig omdat base.css alle img's op
   max-width: 100% zet, wat de bleed van calc(100% + 52px) anders terugsnijdt.
   Bronafbeeldingen met afwijkende verhoudingen (liggend 900x600, staand 900x1200)
   worden nu identiek hoog en lijnen per rij exact uit. */
.poi-card-photo {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  margin: -24px -26px 18px;
  border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
  background: none;
}

.poi-card-photo--feature {
  display: block;
  flex: 1 1 320px;
  min-width: 280px;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  background: none;
}

/* De feature-kaart is een rij van beeld plus tekstkolom. De tekstkolom is korter
   dan de foto, dus zonder centrering plakt de tekst tegen de bovenrand en oogt de
   kaart scheef. :has() wordt ondersteund vanaf Chrome 105, Safari 15.4 en
   Firefox 121 (december 2023); oudere browsers negeren de regel en houden de
   bestaande bovenuitlijning, wat een acceptabele fallback is. */
.poi-card:has(> .poi-card-photo--feature) {
  align-items: center;
}

.poi-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.poi-select-btn {
  font: inherit;
  font-size: 18px;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.poi-select-btn:hover,
.poi-select-btn:focus-visible {
  border-color: currentColor;
}

.poi-card[data-insider].is-selected {
  border-color: var(--accent-600, #8a1538);
  box-shadow: var(--shadow-md);
}

.poi-card[data-insider].is-selected .poi-select-btn {
  color: var(--accent-600, #8a1538);
}

.poi-card[data-insider].is-selected::before {
  content: "Now showing \2193";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--accent-600, #8a1538);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.insider-picks[hidden] {
  display: none;
}

.insider-picks:not([hidden]) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insider-picks.is-visible {
  opacity: 1;
}

.poi-card[hidden] {
  display: none;
}

.poi-card h3 {
  font-size: 18px;
}

.poi-card h3 a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.poi-card h3 a:hover,
.poi-card h3 a:focus-visible {
  border-color: currentColor;
}

.poi-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: var(--stone);
  margin-top: 8px;
}

.poi-address::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background-color: var(--stone);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-6.744-7-11.5a7 7 0 1 1 14 0C19 14.244 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-6.744-7-11.5a7 7 0 1 1 14 0C19 14.244 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.4'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.poi-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink2);
  margin-top: 10px;
}

.poi-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-600);
  text-decoration: none;
}

.poi-link::after {
  content: "\2192";
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.poi-link:hover,
.poi-link:focus-visible {
  color: var(--accent-700);
}

.poi-link:hover::after,
.poi-link:focus-visible::after {
  transform: translateX(3px);
}

.poi-link:focus-visible {
  outline: 2px solid var(--accent-600);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== PERSONA PICKER (homepage "What Kind of Traveller Are You?") =====
   Reuses .poi-card as the whole clickable surface; only the icon circle is new. */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

a.persona-card {
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}

.persona-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(141, 28, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.persona-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-600);
}

.persona-card h3 {
  font-size: 17px;
}

.persona-card .poi-desc {
  font-size: 13.5px;
  margin-top: 6px;
}

.tier-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 12px;
}

.tier-heading + .poi-grid {
  margin-top: 28px;
}

.legal-section {
  margin-top: 28px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.content-section > .tier-heading:not(:first-child) {
  margin-top: 56px;
}

/* ===== REQUEST FORM (packages / advertising requests, contact.html) ===== */
.cf-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.cf-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 10px;
}

.cf-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 400;
  margin: 0 0 10px;
}

.cf-sub {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 0 34px;
}

.cf-plan-box {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: var(--sand);
  border-radius: var(--radius-2xl);
  padding: 30px 30px 28px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.cf-plan-box.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cf-plan-box { transition: none; }
}

.cf-plan-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 6px;
}

.cf-plan-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cf-plan-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.cf-plan-price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap;
}

.cf-plan-price-fx {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
}

.cf-plan-subhead {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 10px;
}

.cf-plan-section + .cf-plan-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.cf-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}

.cf-plan-list--yes li { color: #1b4d3e; }
.cf-plan-list--no li { color: #7a221e; }

.cf-buy-micro {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
  margin: 0 0 12px;
}

.cf-buy-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cf-renew-note {
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.cf-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.cf-label {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

.cf-input,
.cf-textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cf-input::placeholder,
.cf-textarea::placeholder { color: var(--mist); }

.cf-input:hover,
.cf-textarea:hover { border-color: rgba(22, 49, 63, 0.32); }

.cf-input:focus,
.cf-textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(141, 28, 61, 0.22);
}

.cf-textarea { resize: vertical; min-height: 120px; }

.cf-upload-group { display: none; }

.cf-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  border: 1px dashed rgba(22, 49, 63, 0.38);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  cursor: pointer;
  text-align: center;
  color: var(--ink);
  font-family: inherit;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.cf-file-label:hover { border-color: var(--ink); background: var(--paper); }

.cf-file-hint {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  margin: 0 0 4px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--accent-600);
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.12s ease;
}

.cf-submit:hover { background: var(--accent-700); }
.cf-submit:active { transform: translateY(1px) scale(0.98); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-error {
  font-size: 13px;
  color: #b91c1c;
  margin-top: 12px;
  text-align: center;
  display: none;
}

.cf-error.show { display: block; }

.cf-success {
  font-size: 14.5px;
  color: #1b4d3e;
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 16px;
  text-align: center;
}

/* ===== LEGAL PROSE (privacy/cookies/disclaimer) ===== */
.legal-prose {
  max-width: 760px;
}

.legal-section + .legal-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2);
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-section ul li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: var(--ink2);
  font-size: 15px;
}

.legal-section ul li strong {
  color: var(--ink);
}

.legal-section a {
  color: var(--accent-600);
  text-decoration: underline;
}

.legal-meta {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 30px;
}

/* ===== CONTACT ===== */
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  max-width: 560px;
}

.contact-card h2 {
  font-size: clamp(22px, 2.6vw, 28px);
}

.contact-line {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2);
}

.contact-line a {
  color: var(--accent-600);
  text-decoration: underline;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--accent-700);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 9vh, 96px) clamp(18px, 6vw, 80px) 40px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
}

.footer-top {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-top {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.18em;
}

.footer-brand-bot {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mist);
}

.footer-tagline {
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 16px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links li.address {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1320px;
  margin: clamp(36px, 6vh, 56px) auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}

.footer-meta {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-meta button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0;
  font-family: inherit;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-meta {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* ===== SHARE YOUR DOHA MOMENT (psa-*) + full gallery (moments-*) =====
   Ported from visitrotterdam.com; #b93b27 (Rotterdam red) swapped for the
   Doha accent (#8a1538) everywhere it was hardcoded instead of var(). */
.psa-cta{box-sizing:border-box;max-width:1180px;margin:32px auto;padding:clamp(40px,6vh,64px) clamp(18px,6vw,64px);border-radius:var(--radius-xl,16px);background:linear-gradient(135deg, var(--ink) 0%, var(--teal) 130%);color:#fff;}
.psa-cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,4vw,56px);align-items:center;}
.psa-cta-photo{width:100%;height:100%;min-height:260px;object-fit:cover;border-radius:var(--radius-lg,12px);}
.psa-cta-photo-placeholder{width:100%;min-height:260px;border-radius:var(--radius-lg,12px);border:1px dashed rgba(255,255,255,0.3);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.55);font-size:13px;text-align:center;padding:20px;}
.psa-cta-photo-caption{margin:6px 0 0;font-size:11px;color:rgba(255,255,255,0.6);text-align:right;}
.psa-cta h2{color:#fff;margin:0 0 10px;}
.psa-cta p{color:rgba(255,255,255,0.85);margin:0 0 20px;}
.psa-cta .btn-primary{background:var(--accent-600);color:#fff;border-color:#fff;}
.psa-cta .btn-primary:hover{opacity:.9;}
.psa-panel .btn-primary{background:var(--accent-600);color:#fff;border-color:var(--accent-600);}
.psa-panel .btn-primary:hover{background:var(--accent-700);opacity:1;}
.psa-panel input[type="file"].psa-input::file-selector-button,
.psa-panel input[type="file"].psa-input::-webkit-file-upload-button{background:var(--accent-600);color:#fff;border:1px solid var(--accent-600);border-radius:var(--radius-xs);padding:8px 14px;margin-right:10px;font-family:inherit;font-size:13px;cursor:pointer;}
.psa-panel input[type="file"].psa-input::file-selector-button:hover,
.psa-panel input[type="file"].psa-input::-webkit-file-upload-button:hover{background:var(--accent-700);}
.psa-gallery-link{display:inline-block;margin:12px 0 0 14px;color:#fff;font-size:13.5px;text-decoration:underline;text-underline-offset:3px;}
@media(max-width:760px){.psa-cta-grid{grid-template-columns:1fr;}.psa-cta-photo,.psa-cta-photo-placeholder{min-height:200px;order:-1;}}
.psa-gallery{margin:24px 0 0;padding:24px;border:1px dashed rgba(255,255,255,0.3);border-radius:var(--radius-lg,12px);text-align:center;}
.psa-gallery-empty{color:rgba(255,255,255,0.75);font-size:14.5px;margin:0;}
.psa-gallery-filled{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:12px;border:none;padding:0;text-align:left;}
.psa-gallery-card{position:relative;margin:0;background:rgba(255,255,255,0.08);border-radius:var(--radius-lg,12px);overflow:hidden;}
.psa-gallery-card img{width:100%;height:auto;display:block;}
.psa-gallery-card figcaption{padding:8px 10px;font-size:12px;color:rgba(255,255,255,0.85);line-height:1.4;}
.psa-panel{margin:20px auto 0;padding:24px;border:1px solid var(--line);border-radius:var(--radius-lg,12px);background:var(--paper);max-width:480px;text-align:left;color:var(--ink);}
.psa-label{display:block;font-size:13px;font-weight:600;color:var(--ink);margin:14px 0 6px;}
.psa-label:first-child{margin-top:0;}
.psa-input{width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid var(--line);border-radius:6px;font-size:14px;font-family:inherit;color:var(--ink);}
.psa-gate-row{display:flex;gap:10px;}
.psa-gate-row .psa-input{flex:1;}
.psa-panel .psa-gate-hint{color:#a3302a;font-size:13px;margin:10px 0 0;}
.psa-panel .psa-code-hint{color:var(--ink2);font-size:12.5px;margin:2px 0 12px;}
.psa-check{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:var(--ink2);line-height:1.5;margin:14px 0;}
.psa-check input{margin-top:3px;}
.psa-rules{background:rgba(0,0,0,0.04);border-radius:6px;padding:12px 14px;margin:0 0 14px;}
.psa-panel .psa-rules-title{font-size:12.5px;font-weight:600;margin:0 0 6px;color:var(--ink);}
.psa-rules-list{margin:0;padding-left:18px;font-size:12.5px;color:var(--ink2);line-height:1.6;}
.psa-honeypot{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;}
.psa-panel .psa-note{font-size:12px;color:var(--stone);margin:12px 0 0;}
.psa-status{font-size:13.5px;margin:12px 0 0;padding:10px 12px;border-radius:6px;}
.psa-status.psa-ok{background:#e7f5ec;color:#1a5c34;}
.psa-status.psa-error{background:#fbeaea;color:#a3302a;}

.moments-hero{box-sizing:border-box;padding:calc(var(--nav-height) + clamp(48px,8vh,80px)) clamp(18px,6vw,64px) clamp(48px,8vh,80px);text-align:center;background:linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 55%, var(--ink) 100%);color:#fff;}
.moments-hero h1{color:#fff;margin:0 0 12px;}
.moments-hero p{color:rgba(255,255,255,0.9);max-width:640px;margin:0 auto;}
.moments-grid{max-width:1180px;margin:40px auto;padding:0 clamp(18px,6vw,64px);columns:3 260px;column-gap:28px;}
.moments-grid--sparse{display:flex;flex-wrap:wrap;align-items:flex-start;gap:28px;columns:unset;}
.moments-grid--sparse .moments-card,.moments-grid--sparse .moments-invite-card{flex:1 1 320px;max-width:480px;}
.moments-card{position:relative;margin:0 0 28px;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-xl,8px);box-shadow:var(--shadow-md);overflow:hidden;break-inside:avoid;transform:rotate(var(--tilt, -1.2deg));transition:transform .2s ease, box-shadow .2s ease;}
.moments-badge{position:absolute;top:10px;left:10px;z-index:2;background:var(--accent-600);color:#fff;font-size:10.5px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;padding:5px 10px;border-radius:var(--radius-pill);box-shadow:0 2px 8px rgba(0,0,0,.28);}
.moments-card:nth-child(3n+1){--tilt:-1.4deg;}
.moments-card:nth-child(3n+2){--tilt:1deg;}
.moments-card:nth-child(3n){--tilt:-0.6deg;}
.moments-card:hover{transform:rotate(0deg) translateY(-4px);box-shadow:var(--shadow-lg);}
.moments-card img{width:100%;height:auto;display:block;}
.moments-card-meta{padding:14px 16px 18px;}
.moments-card-name{display:block;font-weight:600;color:var(--accent-600);font-size:13.5px;margin:0 0 4px;}
.moments-card-caption{margin:0;color:var(--ink2);font-size:14px;line-height:1.5;}
.moments-card-caption a{color:var(--accent-600);text-decoration:underline;text-underline-offset:2px;}
.moments-card-caption a:hover{color:var(--accent-700);}
.moments-invite-card{position:relative;margin:0 0 28px;break-inside:avoid;background:linear-gradient(150deg, var(--accent-600) 0%, var(--accent-700) 100%);color:#fff;border-radius:var(--radius-xl,8px);box-shadow:var(--shadow-md);padding:28px 24px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;min-height:220px;transform:rotate(-0.8deg);transition:transform .2s ease, box-shadow .2s ease;}
.moments-invite-card:hover{transform:rotate(0deg) translateY(-4px);box-shadow:var(--shadow-lg);}
.moments-invite-card h3{color:#fff;font-size:19px;margin:0;}
.moments-invite-card p{color:rgba(255,255,255,0.9);font-size:14px;line-height:1.5;margin:0;}
.moments-invite-card .btn-primary{background:#fff;color:var(--accent-600);border-color:#fff;}
.moments-invite-card .btn-primary:hover{opacity:.9;}
@media(max-width:520px){.moments-grid{columns:1;column-gap:16px;}}

.prayer-widget{max-width:640px;margin:0 auto;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-2xl,10px);box-shadow:var(--shadow-md);padding:clamp(22px,4vw,36px);text-align:center;}
.prayer-date{font-family:var(--font-sans);font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);margin:0 0 20px;}
.prayer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(88px,1fr));gap:10px;margin:0 0 18px;}
.prayer-row{display:flex;flex-direction:column;align-items:center;gap:4px;padding:14px 6px;border-radius:var(--radius-lg);background:rgba(38,64,58,0.04);}
.prayer-row--muted{opacity:.7;}
.prayer-name{font-family:var(--font-sans);font-size:12px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--ink2);}
.prayer-time{font-family:var(--font-serif);font-size:22px;color:var(--ink);}
.prayer-source-note{font-size:12px;color:var(--stone);line-height:1.6;margin:0;}
.prayer-fallback{font-size:14px;color:var(--ink2);line-height:1.6;text-align:center;padding:20px 0;}
.prayer-fallback a{color:var(--accent-600);text-decoration:underline;text-underline-offset:2px;}
@media(max-width:640px){.moments-grid--sparse{flex-direction:column;}.moments-grid--sparse .moments-card,.moments-grid--sparse .moments-invite-card{max-width:100%;}}
