@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Expanded:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap");

/* ============================================================
   CAINWAY PRINT — DESIGN TOKENS
   ============================================================ */
:root {
  --teal-900: #0a3d48;
  --teal-800: #0d5c6e;
  --teal-700: #106f85;
  --cyan-500: #17a2c4;
  --cyan-300: #6dd4ec;
  --ink: #16211f;
  --ink-soft: #445350;
  --paper: #faf9f5;
  --paper-dim: #f1efe7;
  --paper-card: #ffffff;
  --line: #d8dcd4;
  --orange: #ef8935;
  --orange-dark: #d76f1c;

  --font-display: "Archivo Expanded", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 2px rgba(10, 40, 45, 0.06), 0 8px 24px -12px rgba(10, 40, 45, 0.18);
  --shadow-pop: 0 20px 60px -20px rgba(10, 40, 45, 0.35);

  --wrap: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
button { font: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 2.5px solid var(--cyan-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
  box-sizing: border-box;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 10px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px -8px rgba(10, 40, 45, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--teal-900);
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.brand-word-sub {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--cyan-500);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal-900);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 8px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* ---------- Nav Drawer ---------- */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  max-height: 100vh;
  background: var(--paper);
  z-index: 99;
  transition: right 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -2px 0 16px rgba(10, 40, 45, 0.15);
}

.nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
}

.drawer-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 100;
}

.drawer-close:hover {
  color: var(--teal-800);
}

.drawer-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.drawer-link {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-lighter, rgba(216, 220, 212, 0.5));
  transition: all 0.2s ease;
  text-decoration: none;
}

.drawer-link:hover {
  background: var(--paper-dim);
  color: var(--teal-800);
  padding-left: 24px;
}

.nav-drawer .btn-whatsapp {
  margin: 20px;
  width: auto;
  justify-content: center;
  padding: 12px 20px;
}

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  z-index: 2;
  box-sizing: border-box;
}

.preloader-bg,
.preloader-revealer {
  position: absolute;
  width: 100%;
  height: 100svh;
  transform-origin: center;
}

.preloader-bg {
  background: radial-gradient(circle at center, #08669c 50%, #054469 100%);
}

.preloader-revealer {
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}

.preloader-revealer-1 {
  background-color: #a1d6fb;
}

.preloader-revealer-2 {
  background-color: #08669c;
}

.preloader-revealer-3 {
  background-color: #054469;
}

.preloader-revealer-4 {
  background: radial-gradient(circle at center, #08669c 50%, #054469 100%);
}

.items {
  position: absolute;
  width: 100%;
  height: 100svh;
}

.item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15vw;
  min-width: 90px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10vw;
  min-width: 80px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  will-change: transform, opacity;
}

.preloader-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  background: radial-gradient(circle at center, #08669c 50%, #054469 100%);
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  text-align: center;
  overflow: hidden;
}

.hero-content h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: #f5e1bf;
  margin: 0;
}

.hero-content p {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5e1bf;
  line-height: 0.95;
  margin: 1rem 0 0 0;
}

/* ============================================================
   SERVICES / PRODUCT GRID
   ============================================================ */
.services { padding: 96px 0; display: none; width: 100%; }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--teal-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--paper-card);
  border: 1.5px solid var(--paper-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(10, 61, 72, 0.06);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
}
.product-card:active {
  transform: translateY(-4px);
}
.product-card:hover,
.product-card:focus-visible {
  border-color: var(--cyan-500);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(16, 111, 133, 0.18);
  background: linear-gradient(135deg, rgba(23, 162, 196, 0.02) 0%, rgba(109, 212, 236, 0.02) 100%);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cyan-300) 0%, var(--paper-dim) 100%);
  border-bottom: 1.5px solid var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.product-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center center;
  display: block;
  flex-shrink: 0;
}
.product-category {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-800) 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--teal-700) 100%);
  padding: 8px 12px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease--teal-900;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.product-short { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }

.product-foot { padding: 0 20px 20px; }
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--teal-700) 100%);
  padding: 11px 16px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.product-cta:hover { 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 111, 133, 0.3);
}
.product-card:hover .icon-arrow { transform: translateX(4px); }
.icon-arrow { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s ease; color: currentColor; }


/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 27, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.modal-overlay.is-open { 
  opacity: 1; 
  pointer-events: auto;
  visibility: visible;
}

body.no-scroll { overflow: hidden; }

.modal {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  max-width: 480px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 20px 16px 16px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-pop);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--paper-dim);
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--line); color: var(--ink); }

.modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-500);
}
.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--teal-900);
  margin: 8px 0 10px;
  padding-right: 24px;
}
.modal-head p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 22px; }

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.modal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  transition: border-color 0.15s ease, background 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.modal-option:hover { border-color: var(--cyan-500); background: rgba(23, 162, 196, 0.06); }
.modal-option:active { background: rgba(23, 162, 196, 0.12); }
.modal-option-text { display: flex; flex-direction: column; gap: 2px; }
.modal-option-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.modal-option-note { font-size: 12px; color: var(--ink-soft); }

.modal-hint { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--teal-800);
  color: #fff;
}

.btn-whatsapp:not(.btn-block) {
  width: auto;
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

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

.btn-whatsapp:hover { background: var(--teal-900); }

/* Floating Action Button for mobile */
.btn-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(10, 61, 72, 0.3);
  padding: 0;
  gap: 0;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  cursor: pointer;
  visibility: hidden;
}

.btn-fab .icon-wa {
  width: 28px;
  height: 28px;
}

.btn-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(10, 61, 72, 0.4);
}

.btn-fab:active {
  transform: scale(0.95);
}

.icon-wa { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { padding: 96px 0; background: var(--paper); width: 100%; box-sizing: border-box; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-media { position: relative; }
.about-frame { aspect-ratio: 3 / 4; background: linear-gradient(135deg, var(--cyan-300) 0%, var(--paper-dim) 100%); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-tag { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 8px; background: var(--paper-card); padding: 10px 14px; border-radius: 24px; font-size: 13px; font-weight: 600; color: var(--teal-700); box-shadow: var(--shadow-card); }
.board-dot { width: 8px; height: 8px; background: var(--teal-700); border-radius: 50%; flex-shrink: 0; }

.about-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); color: var(--teal-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.about-copy p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--teal-900); }
.about-stats span { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations { padding: 96px 0; background: white; width: 100%; box-sizing: border-box; }
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.location-card { background: var(--paper-card); border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 28px; transition: all 0.2s ease; }
.location-card:hover { border-color: var(--cyan-500); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.location-index { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-500); margin-bottom: 10px; }
.location-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--teal-900); margin-bottom: 12px; }
.location-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
  COMPANY PACKAGES
  ============================================================ */
.packages { padding: 96px 0; background: var(--paper); width: 100%; box-sizing: border-box; }
.packages-head { max-width: 620px; }
.package-group + .package-group { margin-top: 72px; }
.package-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.package-kicker { font-family: var(--font-mono); color: var(--cyan-600); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.package-group-head h3 { font-family: var(--font-display); color: var(--teal-900); font-size: clamp(22px, 3vw, 32px); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-card { display: flex; flex-direction: column; min-height: 330px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.package-card-featured { border-color: var(--cyan-500); transform: translateY(-6px); }
.package-card-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.package-card h4 { font-family: var(--font-display); color: var(--teal-900); font-size: 23px; text-transform: capitalize; }
.package-card-top strong { font-family: var(--font-display); color: var(--orange-dark); font-size: 26px; white-space: nowrap; }
.package-card ul { display: grid; gap: 8px; margin: 20px 0; padding-left: 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.35; }
.package-card li::marker { color: var(--cyan-500); }
.package-note { margin-top: auto; color: var(--ink-soft); font-size: 13px; }
.package-link { margin-top: auto; padding-top: 16px; color: var(--teal-700); font-size: 13px; font-weight: 700; }
.package-link:hover { color: var(--orange-dark); }
.package-pro { margin-top: 18px; padding: 22px; color: white; background: linear-gradient(110deg, var(--teal-900), #26108a 52%, #e00669); border-radius: var(--radius-md); }
.package-pro > span { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.pro-grid > div { padding: 16px; background: rgba(255,255,255,.1); border-radius: 8px; }
.pro-grid b, .pro-grid strong { display: block; font-family: var(--font-display); }
.pro-grid b { color: var(--cyan-300); font-size: 16px; }
.pro-grid strong { margin: 4px 0 12px; font-size: 24px; }
.pro-grid p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.86); }

.social-links { display: flex; align-items: center; gap: 10px; }
.social-links span { margin-right: 4px; font-size: 12px; color: rgba(255,255,255,.72); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: white; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transition: background .2s ease, transform .2s ease; }
.social-links a:hover { background: var(--cyan-500); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; stroke-width: 1.6; }
.footer-actions { display: flex; align-items: center; gap: 18px; }
.footer-actions .social-links span { display: none; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { padding: 96px 0; background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-800) 100%); width: 100%; box-sizing: border-box; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); color: white; margin: 16px 0; letter-spacing: -0.01em; }
.contact-copy p { font-size: 15px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; margin-bottom: 24px; }
.contact-copy .eyebrow { color: var(--cyan-300); }

.btn-primary { background: var(--orange); color: #221204; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-large { padding: 14px 28px; font-size: 15px; margin-bottom:10px; }

.hours-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); border: 1.5px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-md); padding: 28px; }
.hours-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: white; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.hours-row:last-child { border-bottom: none; }
.hours-highlight { color: var(--cyan-300); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: white; padding: 32px 0; width: 100%; box-sizing: border-box; }
.footer-inner { display: flex; align-items: center; gap: 32px; margin-bottom: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 28px; height: 28px; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 16px; line-height: 1; display: flex; flex-direction: column; }
.brand-word-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; margin-top: 2px; }
.footer-nav { display: flex; gap: 28px; flex-grow: 1; }
.footer-nav a { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.75); transition: color 0.2s ease; }
.footer-nav a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; font-size: 12px; color: rgba(255, 255, 255, 0.6); text-align: center; }

/* Desktop/Tablet - show contact button and FAB */
@media (min-width: 481px) {
  .btn-contact-desktop {
    display: inline-flex !important;
  }
  
  #fab-whatsapp {
    display: flex !important;
  }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-drawer {
    display: flex;
  }

  .wrap { padding-inline: 16px; }
  
  .header-inner { gap: 16px; font-size: 14px; }
  .brand-word { font-size: 14px; }
  
  .hero { height: 80vh; }
  .hero-content { width: 90%; }
  
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-frame { aspect-ratio: 1 / 1; }
  .about-stats { grid-template-columns: 1fr; }
  
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-nav { justify-content: center; gap: 16px; flex-wrap: wrap; }
  
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .services { padding: 64px 0; }
  .about { padding: 64px 0; }
  .locations { padding: 64px 0; }
  .contact { padding: 64px 0; }
  .packages { padding: 64px 0; }
  
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(20px, 5vw, 28px); }
  
  .location-grid { grid-template-columns: 1fr; }
  .package-grid, .pro-grid { grid-template-columns: 1fr; }
  .package-group-head { display: block; }
  .package-kicker { display: block; margin-bottom: 8px; }
  .package-card-featured { transform: none; }
  .footer-actions { flex-direction: column; gap: 14px; }
  .modal { max-width: 90%; padding: 16px 12px; }
}

@media (max-width: 480px) {
  .header-inner {
    height: 64px;
  }

  .btn-whatsapp:not(.btn-block) {
    padding: 6px 14px;
    font-size: 12px;
  }

  .wrap { padding-inline: 12px; }
  
  .hero { height: 100svh; }
  .hero-content h1 { font-size: clamp(2rem, 6vw, 4rem); }
  .hero-content p { font-size: 0.9rem; }
  
  /* Hide desktop contact button, show FAB */
  .btn-contact-desktop {
    display: none !important;
  }
  
  #fab-whatsapp {
    display: flex !important;
  }
  
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { box-shadow: none; border-color: var(--paper-dim); }
  
  .section-sub { font-size: 14px; }
  .section-head { margin-bottom: 24px; }
  
  .about-copy h2 { font-size: 20px; }
  .about-copy p { font-size: 14px; }
  
  .contact-copy h2 { font-size: 20px; }
  .contact-copy p { font-size: 14px; }
  
  .btn { padding: 10px 14px; font-size: 13px; }
  .btn-large { padding: 12px 18px; }
  
  .footer-brand { font-size: 14px; }
  .footer-nav { gap: 12px; font-size: 12px; }
  
  .location-card { padding: 20px; }
  .location-card h3 { font-size: 18px; }
  
  .modal { max-width: 95%; padding: 12px 10px; }
  .modal-head h3 { font-size: 18px; }
}

/* Desktop view - hide hamburger and drawer */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }

  .nav-drawer {
    display: none !important;
  }
}


