/* ============================================
   ABF OHANA — styles.css
   Mobile-first, high-converting design
   ============================================ */

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

:root {
  --navy:    #1B3A5C;
  --navy-dk: #0F2440;
  --gold:    #C9A84C;
  --gold-lt: #E8C96B;
  --white:   #FFFFFF;
  --off-white: #F7F8FA;
  --gray:    #6B7280;
  --gray-lt: #E5E7EB;
  --text:    #1A202C;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy-dk);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--gray); line-height: 1.75; }

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label.center { text-align: center; }

.section-sub {
  max-width: 640px;
  margin: 16px auto 48px;
  font-size: 1.05rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dk);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-light { background: var(--white); color: var(--navy-dk); }
.btn-light:hover { background: var(--off-white); }

.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

.btn-nav {
  background: var(--gold);
  color: var(--navy-dk) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-nav:hover { background: var(--gold-lt); }

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 28, 48, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--white); }

.nav-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, #1a4a7a 60%, #0d3060 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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='%23ffffff' fill-opacity='0.02'%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");
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 480px;
}

@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}

.stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--navy);
  padding: 16px 24px;
  overflow: hidden;
}

.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
}

.trust-inner span {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   STORY
   ============================================ */

.story {
  padding: 96px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  gap: 56px;
}

@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.story-content h2 { margin-bottom: 24px; }

.story-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.story-content strong { color: var(--navy-dk); }

.story-content .btn-primary { margin-top: 8px; margin-bottom: 40px; }

.story-quote {
  background: var(--navy-dk);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.story-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-quote cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.value-icon { font-size: 1.5rem; flex-shrink: 0; }

.value strong {
  display: block;
  color: var(--navy-dk);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.value p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--gray);
}

/* ============================================
   SERVICES
   ============================================ */

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 96px 0;
  background: var(--navy-dk);
}

.testimonials .section-label {
  color: var(--gold);
}

.testimonials h2 {
  color: var(--white);
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.5);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-info strong {
  color: var(--white);
  font-size: 0.95rem;
}

.author-info span {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 96px 0;
  background: var(--off-white);
}

.services h2 { margin-bottom: 0; }

.services-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card.featured {
  border-color: var(--gold);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dk);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy-dk);
}

.service-card > p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.services-cta {
  text-align: center;
}

.services-cta p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

/* ============================================
   BRANDS
   ============================================ */

.brands {
  padding: 96px 0;
  background: var(--white);
}

.brands h2 { margin-bottom: 48px; }

.brands-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

.brand-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid transparent;
  transition: var(--transition);
  display: block;
}

.brand-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.brand-icon { font-size: 2rem; margin-bottom: 14px; }

.brand-card h3 {
  color: var(--navy-dk);
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.brand-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================
   VETERANS
   ============================================ */

.veterans {
  background: linear-gradient(135deg, var(--navy-dk) 0%, #1a4a7a 100%);
  padding: 96px 24px;
}

.veterans-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.veterans .section-label { color: var(--gold-lt); }

.veterans h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.veterans p {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.veterans strong { color: var(--gold-lt); }

.veterans-options {
  display: grid;
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 640px) {
  .veterans-options { grid-template-columns: repeat(3, 1fr); }
}

.veteran-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.veteran-option strong {
  display: block;
  color: var(--gold-lt);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.veteran-option p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   BOOKING
   ============================================ */

.booking {
  padding: 96px 0;
  background: var(--off-white);
}

.booking-inner {
  display: grid;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .booking-inner { grid-template-columns: 1fr 1.4fr; }
}

.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-content h2 { margin-bottom: 16px; }

.booking-content p { margin-bottom: 24px; font-size: 1.02rem; }

.booking-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-promises li {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-lt);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-row textarea { resize: vertical; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray);
}

.checkbox-label input { width: auto; }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.form-note a { color: var(--navy); font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-dk);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-motto {
  color: var(--gold) !important;
  font-style: italic;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact strong {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ============================================
   SUCCESS STATE
   ============================================ */

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  color: var(--navy-dk);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray);
  margin-bottom: 0;
}

/* ============================================
   MOBILE NAV OPEN STATE
   ============================================ */

.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-dk);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   PHOTOS
   ============================================ */

/* Nav logo image */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  background: white;
  border-radius: 6px;
  padding: 4px 10px;
}

/* Footer logo image */
.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  background: white;
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(15, 36, 64, 0.97);
  border-top: 1px solid rgba(201,168,76,0.3);
  justify-content: center;
}

@media (max-width: 899px) {
  .sticky-cta { display: flex; }
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  background: var(--gold);
  color: var(--navy-dk);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  background: var(--gold-lt);
}

/* Hero two-column layout */
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1fr 400px; }
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  order: -1;
}

@media (min-width: 960px) {
  .hero-photo-wrap { order: 0; }
}

.hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 3px solid rgba(201,168,76,0.35);
}

/* Story section photos */
.story-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.story-photo {
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(1.4) contrast(1.05) saturate(1.3);
}

.story-family-photo {
  object-position: center 30%;
  filter: brightness(1.35) contrast(1.1) saturate(1.25);
}

.story-family-wrap {
  margin-top: 0;
  margin-bottom: 24px;
}

/* Veterans section with photo */
.veterans-inner.veterans-with-photo {
  max-width: 1100px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .veterans-inner.veterans-with-photo {
    grid-template-columns: 280px 1fr;
  }
}

.veterans-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  max-height: 420px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
  border: 3px solid rgba(201,168,76,0.25);
  display: block;
  margin: 0 auto;
}

.veterans-content { display: flex; flex-direction: column; gap: 0; }

.veterans-inner.veterans-with-photo .section-label,
.veterans-inner.veterans-with-photo h2,
.veterans-inner.veterans-with-photo p {
  text-align: left;
}

.veterans-inner.veterans-with-photo .btn-primary { align-self: flex-start; }
