/* VIP Pro Travel — Classic luxury palette */

:root {
  --ivory: #FAF7F2;
  --ivory-soft: #F2EEE6;
  --navy: #0D2240;
  --navy-soft: #16335E;
  --gold: #C5A572;
  --gold-soft: #DCC9A2;
  --charcoal: #1A1A1A;
  --charcoal-soft: #4A4A4A;
  --rule: rgba(13, 34, 64, 0.12);
  --rule-on-dark: rgba(250, 247, 242, 0.18);

  --serif: "Playfair Display", "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --serif-accent: "Cormorant Garamond", "Cormorant", Garamond, serif; /* italic flourishes only */
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --section-y: clamp(5rem, 10vw, 9rem);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 36em;
}

.italic-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-tight {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.section-dark {
  background: var(--navy);
  color: var(--ivory);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-dark .lead { color: rgba(250, 247, 242, 0.78); }
.section-dark .eyebrow { color: var(--gold-soft); }

.hairline {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.75rem;
}
.hairline.center { margin-left: auto; margin-right: auto; }

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.section-header .lead { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-header.over-hero {
  background: linear-gradient(to bottom,
    rgba(8, 24, 46, 0.55) 0%,
    rgba(8, 24, 46, 0.35) 70%,
    rgba(8, 24, 46, 0.0) 100%);
  border-bottom-color: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.site-header.over-hero .nav-link,
.site-header.over-hero .site-logo .wordmark,
.site-header.over-hero .site-logo .tagline {
  color: var(--ivory);
}

.site-header.over-hero .nav-toggle span { background: var(--ivory); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--navy);
  transition: color .25s var(--ease);
}

.site-logo .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-logo .tagline {
  display: none;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
@media (min-width: 900px) {
  .site-logo .tagline { display: inline; }
}

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 800px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease);
}
.nav-link:hover { color: var(--navy); }
.site-header.over-hero .nav-link:hover { color: var(--gold-soft); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--navy);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ivory); }
.site-header.over-hero .nav-cta { color: var(--ivory); border-color: var(--gold-soft); }
.site-header.over-hero .nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 26px;
  background: var(--navy);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
@media (min-width: 800px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
}
.mobile-nav .close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: 0; color: var(--ivory);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ---------- Hero (photo) ---------- */

.hero {
  background: var(--navy);
  color: var(--ivory);
  min-height: clamp(640px, 94vh, 920px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
  transform: scale(1.04);
  animation: hero-ken 20s ease-in-out infinite alternate;
}
@keyframes hero-ken {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.08) translateY(-12px); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,24,46,0.62) 0%, rgba(13,34,64,0.50) 38%, rgba(13,34,64,0.55) 65%, rgba(8,24,46,0.92) 100%),
    radial-gradient(ellipse at 80% 10%, rgba(197, 165, 114, 0.10), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-inner {
  position: relative;
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #E4D2A8;
  margin-bottom: 2rem;
  display: inline-block;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ivory);
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.05;
  margin: 0 auto 1.5rem;
  max-width: 18ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  color: rgba(250, 247, 242, 0.78);
  line-height: 1.7;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2rem;
  color: var(--gold);
}
.hero-ornament .line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.hero-ornament .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin: 2rem auto 0;
  max-width: 40rem;
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #E4D2A8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* ---------- "Also planned" chip strip below moments grid ---------- */
.also-planned {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 2;
}
.also-planned .lbl {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.75rem;
}
.also-planned .cities {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.also-planned .cities em {
  font-style: normal;
  color: var(--gold);
  margin: 0 0.3rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  background: var(--ivory-soft);
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
  position: relative;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-style: normal;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
  margin-right: 0.2rem;
  vertical-align: -0.55rem;
}
.testimonial figcaption {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.testimonial .author {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.testimonial .role {
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
}

/* ---------- Pricing reassurance near contact ---------- */
.pricing-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-left: 2px solid var(--gold);
  background: rgba(197, 165, 114, 0.10);
  font-size: 0.93rem;
  color: rgba(250, 247, 242, 0.85);
  font-style: italic;
}

.scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--gold-soft), transparent);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 247, 242, 0.4);
}
.btn-ghost:hover { background: rgba(250, 247, 242, 0.08); border-color: var(--ivory); }

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-dark:hover { background: var(--navy); color: var(--ivory); }

/* ---------- Intro / About ---------- */

.intro {
  text-align: center;
}
.intro .lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
  font-style: italic;
}

/* ---------- Services (image cards) ---------- */

.services-grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(13, 34, 64, 0.25);
}

.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,34,64,0.40) 100%);
}
.service-card .num-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  background: rgba(13, 34, 64, 0.65);
  padding: 0.3rem 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card .copy {
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 1.85rem) clamp(1.75rem, 3vw, 2.25rem);
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.55rem;
}

.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0;
}

.service-card.cta-card {
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border: 0;
}
.service-card.cta-card h3 { color: var(--ivory); }
.service-card.cta-card p  { color: rgba(250, 247, 242, 0.75); }
.service-card.cta-card .btn { margin-top: 1.25rem; }

/* ---------- Stats strip ---------- */

.stats-strip {
  background: var(--ivory-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat .num em {
  font-family: var(--serif-accent);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.stat .lbl {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 0.65rem;
  display: block;
}

/* ---------- Moments grid ---------- */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .moments-grid { grid-template-columns: repeat(4, 1fr); }
}
.moment {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}
.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,34,64,0.1) 40%, rgba(13,34,64,0.78) 100%);
  transition: opacity .35s var(--ease);
}
.moment:hover::after { background: linear-gradient(180deg, rgba(13,34,64,0.2) 30%, rgba(13,34,64,0.88) 100%); }
.moment .label {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}
.moment .label em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  color: var(--gold-soft);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ---------- Editorial accent: hero photo credit ---------- */
.photo-credit {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  z-index: 3;
}

/* ---------- Approach ---------- */

.steps {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.step {
  position: relative;
  padding-top: 2.25rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.step::after {
  content: "";
  position: absolute;
  top: 0.5rem; left: 36px;
  width: 50px; height: 1px;
  background: var(--rule-on-dark);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: rgba(250, 247, 242, 0.74);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 56rem;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.25rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.faq details > div {
  padding-top: 0.75rem;
  color: var(--charcoal-soft);
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */

.contact-wrap {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .contact-wrap { grid-template-columns: 5fr 6fr; }
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info .lead { margin-bottom: 2.25rem; }

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.4rem;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-methods .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
}
.contact-methods .value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ivory);
}
.contact-methods a.value { transition: color .2s var(--ease); }
.contact-methods a.value:hover { color: var(--gold); }

/* Form */

.form {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid var(--rule-on-dark);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}
.form .row { display: grid; gap: 1.25rem; }
@media (min-width: 600px) { .form .row.two { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-on-dark);
  padding: 0.85rem 0.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory);
  outline: none;
  transition: border-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(250, 247, 242, 0.35); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* Honeypot — invisible to humans, present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.form-actions .legal {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.5;
  max-width: 26em;
}
.form-actions .legal a { color: var(--gold-soft); border-bottom: 1px solid currentColor; }

.form-banner {
  background: rgba(197, 165, 114, 0.12);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--ivory);
  font-size: 0.95rem;
}
.form-banner.error {
  background: rgba(220, 90, 90, 0.12);
  border-color: #E08A8A;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #08182E;
  color: rgba(250, 247, 242, 0.6);
  padding: 4rem 0 2.5rem;
  font-size: 0.88rem;
}

/* Centered logo above the footer columns */
.footer-logo {
  text-align: center;
  padding: 1.25rem 0 2.5rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.10);
}
.footer-logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: inline-block;
  opacity: 0.95;
  transition: opacity .2s var(--ease);
}
.footer-logo a:hover img { opacity: 1; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p { max-width: 28em; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
}

/* ---------- Floating WhatsApp ---------- */

.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Reveal on scroll ---------- */

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