/* ==============================
RESET & ROOT
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --g1: #c87d0e;
  --g2: #e8a830;
  --g3: #f5c96a;
  --black: #090909;
  --dark: #111111;
  --dark2: #181818;
  --text: #d0d0d0;
  --muted: #aaa;
  --dim: #777;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ==============================
UTILITIES
============================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-gold {
  display: inline-block;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-gold:hover {
  opacity: 0.82;
}
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(200, 125, 14, 0.5);
  color: var(--g3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  background: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-outline:hover {
  background: rgba(200, 125, 14, 0.1);
}

/* ==============================
REVEAL ANIMATION
============================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
NAV
============================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4rem;
  background: rgba(9, 9, 9, 0.97);
  border-bottom: 1px solid rgba(200, 125, 14, 0.18);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #aaa;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--g3);
}
.nav-links a.nav-cta {
  background: linear-gradient(90deg, var(--g1), var(--g2));
  color: #000;
  padding: 0.55rem 1.4rem;
}
.nav-links a.nav-cta:hover {
  opacity: 0.85;
  color: #000;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--g2);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mob-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(9, 9, 9, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}
.mob-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  transition: color 0.25s;
}
.mob-drawer a:hover {
  color: var(--g3);
}
.mob-drawer a.mob-cta {
  background: linear-gradient(90deg, var(--g1), var(--g2));
  color: #000;
  padding: 0.75rem 2.5rem;
  font-size: 1.3rem;
}
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--g2);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ==============================
HERO
============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.45) 100%),
    url('img/prestige3.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 780px;
  animation: fadeUp 1.3s ease both;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--g2);
}
.hero-name-line1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  background: linear-gradient(90deg, var(--g1) 0%, var(--g3) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-name-line2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #ccc;
  display: block;
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  color: #bbb;
  margin-bottom: 2.8rem;
  letter-spacing: 0.05em;
}
.hero-tagline strong {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==============================
STRIP
============================== */
.strip {
  background: var(--dark);
  border-top: 1px solid rgba(200, 125, 14, 0.22);
  border-bottom: 1px solid rgba(200, 125, 14, 0.22);
  padding: 1.4rem 2rem;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.8rem;
  justify-content: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}
.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g3));
  flex-shrink: 0;
}

/* ==============================
GALLERY
============================== */
.gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 260px;
  gap: 8px;
}
.gcell {
  overflow: hidden;
  position: relative;
  background: #111;
}
.gcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.7s ease,
    filter 0.4s;
  filter: brightness(0.75);
}
.gcell:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}
.gcell-tall {
  grid-row: 1 / 3;
}
.gcell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g3);
}
.gcell-tall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--g2);
  border-left: 2px solid var(--g2);
  z-index: 2;
}
.gcell-tall::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--g2);
  border-right: 2px solid var(--g2);
  z-index: 2;
}

/* ==============================
SERVICES
============================== */
.svc-wrap {
  background: var(--dark);
  border-top: 1px solid rgba(200, 125, 14, 0.1);
  border-bottom: 1px solid rgba(200, 125, 14, 0.1);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.svc-card {
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(200, 125, 14, 0.08);
  border-bottom: 1px solid rgba(200, 125, 14, 0.08);
  transition: background 0.3s;
}
.svc-card:hover {
  background: rgba(200, 125, 14, 0.04);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(200, 125, 14, 0.06);
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
}
.svc-swoosh {
  width: 48px;
  height: 16px;
  display: block;
  margin-bottom: 1.2rem;
}
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 0.9rem;
}
.svc-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.95;
}

/* ==============================
ABOUT
============================== */
.about-outer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}
.about-img::before {
  content: '';
  position: absolute;
  top: -9px;
  left: -9px;
  width: 52px;
  height: 52px;
  border-top: 2px solid var(--g2);
  border-left: 2px solid var(--g2);
  z-index: 1;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: -9px;
  width: 52px;
  height: 52px;
  border-bottom: 2px solid var(--g2);
  border-right: 2px solid var(--g2);
  z-index: 1;
}
.about-body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 2.8rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.pillar-bar {
  flex-shrink: 0;
  width: 3px;
  min-height: 46px;
  margin-top: 3px;
  background: linear-gradient(to bottom, var(--g1), var(--g3));
}
.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 0.3rem;
}
.pillar-body {
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.85;
}

/* ==============================
FAQ
============================== */
.faq-outer {
  background: var(--dark);
  border-top: 1px solid rgba(200, 125, 14, 0.1);
  border-bottom: 1px solid rgba(200, 125, 14, 0.1);
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.faq-item {
  border-bottom: 1px solid rgba(200, 125, 14, 0.12);
  padding: 1.8rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ccc;
  user-select: none;
  transition: color 0.3s;
  gap: 1rem;
}
.faq-q:hover {
  color: var(--g3);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--g2);
  transition: transform 0.35s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.95;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding-top: 1rem;
}

/* ==============================
QUOTE FORM
============================== */
.quote-outer {
  background: var(--dark2);
  border-top: 1px solid rgba(200, 125, 14, 0.15);
  border-bottom: 1px solid rgba(200, 125, 14, 0.15);
  padding: 7rem 2rem;
}
.quote-inner {
  max-width: 820px;
  margin: 0 auto;
}
.quote-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Steps */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.sdot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #3a3a3a;
  transition: all 0.3s;
  flex-shrink: 0;
}
.sdot.active {
  background: linear-gradient(135deg, var(--g1), var(--g3));
  border-color: var(--g2);
  color: #000;
}
.sdot.done {
  background: rgba(200, 125, 14, 0.14);
  border-color: var(--g1);
  color: var(--g3);
}
.sline {
  flex: 0 0 80px;
  height: 1px;
  background: #222;
  transition: background 0.3s;
}
.sline.done {
  background: linear-gradient(90deg, var(--g1), var(--g3));
}
.steps-labels {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.slbl {
  flex: 0 0 116px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  transition: color 0.3s;
}
.slbl.active {
  color: var(--g3);
}

/* Card */
.quote-card {
  background: #0c0c0c;
  border: 1px solid rgba(200, 125, 14, 0.18);
  padding: 3.5rem;
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g2), transparent);
}
.fstep {
  display: none;
  animation: fadeUp 0.35s ease;
}
.fstep.active {
  display: block;
}
.step-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}

/* Radio cards */
.rcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}
.rcard {
  border: 1px solid #1e1e1e;
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s;
  position: relative;
}
.rcard:hover {
  border-color: rgba(200, 125, 14, 0.4);
  background: rgba(200, 125, 14, 0.04);
}
.rcard.sel {
  border-color: var(--g2);
  background: rgba(200, 125, 14, 0.08);
}
.rcard.sel::after {
  content: '✓';
  position: absolute;
  top: 7px;
  right: 9px;
  font-size: 0.75rem;
  color: var(--g2);
}
.rcard-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.rcard-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd;
  margin-bottom: 0.25rem;
}
.rcard-sub {
  font-size: 1rem;
}

/* Fields */
.fg {
  margin-bottom: 1.6rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}
.flabel {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.req {
  color: var(--g2);
}
.finput {
  width: 100%;
  background: #080808;
  border: 1px solid #252525;
  color: #e0e0e0;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.finput:focus {
  border-color: var(--g2);
}
.finput::placeholder {
  color: #fff;
}
.finput option {
  background: #0c0c0c;
  color: #ddd;
}
.ftextarea {
  resize: vertical;
  min-height: 95px;
}

/* Calendar */
.cal-wrap {
  position: relative;
}
.cal-btn {
  width: 100%;
  background: #080808;
  border: 1px solid #252525;
  color: #e0e0e0;
  padding: 0.8rem 1.1rem;
  font-size: 0.84rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.25s;
  outline: none;
  text-align: left;
}
.cal-btn:focus,
.cal-btn.open {
  border-color: var(--g2);
}
.cal-placeholder {
  color: #fff;
}
.cal-icon {
  color: var(--g2);
  flex-shrink: 0;
}
.cal-popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #101010;
  border: 1px solid rgba(200, 125, 14, 0.3);
  z-index: 9999;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
  display: none;
}
.cal-popup.open {
  display: block;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #1e1e1e;
}
.cal-prev,
.cal-next {
  background: none;
  border: none;
  color: var(--g2);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.1rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.cal-prev:hover,
.cal-next:hover {
  color: var(--g3);
}
.cal-month-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.6rem 1rem 0.3rem;
}
.cal-dow span {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 0.4rem 1rem 1rem;
}
.cday {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cday:hover:not(.past):not(.empty) {
  background: rgba(200, 125, 14, 0.14);
  color: var(--g3);
  border-color: rgba(200, 125, 14, 0.3);
}
.cday.today {
  color: var(--g2);
  font-weight: 700;
}
.cday.chosen {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #000;
  font-weight: 700;
}
.cday.past {
  color: #222;
  cursor: default;
}
.cday.empty {
  cursor: default;
}

/* Toggle */
.tog-row {
  display: flex;
}
.tog-btn {
  flex: 0 0 90px;
  padding: 0.7rem 0;
  border: 1px solid #252525;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.tog-btn:first-child {
  border-right: none;
}
.tog-btn.on {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-color: var(--g2);
  color: #000;
}

/* Summary */
.summary {
  background: rgba(200, 125, 14, 0.05);
  border: 1px solid rgba(200, 125, 14, 0.2);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
}
.summary.show {
  display: block;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #777;
}
.sum-row:last-child {
  border: none;
}
.sum-row strong {
  color: var(--g3);
  text-align: right;
  margin-left: 1rem;
}

/* Form nav */
.fnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #161616;
}
.fnext,
.fsubmit {
  background: linear-gradient(90deg, var(--g1), var(--g2));
  color: #000;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  transition: opacity 0.3s;
}
.fnext:hover,
.fsubmit:hover {
  opacity: 0.82;
}
.fback {
  background: transparent;
  border: 1px solid #252525;
  color: #666;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.fback:hover {
  border-color: #555;
  color: #bbb;
}

/* Success */
.success-wrap {
  text-align: center;
  padding: 2.5rem 0;
}
.success-tick {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  font-weight: 900;
  margin: 0 auto 1.8rem;
}
.success-msg {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.95;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.success-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
CONTACT
============================== */
.contact-outer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
  padding: 8rem 2rem;
}
.contact-swoosh {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  pointer-events: none;
  opacity: 0.18;
}
.contact-inner {
  position: relative;
  z-index: 1;
}
.arrive-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 2.5rem;
}
.arrive-title .em {
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
}
.contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #aaa;
}
.cicon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 125, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g2);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--g3);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: #fff;
}

/* ==============================
FOOTER
============================== */
footer {
  background: #000;
  border-top: 1px solid rgba(200, 125, 14, 0.12);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-brand {
  display: flex;
  flex-direction: column;
}
.foot-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.foot-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ddd;
}
.foot-copy {
  font-size: 0.62rem;
  color: #fff;
  letter-spacing: 0.08em;
}

/* ==============================
RESPONSIVE
============================== */
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gcell-tall {
    grid-row: auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mob-drawer {
    display: flex;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gcell {
    height: 220px;
  }
  .rcards {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .quote-card {
    padding: 2rem 1.5rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Main fleet/gallery grids */
  [class*='gallery'],
  [class*='grid'] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero {
    min-height: 80vh;
  }
}
