/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  /* Brand Colors - converted from CMYK */
  --gray-brand: #536470;
  --gray-dark: #2C3A42;
  --gray-deeper: #1E2A31;
  --charcoal: #1A1F24;
  --orange-brand: #D45724;
  --orange-hover: #B8451C; 
  --orange-light: rgba(212, 87, 36, 0.08);
  --orange-glow: rgba(212, 87, 36, 0.15);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --cream: #EDEAE4;
  --light-gray: #D5D2CC;
  --text-primary: #1A1F24;
  --text-secondary: #536470;
  --text-light: #8A9199;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1280px, 92vw);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container { width: var(--container); margin: 0 auto; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { font-size: 1.05rem; color: var(--text-secondary); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-brand);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange-brand);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--orange-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 87, 36, 0.3);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 87, 36, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--orange-brand);
  border: 2px solid var(--orange-brand);
}
.btn-outline:hover {
  background: var(--orange-brand);
  color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(26, 31, 36, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-brand);
  transition: width 0.3s var(--ease-smooth);
}
.nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--orange-brand); }
.header .btn-primary { padding: 12px 24px; font-size: 0.85rem; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,31,36,0.95) 0%, rgba(44,58,66,0.7) 50%, rgba(83,100,112,0.5) 100%);
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23536470' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
/* HERO VIDEO — remove this block to revert */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
/* END HERO VIDEO */

.hero-geometric {
  position: absolute;
  z-index: 1;
  opacity: 0.06;
}
.hero-geometric-1 {
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 2px solid var(--orange-brand);
  transform: rotate(45deg);
}
.hero-geometric-2 {
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 87, 36, 0.12);
  border: 1px solid rgba(212, 87, 36, 0.25);
  color: var(--orange-brand);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.15s both;
}
.hero h1 span { color: var(--orange-brand); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.45s both;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange-brand);
  flex-shrink: 0;
}

/* Hero right side - stat cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 1s var(--ease-smooth) 0.5s both;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
  transition: transform 0.4s var(--ease-smooth);
}
.hero-card:hover { transform: translateX(-8px); }
.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-brand);
  margin-bottom: 8px;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
}
.hero-card-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream);
  padding: 16px 0;
  position: relative;
  z-index: 4;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item svg { width: 22px; height: 22px; color: var(--orange-brand); flex-shrink: 0; }
.trust-item strong { color: var(--text-primary); }
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--cream);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.services-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid var(--cream);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--orange-glow); }
.service-icon svg { width: 26px; height: 26px; color: var(--orange-brand); }
.service-card h3 {
  margin-bottom: 14px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-brand);
  background: none;
  padding: 0;
  transition: gap 0.3s var(--ease-smooth);
}
.service-expand-btn:hover { gap: 10px; }
.service-expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-smooth);
}
.service-card.expanded .service-expand-btn svg { transform: rotate(180deg); }
.service-card.expanded { border-color: var(--orange-brand); }
.service-card.expanded::before { transform: scaleX(1); }

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-smooth), opacity 0.35s;
  opacity: 0;
}
.service-card.expanded .service-details {
  max-height: 500px;
  opacity: 1;
}
.service-details ul {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-details ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-details ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-brand);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ============================================
   ABOUT / WHY CHOOSE
   ============================================ */
.about {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--white);
}
.about-heading {
  text-align: center;
  margin-bottom: 40px;
}
.about-heading h2 { margin-top: 8px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.about-image {
  position: relative;
  height: 360px;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  gap: 12px;
  background:
    linear-gradient(135deg, var(--cream) 0%, #D5D2CC 100%);
}
.about-image-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--orange-brand);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}
.about-content > p {
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  gap: 14px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; color: var(--orange-brand); }
.about-feature h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.about-feature p { font-size: 0.85rem; line-height: 1.6; }

/* Media / Press Preview Cards */
.about-media {
  margin-top: 20px;
}
.about-media-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.about-media-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.media-card {
  flex: 1;
  min-width: 220px;
  background: var(--off-white);
  border: 1px solid var(--cream);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.35s var(--ease-smooth);
  text-decoration: none;
  color: inherit;
}
.media-card:hover {
  border-color: var(--orange-brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.media-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-card-icon.gp {
  background: #003A70;
}
.media-card-icon.voyage {
  background: var(--charcoal);
}
.media-card-icon svg { width: 20px; height: 20px; color: var(--white); }
.media-card-source {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.media-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 6px;
}
.media-card-excerpt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-brand);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.media-card-link svg { width: 13px; height: 13px; }

@media (max-width: 768px) {
  .about-media-cards { flex-direction: column; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.process > * { position: relative; z-index: 1; }
.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.process-header h2 { color: var(--white); }
.process-header p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 1.1rem; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.4s var(--ease-smooth);
}
.process-step:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange-brand);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.process-step p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   LAND SECTION
   ============================================ */
.land {
  padding: clamp(40px, 5vw, 70px) 0;
  background: var(--off-white);
}
.land-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}
.land-header p { margin-top: 10px; font-size: 1rem; }
.land-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 28px;
}
.land-option {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 2px solid var(--cream);
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}
.land-option:hover, .land-option.active {
  border-color: var(--orange-brand);
  box-shadow: 0 12px 40px rgba(212, 87, 36, 0.1);
  transform: translateY(-4px);
}
.land-option-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.3s;
}
.land-option:hover .land-option-icon { background: var(--orange-glow); }
.land-option-icon svg { width: 22px; height: 22px; color: var(--orange-brand); }
.land-option h3 { margin-bottom: 6px; font-size: 1.1rem; }
.land-option p { font-size: 0.88rem; }

/* Land Form */
.land-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid var(--cream);
  display: none;
}
.land-form-wrapper.visible { display: block; animation: fadeInUp 0.5s var(--ease-smooth); }
.land-form-wrapper h3 { text-align: center; margin-bottom: 6px; }
.land-form-wrapper > p { text-align: center; margin-bottom: 20px; font-size: 0.95rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--cream);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-brand);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 28px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.gallery-header p { margin-top: 16px; font-size: 1.1rem; }
.gallery-tabs {
  display: none;
}
.gallery-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--off-white);
  border: 1px solid var(--cream);
  transition: all 0.3s;
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--orange-brand);
  color: var(--white);
  border-color: var(--orange-brand);
}
.gallery-grid {
  display: none;
}
.gallery-item {
  position: relative;
  height: 260px;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-smooth);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; min-height: 536px; }
.gallery-item:hover { transform: scale(0.98); }
.gallery-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream) 0%, #ccc9c2 100%);
}
.gallery-item-inner svg { width: 40px; height: 40px; opacity: 0.3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,36,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Mobile gallery */
.gallery-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-mobile-category {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-mobile-preview {
  position: relative;
  height: 220px;
}
.gallery-mobile-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-mobile-category:hover .gallery-hover-img {
  opacity: 1;
}
@media (max-width: 768px) {
  .gallery-mobile-category:hover .gallery-hover-img { opacity: 0; }
}
.gallery-mobile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  padding: 24px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
}
.gallery-mobile-label svg {
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.gallery-mobile-category.open .gallery-mobile-label svg {
  transform: rotate(180deg);
}
.gallery-mobile-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.gallery-mobile-category.open .gallery-mobile-expand {
  max-height: 4000px;
}
.gallery-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding-top: 4px;
}
.gallery-mobile-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .gallery-mobile {
    display: block;
  }
  .gallery-mobile-category { margin-bottom: 16px; }
  .gallery-mobile-preview { height: 220px; }
  .gallery-mobile-grid img { height: 160px; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.reviews-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.reviews-header p { margin-top: 16px; font-size: 1.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--cream);
  transition: transform 0.4s var(--ease-smooth);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg { width: 18px; height: 18px; color: #F5A623; fill: #F5A623; }
.review-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-brand);
  font-size: 1rem;
}
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.review-location { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.review-badge svg { width: 14px; height: 14px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--orange-brand);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--orange-brand) 0%, #B8451C 100%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; }
.cta-banner-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--orange-brand); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--orange-brand); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 80px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 16px; }
.faq-header p { font-size: 1.05rem; line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--cream);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--orange-brand); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange-brand);
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 40px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--orange-brand); }
.contact-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.contact-detail p { font-size: 0.9rem; }
.contact-detail a {
  color: var(--orange-brand);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--orange-hover); }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  border: 1px solid var(--cream);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 28px; font-size: 0.95rem; }
.contact-form .form-submit { text-align: left; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-espanol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-brand);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange-brand); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 36, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-display);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--orange-brand); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  color: var(--white);
  padding: 8px;
}
.mobile-nav-close svg { width: 28px; height: 28px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1082px) {
  .logo-img { height: 120px; flex-shrink: 0; }
  .header-phone-text { display: none; }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image { height: 280px; }
  .about-heading { text-align: left; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; min-height: 300px; }
}

@media (max-width: 768px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header .btn-primary { display: none; }
  .header { padding: 10px 0; }
  .hero { align-items: flex-start; min-height: auto; }
  .hero-content { padding-top: 140px; padding-bottom: 48px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-trust { gap: 20px; }
  .trust-bar-inner { justify-content: center; text-align: center; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .land-options { grid-template-columns: 1fr; }
  .land-form-wrapper { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-tabs, .gallery-grid { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; min-height: 200px; }
  .logo-img { height: 90px;}
}
