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

:root {
  --ink: #0e0e0d;
  --bone: #f5f1ea;
  --warm: #d4c9b0;
  --gold: #b8975a;
  --muted: #8a8070;
  --form-bg: #181714;
}

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.container { max-width: 1080px; margin: 0 auto; }

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(14,14,13,0.95), transparent);
}

.logo {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.nav a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,90,0.0);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.nav a:hover { color: var(--bone); border-color: rgba(184,151,90,0.35); }

.header-cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,90,0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.header-cta:hover { color: var(--bone); border-color: var(--bone); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  position: relative;

  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* === HERO IMAGE INTEGRATION (cinematic, readable) === */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  /* Overall dark veil + subtle warm tone */
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.62) 28%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.78) 100%
    );
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  /* Soft vignette so edges fall back */
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.70) 100%
    );
  pointer-events:none;
}

/* Keep hero content above overlays */
.hero > *{
  position: relative;
  z-index: 1;
}

/* Slight readability boost (without changing your style) */
.hero h1, .hero .hero-eyebrow, .hero .hero-sub, .hero .hero-meta{
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

.hero-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 14ch;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 em { font-style: italic; color: var(--warm); }
.hero-sub {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 44ch;
  animation: fadeUp 1s 0.35s ease both;
}
.hero-meta {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(138,128,112,0.75);
  max-width: 60ch;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-meta strong { color: rgba(245,241,234,0.85); font-weight: 400; }

.btn-primary {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  animation: fadeUp 1s 0.55s ease both;
}
.btn-primary:hover { background: var(--warm); transform: translateY(-1px); }

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
  margin: 2rem 0;
  opacity: 0.3;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--warm); }
.divider-mark {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold);
}

/* Sections */
.section {
  padding: 6rem 3rem;
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section h2 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.0rem);
  line-height: 1.2;
  color: var(--bone);
  max-width: 26ch;
  margin-bottom: 1.75rem;
}
.section h2 em { font-style: italic; color: var(--warm); }
.section p.lead {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.85;
}

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid rgba(184,151,90,0.15);
  margin-top: 2.25rem;
}
.offer-item {
  padding: 2.4rem;
  border-right: 1px solid rgba(184,151,90,0.15);
  border-bottom: 1px solid rgba(184,151,90,0.15);
  transition: background 0.3s;
}
.offer-item:hover { background: rgba(184,151,90,0.04); }
.offer-num {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-size: 2.3rem;
  font-weight: 300;
  color: rgba(184,151,90,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.offer-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.offer-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* How */
.alt-bg { background: rgba(255,255,255,0.015); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-top: 2.25rem;
}
.step-num {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,151,90,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.8; }

/* Deposit block */
.deposit-block {
  margin: 0 3rem;
  padding: 2.75rem;
  border: 1px solid rgba(184,151,90,0.25);
  background: rgba(184,151,90,0.04);
  position: relative;
  z-index: 1;
}
.deposit-block h3 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.deposit-block p { font-size: 0.88rem; color: var(--muted); max-width: 70ch; line-height: 1.85; }

/* Form */
.form-section { padding: 6rem 3rem; position: relative; z-index: 1; }
.form-wrap { max-width: 720px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  background: var(--form-bg);
  border: 1px solid rgba(184,151,90,0.2);
  color: var(--bone);
  padding: 0.85rem 1rem;
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8975a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--form-bg); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: rgba(138,128,112,0.5); }
textarea { resize: vertical; min-height: 90px; }

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(138,128,112,0.85);
  line-height: 1.75;
}
.form-note strong { color: rgba(245,241,234,0.85); font-weight: 400; }

.btn-submit {
  margin-top: 1.35rem;
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-submit:hover { background: var(--warm); transform: translateY(-1px); }

.confirmation {
  display: none;
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(184,151,90,0.3);
  background: rgba(184,151,90,0.05);
}
.confirmation p { font-size: 0.92rem; color: var(--warm); line-height: 1.9; }
.confirmation strong { color: var(--bone); font-weight: 400; }

/* FAQ */
.faq-list { margin-top: 2.25rem; max-width: 760px; }
.faq-item { border-top: 1px solid rgba(184,151,90,0.15); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(184,151,90,0.15); }
.faq-q {
  font-size: 0.92rem;
  color: var(--bone);
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 260px; padding-top: 1rem; }

/* Content pages */
.page-hero {
  padding: 8rem 3rem 2.25rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--bone);
  max-width: 22ch;
}
.page-hero p {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.9;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  border: 1px solid rgba(184,151,90,0.15);
  background: rgba(184,151,90,0.03);
  padding: 1.75rem;
}
.card h3 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.85; }
.card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,90,0.35);
  padding-bottom: 2px;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.card a:hover { color: var(--bone); border-color: rgba(245,241,234,0.35); }

/* Footer */
footer {
  border-top: 1px solid rgba(184,151,90,0.1);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
footer p {
  font-size: 0.7rem;
  color: rgba(138,128,112,0.4);
  letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 820px) {
  header { padding: 1.15rem 1.25rem; }
  .hero, .section, .form-section, .page-hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .divider { padding: 0 1.25rem; }
  .deposit-block { margin: 0 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav { display: none; } /* keep header clean on mobile */
}

/* HERO BUTTON BRIGHTNESS FIX */
.hero .btn-primary {
  background: linear-gradient(90deg, #d4b16a 0%, #e3c783 100%);
  color: #0e0e0d;
}

.hero .btn-primary:hover {
  background: linear-gradient(90deg, #e3c783 0%, #f0d898 100%);
}


/* ===== FORCE ALL PRIMARY BUTTONS TO MATCH ===== */
.btn,
.btn-primary,
.hero .btn-primary,
.btn-full {
  background: linear-gradient(90deg, #d4b16a 0%, #e6c889 50%, #f2dca3 100%) !important;
  color: #0e0e0d !important;
  border: none !important;
}

.btn:hover,
.btn-primary:hover,
.hero .btn-primary:hover,
.btn-full:hover {
  background: linear-gradient(90deg, #e6c889 0%, #f2dca3 50%, #fff0c2 100%) !important;
}


/* LOGO IMAGE SUPPORT */
.logo.logo-img {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: block;
}
.logo-text {
  display: inline-block;
  line-height: 1;
}


/* BTN PRIMARY UNIFIED */
.btn-primary,
.btn-full {
  background: linear-gradient(90deg, #d4b16a 0%, #e6c889 50%, #f2dca3 100%) !important;
  color: #0e0e0d !important;
  border: none !important;
}
.btn-primary:hover,
.btn-full:hover {
  background: linear-gradient(90deg, #e6c889 0%, #f2dca3 50%, #fff0c2 100%) !important;
}


/* BODY TYPE SIZE TUNE */
html { font-size: 18px; } /* was effectively ~16px; +2pt feel */
body { line-height: 1.65; }


/* HERO BUTTON OVERRIDE (MATCH GOLD) */
.hero .btn-primary,
.hero a.btn-primary,
.hero .btn-full,
.hero a.btn-full {
  background: linear-gradient(90deg, #d4b16a 0%, #e6c889 50%, #f2dca3 100%) !important;
  color: #0e0e0d !important;
  border: none !important;
  opacity: 1 !important;
  filter: none !important;
}


/* HERO OVERLAY LAYER FIX (KEEP BUTTON BRIGHT) */
.hero { position: relative; }
.hero > * { position: relative; z-index: 1; }
.hero .btn-primary,
.hero a.btn-primary { position: relative; z-index: 2; opacity: 1 !important; filter: none !important; }


/* HERO BACKGROUND IMAGE */
.hero {
  background-image: url("../img/hero-airport.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* HERO OVERLAY TUNE */
/* FCT HERO IMAGE */
.hero{
  position: relative;
  overflow: hidden;
}
.hero > *{
  position: relative;
  z-index: 1;
}
/* END FCT HERO IMAGE */


/* ===== Shared Shell Footer ===== */
.site-footer{border-top:1px solid rgba(201,165,87,.25);padding:28px 0;margin-top:60px}
.site-footer .footer-inner{display:flex;gap:22px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.site-footer .footer-logo{max-width:220px;height:auto;opacity:.95}
.site-footer .footer-contact{min-width:260px}
.site-footer .footer-line{margin:0 0 6px 0}
.site-footer .footer-sub{margin:0 0 6px 0;opacity:.85}
@media (max-width:720px){.site-footer .footer-inner{flex-direction:column;align-items:flex-start}.site-footer .footer-logo{max-width:200px}}

/* ===== ABOUT: CINEMATIC DUAL IMAGE BLEND ===== */

.about-blend{
  padding: 0 3rem 3rem;
}

.about-blend-frame{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  border: 1px solid rgba(201,165,87,.25);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  background: #0d0d0d;
}

.about-blend-layer{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Primary image – dominant */
.about-blend-a{
  background-image: url("../img/about-family.png");
  filter: saturate(.96) contrast(1.05) brightness(.92);
  transform: scale(1.02);
  z-index: 1;
}

/* Secondary image – subtle atmospheric layer */
.about-blend-b{
  background-image: url("../img/about-drive.jpeg");
  opacity: .22;
  filter: blur(1.5px) brightness(.85);
  mix-blend-mode: soft-light;
  transform: scale(1.06);
  z-index: 2;

  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.4) 45%, rgba(0,0,0,0) 75%);
          mask-image: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.4) 45%, rgba(0,0,0,0) 75%);
}

/* Brand cinematic overlay */
.about-blend-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 60% at 25% 20%, rgba(201,165,87,.15), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
  z-index: 3;
}

@media (max-width: 720px){
  .about-blend{ padding: 0 1.5rem 2.5rem; }
  .about-blend-frame{ min-height: 320px; }
}

/* ===== END ABOUT BLEND ===== */


/* === Services page polish (Booking Model + Card hero images) === */
.offer-item{ text-align:center; }
.offer-icon{
  width:44px; height:44px;
  margin:0 auto 0.75rem auto;
  border:1px solid rgba(212,175,55,0.28);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,0.22);
  box-shadow:0 0 0 1px rgba(0,0,0,0.35) inset;
}
.offer-icon svg{ width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.8; opacity:0.95; }

.card-hero{
  display:block;
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:16px;
  margin:0 0 1.25rem 0;
  filter:brightness(0.62) contrast(1.05);
}
@media (min-width: 860px){
  .card-hero{ height:160px; }
}



/* ===== FORCE SERVICES FIX ===== */

.services-page .service-grid,
.services-page .services-grid,
.services-page .card-grid,
.services-page .tiles {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}

.services-page .card h2,
.services-page .card h3,
.services-page .service-card h3 {
  font-size: 1.2rem !important;
  line-height: 1.2 !important;
}

.services-page .card p,
.services-page .service-card p {
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}

.services-page .hero-inner {
  max-width: 1000px;
}

.services-page .hero-copy {
  max-width: 800px;
}

/* ===== END FORCE SERVICES FIX ===== */

