/* ================================================================
   POINTE MARINE YACHT SERVICES L.L.C.
   Premium Yacht Care in the Florida Keys

   Palette:
     --navy-deep:   #0a1628  (deepest ocean)
     --navy:        #0d1b33  (primary dark)
     --navy-mid:    #132240  (card backgrounds)
     --navy-light:  #1a3a5c  (lighter panels)
     --brass:       #C5A55A  (polished brass gold)
     --brass-light: #D4BA7A  (hover gold)
     --brass-dark:  #9E8344  (dark gold)
     --sky:         #4A8FBF  (sky blue accent)
     --sky-light:   #7CB5D8  (light sky)
     --sky-pale:    #E8F4FD  (tinted white)
     --white:       #FFFFFF
     --cream:       #F0F4F8  (off-white sections)
     --text:        #C8D6E5  (body text on dark)
     --text-muted:  #8899AA  (secondary text)

   Fonts:
     Display: Playfair Display (serif, elegant yachting)
     Body:    Inter (clean, modern readability)
     Accent:  Cormorant Garamond (italic nautical elegance)
   ================================================================ */

/* ── Reset & Base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-deep: #0a1628;
  --navy: #0d1b33;
  --navy-mid: #132240;
  --navy-light: #1a3a5c;
  --brass: #C5A55A;
  --brass-light: #D4BA7A;
  --brass-dark: #9E8344;
  --sky: #4A8FBF;
  --sky-light: #7CB5D8;
  --sky-pale: #E8F4FD;
  --white: #FFFFFF;
  --cream: #F0F4F8;
  --text: #C8D6E5;
  --text-muted: #8899AA;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: #2a3444;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

::selection {
  background: rgba(197, 165, 90, 0.3);
  color: var(--navy);
}

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ──────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section--dark {
  background-color: var(--navy);
  color: var(--text);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.section__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: var(--text);
  opacity: 0.8;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%);
  color: var(--navy-deep);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--brass-light) 0%, var(--brass) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(197, 165, 90, 0.5);
}

.btn--outline:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.btn__loading {
  display: none;
}

.btn--loading .btn__text {
  display: none;
}

.btn--loading .btn__loading {
  display: inline-flex;
}

.btn--loading .btn__loading svg {
  width: 22px;
  height: 22px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── NAVIGATION ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  transition: all var(--transition);
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.08);
}

.nav--scrolled {
  height: 68px;
  background: rgba(10, 22, 40, 0.95);
  border-bottom-color: rgba(197, 165, 90, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 42px;
  height: 42px;
  color: var(--brass);
  flex-shrink: 0;
}

.logo__icon {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brass);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%);
  color: var(--navy-deep) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--brass-light) 0%, var(--brass) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 165, 90, 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, #071425 40%, #0a2a4a 70%, #0d3d6b 100%);
  padding: 120px 24px 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(74, 143, 191, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated waves */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 120px;
  opacity: 0.15;
}

.hero__wave--1 {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q150 20 300 60 Q450 100 600 60 Q750 20 900 60 Q1050 100 1200 60 V120 H0Z' fill='%234A8FBF'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  animation: wave 12s linear infinite;
  bottom: 10px;
}

.hero__wave--2 {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q150 100 300 60 Q450 20 600 60 Q750 100 900 60 Q1050 20 1200 60 V120 H0Z' fill='%23C5A55A'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  animation: wave 16s linear infinite reverse;
  opacity: 0.08;
  bottom: 0;
}

.hero__wave--3 {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q200 40 400 80 Q600 120 800 80 Q1000 40 1200 80 V120 H0Z' fill='%23FFFFFF'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  animation: wave 20s linear infinite;
  opacity: 0.04;
  bottom: -5px;
}

@keyframes wave {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(197, 165, 90, 0.12);
  border: 1px solid rgba(197, 165, 90, 0.25);
  color: var(--brass-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  color: var(--brass);
}

.hero__description {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero yacht illustration */
.hero__visual {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.85;
}

.hero__yacht {
  width: 100%;
  height: auto;
}

.hero__hull {
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Stats bar */
.hero__stats {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(13, 27, 51, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 165, 90, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  margin: 40px 24px 0;
  z-index: 1;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--brass);
}

.hero__stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(197, 165, 90, 0.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  position: relative;
}

.hero__scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ── ABOUT ─────────────────────────────────────────────────────── */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__portrait {
  position: relative;
}

.about__portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(197, 165, 90, 0.2);
}

.about__portrait-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d3d6b 0%, #0a1628 40%, #132240 70%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__portrait-icon {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.about__credentials {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about__credentials-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.about__credentials-role {
  display: block;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.3px;
}

.about__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy-light);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--brass);
  margin-bottom: 24px;
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(197, 165, 90, 0.15);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}

.about__value:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(197, 165, 90, 0.12);
}

.about__value-icon {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
}

.about__value-icon svg {
  width: 100%;
  height: 100%;
}

/* ── SERVICES ──────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(19, 34, 64, 0.5);
  border: 1px solid rgba(197, 165, 90, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 165, 90, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(26, 58, 92, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 90, 0.1);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--brass);
  transition: all var(--transition);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-card__icon {
  background: var(--brass);
  color: var(--navy-deep);
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 16px;
}

.service-card__features {
  margin-bottom: 20px;
}

.service-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.5;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brass);
  transition: all var(--transition);
}

.service-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card__cta:hover {
  color: var(--brass-light);
}

.service-card__cta:hover svg {
  transform: translateX(4px);
}

/* ── FLEET / CAPABILITIES ──────────────────────────────────────── */
.fleet {
  background: var(--cream);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 24px;
}

.fleet__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197, 165, 90, 0.12);
  transition: all var(--transition);
}

.fleet__card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 165, 90, 0.3);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
}

.fleet__card--tall {
  grid-row: span 2;
}

.fleet__card--wide {
  grid-column: span 2;
}

.fleet__card-gradient {
  position: absolute;
  inset: 0;
}

.fleet__card-gradient--1 {
  background: linear-gradient(160deg, #0a1628 0%, #0d3d6b 50%, #1a5c8a 100%);
}

.fleet__card-gradient--2 {
  background: linear-gradient(160deg, #132240 0%, #1a3a5c 50%, #234f78 100%);
}

.fleet__card-gradient--3 {
  background: linear-gradient(160deg, #0d1b33 0%, #162848 50%, #1a3a5c 100%);
}

.fleet__card-gradient--4 {
  background: linear-gradient(160deg, #071425 0%, #0a2a4a 50%, #0d3d6b 100%);
}

.fleet__card-gradient--5 {
  background: linear-gradient(160deg, #0a1628 0%, #132240 30%, #1a3a5c 60%, #0d3d6b 100%);
}

.fleet__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
}

.fleet__card-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(197, 165, 90, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.fleet__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.fleet__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
}

/* ── SERVICE AREA ──────────────────────────────────────────────── */
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.area__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 28px;
}

.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area__tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brass);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.area__tag:hover {
  background: var(--brass);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.area__map {
  position: relative;
}

.area__map-svg {
  width: 100%;
  height: auto;
}

.area__keys-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(197, 165, 90, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  border-color: rgba(197, 165, 90, 0.2);
}

.testimonial-card--featured {
  background: var(--navy);
  border-color: rgba(197, 165, 90, 0.2);
}

.testimonial-card--featured:hover {
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--brass);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 24px;
}

.testimonial-card--featured .testimonial-card__quote {
  color: var(--text);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  color: var(--brass);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: var(--navy-deep);
}

.testimonial-card__name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-card--featured .testimonial-card__name {
  color: var(--white);
}

.testimonial-card__detail {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── CTA BANNER ────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d3d6b 40%, var(--navy-light) 70%, #1a5c8a 100%);
}

.cta-banner__bg::after {
  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='%23C5A55A' fill-opacity='0.04'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23C5A55A' stroke-opacity='0.06' stroke-width='0.5' fill='none'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact__info-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(197, 165, 90, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__info-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.contact__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__info-icon {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-icon svg {
  width: 100%;
  height: 100%;
}

.contact__info-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.contact__info-link {
  color: var(--text);
  transition: color var(--transition);
}

.contact__info-link:hover {
  color: var(--brass-light);
}

.contact__map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact__map-placeholder {
  background: rgba(26, 58, 92, 0.3);
  border: 1px dashed rgba(197, 165, 90, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact__map-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

/* Contact form */
.contact__form {
  background: var(--white);
  border: 1px solid rgba(197, 165, 90, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
  position: relative;
}

.form__row .form__group {
  margin-bottom: 0;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #aab4c0;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.12);
  background: var(--white);
}

.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: #e53e3e;
}

.form__input--error:focus,
.form__select--error:focus,
.form__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.form__select-wrap {
  position: relative;
}

.form__select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.form__select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}

.form__group--error .form__error {
  display: block;
}

/* Success state */
.contact__success {
  display: none;
  text-align: center;
  padding: 60px 36px;
  background: var(--white);
  border: 1px solid rgba(197, 165, 90, 0.1);
  border-radius: var(--radius-lg);
}

.contact__success--visible {
  display: block;
}

.contact__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--brass);
}

.contact__success-icon svg {
  width: 100%;
  height: 100%;
}

.contact__success-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact__success-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: var(--text);
  padding: 64px 0 0;
  border-top: 1px solid rgba(197, 165, 90, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.logo--footer .logo__name {
  font-size: 16px;
}

.logo--footer .logo__mark {
  width: 36px;
  height: 36px;
}

.footer__description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
}

.footer__heading {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--brass);
}

.footer__link--email {
  display: inline-block;
  margin-top: 12px;
  word-break: break-all;
}

.footer__address {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.6;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  transition: all var(--transition);
}

.footer__legal-link:hover {
  color: var(--brass);
  opacity: 1;
}

/* ── BACK TO TOP ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 50%;
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brass);
  color: var(--navy-deep);
  border-color: var(--brass);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE: Tablet ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .fleet__card--tall {
    grid-row: span 1;
  }

  .fleet__card--wide {
    grid-column: span 2;
  }

  .about__grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
  }

  .area__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .area__map {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* ── RESPONSIVE: Mobile ────────────────────────────────────────── */
@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Nav mobile */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-deep);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(197, 165, 90, 0.1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 24px;
    width: auto;
  }

  /* Hero mobile */
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    margin: 32px 0 0;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

  /* About mobile */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__portrait-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .about__credentials {
    right: 0;
    bottom: -16px;
  }

  .about__values {
    flex-direction: column;
  }

  /* Services mobile */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Fleet mobile */
  .fleet__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .fleet__card--tall,
  .fleet__card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .fleet__card {
    min-height: 220px;
  }

  /* Testimonials mobile */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Contact mobile */
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form__row .form__group {
    margin-bottom: 16px;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .contact__info-card {
    padding: 28px 20px;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__wave {
    animation: none;
  }

  .hero__scroll-line::before {
    animation: none;
  }

  .area__keys-path {
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* ── Print Styles ──────────────────────────────────────────────── */
@media print {
  .nav,
  .hero__bg,
  .hero__scroll,
  .hero__visual,
  .hero__wave,
  .cta-banner,
  .back-to-top,
  .nav__link--cta,
  .hero__actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--dark {
    background: #f5f5f5;
    color: #333;
  }

  .hero {
    background: #f5f5f5;
    min-height: auto;
    padding: 40px 24px;
  }

  .hero__title,
  .section__title {
    color: #000;
  }
}
