/*
Theme Name: Skyline Healthcare
Theme URI: https://skyline.healthcare
Author: Skyline Healthcare
Author URI: https://skyline.healthcare
Description: Custom multispecialty healthcare theme for Skyline Healthcare in Abingdon, VA. Features pages for Physical Medicine & Rehabilitation, Peptide Therapy, Medical Weight Loss, Regenerative Medicine, Provider Bio, and About.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skyline-healthcare
Tags: healthcare, medical, custom, responsive
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #1a2b3c;
  --slate: #2d4a5e;
  --sky: #4a7fa5;
  --mist: #c8dde9;
  --cream: #f7f4ef;
  --warm-white: #fdfcfa;
  --gold: #b89a5e;
  --gold-light: #d4b87a;
  --text: #1a2b3c;
  --text-light: #5a6e7f;
  --border: #dde8ef;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
}

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,43,60,0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-branding a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-branding a span { color: var(--gold); }

.main-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.main-navigation ul a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-navigation ul a:hover { color: var(--gold-light); }

.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta a:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,60,0.7) 0%, rgba(74,127,165,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(184,154,94,0.1); color: #fff; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.05em; }

.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ── LAYOUT ── */
.section-wrap { padding: 6rem 2rem; }
.section-wrap.bg-cream { background: var(--cream); }
.section-wrap.bg-dark { background: var(--navy); color: #fff; }
.section-wrap.bg-dark p { color: rgba(255,255,255,0.7); }
.section-wrap.bg-dark h2, .section-wrap.bg-dark h3 { color: #fff; }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.75rem; }
p { margin-bottom: 1.2rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image { position: relative; border-radius: 4px; overflow: hidden; }
.col-image img { width: 100%; height: 480px; object-fit: cover; display: block; border-radius: 4px; }
.col-image::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,43,60,0.1); border-color: var(--gold); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--gold); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }

.card-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ── TREATMENT LIST ── */
.treatment-list { list-style: none; margin: 1.5rem 0; }
.treatment-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); color: var(--text); display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.treatment-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 0.45rem; flex-shrink: 0; }

/* ── MISSION BLOCK ── */
.mission-block {
  background: var(--navy);
  color: #fff;
  padding: 4rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.mission-block::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -4rem; left: 1rem;
  line-height: 1;
}

.mission-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* ── BIO CARD ── */
.bio-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 300px 1fr; }
.bio-photo { background: var(--slate); min-height: 400px; position: relative; overflow: hidden; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-info { padding: 3rem; }
.bio-info h2 { font-size: 2rem; margin-bottom: 0.25rem; }
.bio-title { color: var(--gold); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; display: block; }

.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.cred-item label { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.cred-item span { font-size: 0.85rem; color: var(--text); }

/* ── CONDITIONS TAG CLOUD ── */
.conditions-cloud { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.condition-tag { background: #fff; border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; color: var(--text-light); transition: border-color 0.2s, color 0.2s; }
.condition-tag:hover { border-color: var(--gold); color: var(--text); }

/* ── DIFF GRID ── */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.diff-item { padding: 2rem; border-left: 2px solid var(--gold); }
.diff-item h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.diff-item p { font-size: 0.9rem; }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%); padding: 6rem 2rem; text-align: center; color: #fff; }
.cta-section h2 { color: #fff; max-width: 600px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2.5rem; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(74,127,165,0.1); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; color: #fff; line-height: 1.1; max-width: 700px; margin-bottom: 1.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; margin-bottom: 2rem; }

/* ── FOOTER ── */
.site-footer { background: #111e2a; color: rgba(255,255,255,0.5); padding: 3rem 2rem; text-align: center; }
.site-footer .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: #fff; margin-bottom: 1rem; display: block; text-decoration: none; }
.site-footer .footer-logo span { color: var(--gold); }
.site-footer .footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; list-style: none; padding: 0; }
.site-footer .footer-nav a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer .footer-nav a:hover { color: var(--gold); }
.site-footer p { font-size: 0.75rem; margin: 0; }

/* ── STEP GRID ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.step-card { background: #fff; padding: 2rem; border-radius: 4px; border: 1px solid var(--border); position: relative; }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--mist); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; }

/* ── TREATMENT FEATURE ── */
.treatment-feature { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start; background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; margin-bottom: 2rem; }
.treatment-icon-box { background: var(--navy); border-radius: 4px; padding: 1rem; display: flex; align-items: center; justify-content: center; }
.treatment-feature h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

/* ── IMAGE CARD GRID ── */
.image-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; margin-top: 3rem; }
.image-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.image-card img { width: 100%; height: 200px; object-fit: cover; }
.image-card-body { padding: 2rem; }
.image-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.image-card-body p { font-size: 0.9rem; }

/* ── DUAL TREATMENT ── */
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.dual-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.dual-card img { width: 100%; height: 240px; object-fit: cover; }
.dual-card-body { padding: 2.5rem; }

/* ── BORDER LEFT BLOCKS ── */
.border-left-block { border-left: 2px solid var(--gold); padding-left: 1.5rem; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .bio-card { grid-template-columns: 1fr; }
  .bio-photo { min-height: 280px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; }
  .treatment-feature { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .trust-bar { gap: 1.5rem; }
  .mission-block { padding: 2rem; }
  .section-wrap { padding: 4rem 1.5rem; }
}

/* ── WP CORE ── */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
img { max-width: 100%; height: auto; }
a { color: var(--sky); }


/* ── MOBILE NAV ── */

/* Show hamburger only on mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    /* Hide nav by default on mobile */
    .main-navigation {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(20, 34, 48, 0.99);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        padding: 0.5rem 0 1rem;
    }

    /* Show nav when toggled */
    .main-navigation.nav-open {
        display: block;
    }

    /* Reset ul styles */
    .main-navigation .nav-menu,
    .main-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    /* Each link */
    .main-navigation .nav-menu li a,
    .main-navigation ul li a {
        display: block !important;
        padding: 0.85rem 1.75rem !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        background: transparent !important;
        transition: color 0.2s, background 0.2s !important;
    }

    .main-navigation .nav-menu li a:hover,
    .main-navigation ul li a:hover {
        color: #d4b87a !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    /* Book Now button in mobile menu */
    .main-navigation .nav-cta a,
    .main-navigation ul .nav-cta a {
        margin: 0.75rem 1.75rem 0 !important;
        display: block !important;
        text-align: center !important;
        background: #b89a5e !important;
        color: #1a2b3c !important;
        border-radius: 2px !important;
        border-bottom: none !important;
        font-weight: 500 !important;
        padding: 0.75rem 1.5rem !important;
    }

    .main-navigation .nav-cta a:hover,
    .main-navigation ul .nav-cta a:hover {
        background: #d4b87a !important;
        color: #1a2b3c !important;
    }

    /* Other responsive fixes */
    .trust-bar { gap: 1.5rem; }
    .mission-block { padding: 2rem; }
    .section-wrap { padding: 4rem 1.5rem; }
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-item label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-detail-item span {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-detail-item span a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-item span a:hover { color: var(--gold); }

.map-embed {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ── CONTACT FORM ── */
.skyline-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row { display: flex; gap: 1.25rem; }
.two-col-form > .form-group { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,154,94,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab8c2; }

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e7f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-consent .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

/* Success/error messages */
.form-success {
    background: #f0f9f0;
    border: 1px solid #7bc47b;
    border-radius: 4px;
    padding: 0;
    color: #2d6b2d;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.form-error {
    background: #fff5f5;
    border: 1px solid #e07b7b;
    border-radius: 4px;
    padding: 0;
    color: #8b2020;
    font-size: 0.95rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row.two-col-form { flex-direction: column; gap: 1.25rem; }
}


/* ── BOOKING MODAL ── */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.78);
    z-index: 9999;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.booking-modal-overlay.is-visible {
    display: flex;
}
.booking-modal-overlay.is-open {
    opacity: 1;
}
.booking-modal {
    background: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 980px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.3s ease;
    overflow: hidden;
    margin: 0 auto;
}
.booking-modal-overlay.is-open .booking-modal {
    transform: translateY(0) scale(1);
}
.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.75rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.booking-modal-header span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.04em;
}
.booking-modal-header span em {
    color: var(--gold);
    font-style: italic;
}
.booking-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.65);
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.booking-modal-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.booking-modal-close svg {
    width: 22px;
    height: 22px;
    display: block;
}
.booking-modal-body {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.booking-modal-body iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.booking-modal-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    gap: 1rem;
    z-index: 2;
}
.booking-modal-loading p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}
.booking-spinner {
    width: 38px;
    height: 38px;
    border: 2px solid var(--mist);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: skyline-spin 0.75s linear infinite;
}
@keyframes skyline-spin {
    to { transform: rotate(360deg); }
}
.booking-modal-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    gap: 1.25rem;
    background: var(--cream);
}
.booking-modal-fallback p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 420px;
    margin: 0;
}
@media (max-width: 600px) {
    .booking-modal {
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }
}
