/* ─────────────────────────────────────────────
   ROOT VARIABLES
───────────────────────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #162032;
  --navy-soft: #1e2f45;
  --gold:      #c9a84c;
  --gold-light:#e2c068;
  --gold-pale: #f5e6b8;
  --white:     #ffffff;
  --off-white: #f8f9fb;
  --text:      #0d1b2a;
  --text-soft: #4a5568;
  --text-muted:#718096;
  --border:    #e2e8f0;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,.06);
  --shadow-md: 0 8px 32px rgba(13,27,42,.10);
  --shadow-lg: 0 20px 60px rgba(13,27,42,.15);
  --nav-h:     70px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
}
.section-desc.light { color: rgba(255,255,255,.8); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

.highlight {
  color: var(--gold);
  position: relative;
}
.highlight-light { color: var(--gold-light); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-booking {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-booking:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-booking-featured {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-booking-featured:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

.btn-full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: #0A0F1E;
}

#navbar.scrolled {
  background: #0A0F1E;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,.2), 0 4px 20px rgba(0,0,0,.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--gold); }

.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-socials .social-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: .75;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-socials .social-icon:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 900px) { .nav-socials { display: none; } }

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--gold-light); }

#navbar.scrolled .nav-link { color: var(--gold); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--gold); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #0A0F1E;
  border-bottom: 1px solid rgba(201,168,76,.25);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { padding: 16px 24px 24px; }
.mobile-menu li { border-bottom: 1px solid rgba(201,168,76,.15); }
.mob-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}
.mob-link:hover { color: var(--gold-light); }

/* Back to Home button */
.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
}
.back-to-home:hover { opacity: 1; transform: translateY(-2px); }
.back-to-home::before { content: '↑'; font-size: 1rem; }
.section-footer { display: flex; justify-content: center; padding-top: 16px; }
.booking-section .back-to-home { color: rgba(201,168,76,.85); }

/* Hero logo */
.hero-logo-wrap {
  border-radius: 24px;
  border: 2.5px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 8px 40px rgba(0,0,0,.45);
  line-height: 0;
}
.hero-logo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-outline.hero-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline.hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.hero-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.hero-cta .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.hero-socials {
  display: flex;
  gap: 12px;
}

/* Social icons */
.social-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Contact section social icons */
.contact-socials .social-icon {
  background: var(--off-white);
  border-color: var(--border);
  color: var(--text-soft);
}
.contact-socials .social-icon:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Footer social icons */
.footer-socials .social-icon.sm {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}
.footer-socials .social-icon.sm svg { width: 15px; height: 15px; }
.footer-socials .social-icon.sm:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Photo placeholder */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(201,168,76,.4);
  background: rgba(201,168,76,.05);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 24px;
}
.photo-placeholder-inner svg {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  opacity: .5;
}
.photo-placeholder-inner p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold);
}
.photo-placeholder-inner span {
  font-size: .8rem;
  opacity: .7;
  line-height: 1.5;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.card-top    { top: 24px;  right: -20px; animation: float 4s ease-in-out infinite; }
.card-bottom { bottom: 40px; left: -20px; animation: float 4s ease-in-out infinite 2s; }

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

.fc-icon { font-size: 1.4rem; }
.floating-card strong { display: block; color: var(--white); font-size: .9rem; }
.floating-card small  { color: rgba(255,255,255,.65); font-size: .75rem; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  letter-spacing: .05em;
  z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin: 6px auto 0;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-section { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 16px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: #7a5c00;
  margin-bottom: 12px;
  align-self: flex-start;
}
.service-badge.popular {
  background: var(--navy);
  color: var(--gold);
}
.service-badge.custom {
  background: rgba(13,27,42,.08);
  color: var(--navy);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.price-from { font-size: .75rem; color: var(--text-muted); }
.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.price-amount small { font-size: .8rem; font-weight: 500; }
.price-type { font-size: .75rem; color: var(--text-muted); }

.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-cta:hover { gap: 4px; }

.service-card--custom {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card--custom h3 { color: var(--white); }
.service-card--custom p  { color: rgba(255,255,255,.7); }
.service-card--custom .price-from,
.service-card--custom .price-type { color: rgba(255,255,255,.5); }
.service-card--custom .price-amount { color: var(--gold-light); }
.service-card--custom .service-price { border-top-color: rgba(255,255,255,.1); }
.service-card--custom::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

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

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

.about-image-col { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.about-photo-circle-wrap {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,.12), 0 8px 32px rgba(0,0,0,.18);
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .about-photo-circle-wrap {
    width: 180px;
    height: 180px;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span { font-size: .78rem; color: var(--text-muted); }

.about-text-col .section-title { margin-bottom: 8px; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text-col p {
  color: var(--text-soft);
  margin-bottom: 16px;
}
.about-text-col p strong { color: var(--navy); }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.value-pill {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}

/* ─────────────────────────────────────────────
   BOOKING
───────────────────────────────────────────── */
.booking-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.booking-section .section-title { color: var(--white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.booking-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.booking-card--featured {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.35);
}
.booking-card--featured:hover {
  background: rgba(201,168,76,.15);
}

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

.booking-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.featured-tag {
  background: var(--gold);
  color: var(--navy);
}

.booking-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.booking-card p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  margin-bottom: 20px;
}

.booking-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.booking-price small { font-size: 1rem; font-weight: 500; }

.booking-perks {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-perks li {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

.calendly-note {
  text-align: center;
  margin-top: 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .92rem; color: var(--navy); }
.testimonial-author small  { font-size: .78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────
   TOOLS
───────────────────────────────────────────── */
.tools-section { background: var(--white); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tool-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.tool-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  color: var(--white);
}
.tool-n8n    { background: #ea4b71; }
.tool-zapier { background: #ff4a00; }
.tool-openai { background: #10a37f; }
.tool-apify  { background: #1b81e4; }
.tool-sheets { background: #34a853; }
.tool-capcut { background: #000000; }
.tool-make     { background: #6d00cc; }
.tool-airtable { background: #fcb400; color: #1a1a1a; }

.tool-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tool-card p  { font-size: .82rem; color: var(--text-soft); line-height: 1.55; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-soft);
}
.cd-icon { font-size: 1.1rem; }
.contact-detail a { color: var(--gold); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold-light); }

.contact-socials { display: flex; gap: 10px; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: .85rem;
  min-height: 20px;
  transition: color var(--transition);
}
.form-note.success { color: #16a34a; }
.form-note.error   { color: #dc2626; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  max-width: 380px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS (Intersection Observer)
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .tools-grid         { grid-template-columns: repeat(3, 1fr); }
  .hero-grid          { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-cta { justify-content: center; }
  .hero-socials { justify-content: center; }
  .hero-badge { justify-content: center; }

  .photo-placeholder { max-width: 300px; margin: 0 auto; aspect-ratio: 1/1; }
  .card-top    { top: 8px;  right: -8px; }
  .card-bottom { bottom: 8px; left: -8px; }

  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .booking-grid       { grid-template-columns: 1fr; }
  .tools-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }

  .contact-form-wrap  { padding: 28px 20px; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .tools-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero-cta      { flex-direction: column; width: 100%; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .about-stats   { grid-template-columns: repeat(3, 1fr); }
}
