/* Trimmed, portfolio-shared section styles, ported from
   D:\AntigravityVisitRotterdam\static\assets\css\sections.css (2026-08-09).
   Only the rule blocks this smaller site actually uses are included;
   Rotterdam's 11-item persona grid and photo-collage cards were left out
   on purpose, not needed for a single-destination site this size. */

.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.68) 0%,
    rgba(15, 33, 43, 0.58) 40%,
    rgba(15, 33, 43, 0.55) 70%,
    rgba(15, 33, 43, 0.85) 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;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-title {
  font-size: clamp(38px, 7vw, 96px);
  line-height: 0.98;
  margin-top: 12px;
}

.hero-subtitle {
  font-family: var(--font-italic);
  font-size: clamp(18px, 2vw, 26px);
  margin-top: 16px;
  max-width: 640px;
}

.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 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;
}

.content-section ul {
  margin-top: 18px;
  padding-left: 22px;
  max-width: 800px;
  color: var(--ink2);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}

.content-section li + li {
  margin-top: 8px;
}

.content-section ol {
  margin-top: 18px;
  padding-left: 22px;
  max-width: 800px;
  color: var(--ink2);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}

.content-section ol li + li {
  margin-top: 8px;
}

.tier-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 12px;
}

.content-section > .tier-heading:not(:first-child) {
  margin-top: 72px;
}

.content-section > h3:not(:first-child) {
  margin-top: 40px;
}

.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;
}

/* ===== FOOTER ===== */
.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;
  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-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.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: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== INTERIOR PAGE HERO (subpages) ===== */
.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.68) 0%,
    rgba(15, 33, 43, 0.58) 40%,
    rgba(15, 33, 43, 0.55) 70%,
    rgba(15, 33, 43, 0.85) 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: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.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;
}

/* ===== 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-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(--stone); }

.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 color-mix(in srgb, var(--accent-600) 22%, transparent);
}

.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;
}

/* ===== 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);
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.photo-gallery figure {
  margin: 0;
}

.photo-gallery figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--stone);
}

@media (max-width: 780px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

.legal-section h2,
.legal-section h3 { 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; }

/* ===== NL CONTENT: DIRECT-ANSWER BLOCK, FACT TABLE, VERIFIED BADGE, LANG SWITCH ===== */
.direct-answer {
  margin-top: 18px;
  padding: 20px 22px;
  max-width: 800px;
  background: var(--sand);
  border-left: 3px solid var(--accent-600);
  border-radius: var(--radius-md);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--ink);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(22, 49, 63, 0.06);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--stone);
}

.fact-table-wrap {
  margin-top: 20px;
  max-width: 900px;
  overflow-x: auto;
}

table.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.5;
}

table.fact-table caption {
  text-align: left;
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 8px;
}

table.fact-table th,
table.fact-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.fact-table th {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

table.fact-table td { color: var(--ink2); }

.lang-switch {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.source-list {
  margin-top: 16px;
  padding-left: 20px;
  max-width: 800px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--stone);
}

.source-list li + li { margin-top: 4px; }

.in-short {
  margin-top: 20px;
  padding: 18px 22px;
  max-width: 800px;
  background: rgba(22, 49, 63, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.in-short-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.in-short ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.6;
}

.in-short li + li { margin-top: 6px; }

.term-list {
  margin-top: 20px;
  max-width: 800px;
}

.term-list dt {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
}

.term-list dt:first-child { margin-top: 0; }

.term-list dd {
  margin: 4px 0 0;
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.6;
}

.last-updated {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--stone);
}

.disclosure-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-pill);
  vertical-align: middle;
}

.stay-cta-bar-disclosure {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.hero-disclosure {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
}
