:root {
  --color-bg: #fbfcfd;            /* clean off-white, slight cool tint */
  --color-surface: #ffffff;
  --color-surface-alt: #eef2f7;   /* very light cool gray, complements navy */
  --color-ink: #0d1622;            /* deep navy — matches logo body */
  --color-ink-soft: #3a4556;
  --color-muted: #6b7280;
  --color-accent: #1e40af;         /* deep professional blue for primary CTAs */
  --color-accent-hover: #1e3a8a;
  --color-highlight: #7fc8f5;      /* logo sky blue — for accents/eyebrows */
  --color-success: #166534;
  --color-success-bg: #ecfdf5;
  --color-error: #991b1b;
  --color-error-bg: #fef2f2;
  --color-border: #d8dfe8;
  --max-width: 1080px;
  --max-width-narrow: 720px;
  --radius: 8px;
  --radius-lg: 16px;
  --space: 16px;
  --shadow-sm: 0 1px 2px rgba(26,35,50,0.04), 0 1px 4px rgba(26,35,50,0.06);
  --shadow-md: 0 4px 12px rgba(26,35,50,0.06), 0 2px 4px rgba(26,35,50,0.04);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--color-accent); transition: color 0.15s ease; }
a:hover { color: var(--color-accent-hover); }

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

/* ----- Layout ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 64px 0; }
.section + .section { padding-top: 0; }
.section.cta { padding: 80px 0; }

/* ----- Header ----- */
header.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.site-header .logo img {
  height: 130px;
  width: auto;
  display: block;
}
.site-header .logo .logo-text-fallback { display: none; } /* shown if logo image fails */
.site-header .logo .logo-accent { color: var(--color-accent); }
.site-header nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-header nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--color-accent); }
.site-header .header-phone {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
  font-size: 15px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px 8px;
  }
  .site-header .logo img {
    height: 72px;
  }
  .site-header nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: 22px;
    font-size: 14px;
    padding-top: 2px;
  }
  .site-header .header-phone {
    font-size: 14px;
  }
}

/* ----- Footer ----- */
footer.site-footer {
  background: var(--color-ink);
  color: #d8d4c8;
  margin-top: 80px;
  padding: 36px 0;
  font-size: 14px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.site-footer-grid > div:last-child { text-align: right; }
@media (max-width: 600px) {
  .site-footer-grid > div:last-child { text-align: left; }
}
@media (max-width: 600px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* ----- Typography ----- */
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-ink);
}
h1 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 16px; font-weight: 800; }
h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 16px; font-weight: 700; }
h3 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }
p { margin: 0 0 16px; max-width: 65ch; font-size: 15px; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
/* Logo sky-blue eyebrow variant when on dark or strongly-contrasted backgrounds */
.eyebrow-sky { color: var(--color-highlight); }
.lede { font-size: 16px; color: var(--color-ink-soft); max-width: 60ch; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }
.muted { color: var(--color-muted); font-size: 14px; }

/* ----- Hero ----- */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(circle at 20% 0%, rgba(127,200,245,0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(13,22,34,0.04), transparent 60%),
    var(--color-bg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  color: var(--color-muted);
  font-size: 14px;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item::before { content: "✓"; color: var(--color-accent); font-weight: bold; }

/* ----- Cards ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 8px; }
.card .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 12px 0 4px;
}
.card .deposit { font-size: 13px; color: var(--color-muted); }

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testimonial p { font-style: italic; color: var(--color-ink-soft); margin-bottom: 12px; }
.testimonial cite { color: var(--color-muted); font-size: 14px; font-style: normal; font-weight: 600; }

/* ----- About section ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Forms ----- */
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--color-ink); }
.field .hint { font-size: 13px; color: var(--color-muted); margin-top: 6px; }

input[type=text], input[type=tel], input[type=email],
input[type=date], select, textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194,65,12,0.12);
}
textarea { min-height: 100px; resize: vertical; font-family: inherit; }

button, .btn {
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 22px;
  background: var(--color-ink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease, transform 0.05s ease;
}
button:hover:not(:disabled), .btn:hover { background: #0d1622; }
button:active:not(:disabled), .btn:active { transform: translateY(1px); }
button:disabled { background: #9ca3af; cursor: not-allowed; }

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
}
.btn-secondary:hover { background: var(--color-ink); color: #fff; }

/* ----- Messages ----- */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin: 12px 0;
  font-size: 14px;
  border-left: 4px solid currentColor;
}
.alert-success { background: var(--color-success-bg); color: var(--color-success); }
.alert-error   { background: var(--color-error-bg);   color: var(--color-error); }

/* ----- Booking-specific ----- */
.zip-row { display: flex; gap: 8px; align-items: stretch; }
.zip-row input { flex: 1; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin: 8px 0 16px;
}
.slot-button {
  padding: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-ink);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
}
.slot-button:hover:not(:disabled) { border-color: var(--color-accent); transform: translateY(-1px); }
.slot-button.selected {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.slot-button:disabled { opacity: 0.4; cursor: not-allowed; }

#card-container {
  min-height: 90px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  margin-bottom: 12px;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 99px;
  background: var(--color-surface);
  margin-bottom: 12px;
}

.terms-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 14px;
  background: var(--color-surface-alt);
  padding: 14px;
  border-radius: var(--radius);
}
.terms-checkbox input { margin-top: 4px; flex-shrink: 0; }

.collapsed { display: none; }

/* ----- Pricing table ----- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table th { background: var(--color-surface-alt); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ----- Instagram feed ----- */
.insta-section { background: var(--color-surface-alt); }
.insta-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}
.insta-placeholder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 24px;
  text-decoration: none;
}
@media (max-width: 720px) { .insta-placeholder { grid-template-columns: repeat(3, 1fr); } }
.insta-tile {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f4f0e8, #e5e0d4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid var(--color-border);
}
.insta-placeholder:hover .insta-tile { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ----- Trust strip ----- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 32px 0;
}
.trust-item { text-align: center; }
.trust-item .trust-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}
.trust-item .trust-label {
  font-size: 13px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
