/* Ensure `p.lead` has 10px space below (reduces gap to photo) */
.lead { margin-bottom: 10px; }
:root{
  --bg: #ffffff;
  --card: #f7f7f8;
  --accent: #0b0b0b;
  --muted: #6b6b6b;
  --text: #0b0b0b;
  --gutter: 24px;
  --glass: rgba(255,255,255,0.8);
  --shadow: 0 8px 30px rgba(11,11,11,0.06);
  --radius: 12px;
  --container: 1100px;
  --safe-padding: clamp(12px, 3vw, 24px);
  /* Controls sizing variables (can be updated at runtime via JS) */
  --control-min-height: 82px;
  --textarea-min-height: 160px;
  --control-border-width: 6px;
  --faq-border-width: 6px;
}

/* Shared monochrome layout for localized SEO pages. */
.localized-page{margin:0;background:#fff;color:#0b0b0b;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;line-height:1.6}
.localized-container{width:min(1080px,calc(100% - 40px));margin:0 auto}
.localized-header{background:#0b0b0b;color:#fff;border-bottom:1px solid #333}
.localized-header .localized-container{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:18px 0}
.localized-brand,.localized-language a{color:#fff;text-decoration:none}
.localized-brand{font-size:1.05rem;font-weight:800;letter-spacing:.02em}
.localized-language{display:flex;gap:16px;font-size:.9rem;font-weight:700}
.localized-language a{text-decoration:underline;text-underline-offset:3px}
.localized-hero{background:#0b0b0b;color:#fff;padding:88px 0 96px}
.localized-eyebrow{margin:0 0 18px;color:#d0d0d0;font-size:.82rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.localized-hero h1{max-width:860px;margin:0;font-size:clamp(2.2rem,5vw,4.7rem);line-height:1.05;letter-spacing:-.02em}
.localized-lead{max-width:760px;margin:26px 0 0;color:#e5e5e5;font-size:1.12rem;line-height:1.7}
.localized-button{display:inline-block;margin-top:30px;padding:14px 20px;background:#fff;color:#0b0b0b;border:2px solid #fff;border-radius:0;font-weight:800;text-decoration:none}
.localized-button:hover,.localized-button:focus{background:#d0d0d0;border-color:#d0d0d0;color:#0b0b0b}
.localized-section{padding:72px 0}
.localized-section-muted{background:#f0f0f0}
.localized-section h2,.localized-cta h2{margin:0 0 26px;font-size:clamp(1.8rem,3vw,2.8rem);line-height:1.1}
.localized-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.localized-grid article{padding:24px;background:#fff;border:1px solid #bdbdbd}
.localized-grid h3{margin:0 0 10px;font-size:1.15rem}
.localized-grid p,.localized-section p{margin:0;color:#333}
.localized-links{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:24px}
.localized-links a,.localized-footer a{color:#0b0b0b;text-decoration:underline;text-underline-offset:3px;font-weight:700}
.localized-steps{display:grid;gap:16px;margin:0;padding:0;list-style:none;counter-reset:localized-step}
.localized-steps li{counter-increment:localized-step;display:flex;gap:16px;align-items:flex-start;padding:18px 0;border-top:1px solid #bdbdbd;color:#333}
.localized-steps li::before{content:counter(localized-step,decimal-leading-zero);flex:0 0 42px;font-weight:900;color:#0b0b0b}
.localized-section details{padding:18px 0;border-top:1px solid #bdbdbd}
.localized-section summary{cursor:pointer;font-weight:800}
.localized-section details p{margin-top:12px;max-width:760px}
.localized-cta{padding-top:72px;padding-bottom:88px}
.localized-cta p{color:#333}
.localized-footer{padding:26px 0;background:#0b0b0b;color:#d0d0d0;font-size:.9rem}
.localized-footer p{margin:0 0 8px}.localized-footer a{color:#fff}
@media (max-width:720px){
  .localized-container{width:min(100% - 28px,1080px)}
  .localized-header .localized-container{align-items:flex-start;flex-direction:column;gap:10px}
  .localized-hero{padding:58px 0 64px}.localized-hero h1{font-size:clamp(2rem,11vw,3.2rem)}
  .localized-lead{font-size:1rem}.localized-section{padding:52px 0}.localized-grid{grid-template-columns:1fr}
  .localized-button{width:100%;text-align:center}
}



*{box-sizing:border-box}
html{font-size:16px;-webkit-text-size-adjust:100%;text-size-adjust:100%}
html,body{height:100%}
html{margin:0;padding:0}
body, main, section, article, aside, div, form, header, footer, nav{min-width:0}
body{
  display:flex;
  flex-direction:column;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  margin:0;
  padding:0;
  min-height:100dvh;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  font-size:clamp(0.95rem, 2.2vw, 1rem);
  line-height:1.55;
  overflow-wrap:anywhere;
  word-break:break-word;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img,svg,video{max-width:100%;height:auto;display:block}
a,button,input,textarea,select{font:inherit}
h1,h2,h3,p,ul,ol{max-width:100%;overflow-wrap:anywhere}
h2{
  text-align:center;
  font-size:clamp(1.2rem, 3.3vw, 2.2rem);
  margin:8px 0 12px;
  font-weight:800;
  line-height:1.2;
}
.site-header{
  position:sticky;
  top:0;
  left:0;
  right:0;
  width:100vw;
  margin-left:calc(50% - 50vw);
  z-index:100;
  background:transparent;
  color:#fff;
  padding:23px 0;
  margin-top:0;
  box-sizing:border-box;
  transition:opacity .35s ease,color .35s ease,border-color .25s ease,box-shadow .25s ease;
  will-change: opacity;
}
.site-header--light{
  color:#000;
  box-shadow:none; /* remove shadow when fading to avoid residual glow */
  opacity: 0; /* fade entire header to remove remaining artifacts */
  pointer-events: none;
}
.site-header__inner{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:16px;
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  padding:0 var(--safe-padding);
  box-sizing:border-box;
}

/* fade the header content (text) together with the overlay */
.site-header__inner{
  position:relative;
  z-index:2;
  transition: opacity .35s ease;
}

.site-header.site-header--light .site-header__inner{
  opacity: 0;
}

/* schedule / hours under the phone — match phone spacing for symmetry */
.site-header__hours{
  margin-top:6px;
  font-size:1rem;
  color:#fff;
  line-height:1.2;
}

@media (max-width:1206px){
  .site-header__hours{font-size:0.95rem;margin-top:4px}
}

/* overlay used for smooth fade between dark and light header */
.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}

.site-header__inner{position:relative;z-index:2}

/* fade overlay out when header becomes light */
.site-header.site-header--light::before{opacity:0}
.main-content{
  padding-top:0;
}
.site-header__brand{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:normal;
}
.site-header__title,
.site-header__phone{
  transition:color .25s ease,background-color .25s ease,border-color .25s ease;
}
.site-header--light .site-header__title,
.site-header--light .site-header__phone{
  color:#000;
}

.site-header__title{
  display:block;
  font-size:clamp(1.5rem, 5vw, 3.2rem);
  line-height:0.95;
  font-weight:900;
  letter-spacing:normal;
  text-transform:uppercase;
  margin: 0;
}

.site-header__phone{margin-top:6px}
.site-header__phone{
  color:#ffffff;
  font-size:clamp(1.2rem, 3.5vw, 2.3rem);
  font-weight:800;
  text-decoration:none;
  letter-spacing:0.05em;
}
.site-header__phone:hover{
  text-decoration:underline;
}
main{flex:1}
.container{max-width:var(--container);margin:0 auto;padding:0 var(--safe-padding)}


.hero{padding:clamp(10px, 3vw, 20px) var(--safe-padding) clamp(20px, 5vw, 32px)}
.hero-grid{display:grid;grid-template-columns:1fr;gap:32px;align-items:start;justify-content:center}
.hero-copy{width:100%;margin:0 auto}
.hero-copy-text{max-width:760px}
/* Ensure hero heading sticks to the left on all screen sizes */
.hero-copy-text h2{
  text-align:left;
  margin-left:0;
}
#services{padding-left:30px;padding-right:30px}
.hero-card{width:100%;max-width:360px;margin:0}
.hero-copy .eyebrow{color:var(--accent);font-weight:600;white-space:normal;overflow-wrap:anywhere;word-break:break-word;}
.hero-copy h1{font-size:3.3rem;margin:8px 0 12px;font-weight:900}
.hero-copy h2{font-size:1.8rem;margin:0 0 16px;}
@media (min-width:1207px){
  .hero-copy-text h2{
    text-align:left;
    margin-left:0;
  }
}
/* Smaller hero headings on narrow screens */
@media (max-width:1206px) {
  .hero-copy-text h1,
  .hero-copy-text h2,
  .hero-copy-text h3 {
    font-size: 2rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-copy-text h3 {
    margin: 0 0 10px;
  }
  .hero-copy-text h2 {
    font-size: 1.2rem;
  }
  .hero-copy-text .lead {
    text-align: left;
  }
  .hero-copy-text { padding-left: 12px; padding-right: 12px; }
}
.lead{color:var(--muted);line-height:1.55}
.hero-actions{margin-top:0;display:flex;flex-direction:column;align-items:flex-start;gap:24px}
.hero-media{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:32px;align-items:start;width:100%}
.hero-buttons{display:flex;flex-wrap:wrap;align-items:center;gap:12px}
.hero-image{width:100%;height:auto;min-width:0;max-width:100%;border-radius:24px;object-fit:cover;border:none;box-shadow:0 18px 50px rgba(11,11,11,0.12);margin-bottom:8px}
.hero-card{width:100%;max-width:360px;margin:0}
.hero-card h3{
  text-align:center;
  /* Slightly reduced heading to better fit mobile */
  font-size: 1.25rem; /* ~20px */
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
}
.btn, .btn, button, input[type=submit]{display:inline-flex;align-items:center;justify-content:center;height:96px;min-height:96px;padding:0 28px;border-radius:12px;text-decoration:none;line-height:1.35;box-sizing:border-box;font-weight:600;font-size:1.35rem;border:none}
.btn{min-width:92px}
.btn-primary{background:var(--text);color:#fff;font-weight:600;font-size:1.35rem}
.btn-secondary{background:transparent;border:6px solid rgba(11,11,11,0.06);color:var(--text);margin-left:8px}

button.calendar-day, .calendar-day{height:auto !important;min-height:0 !important;}
.trust-list{display:flex;gap:14px;margin-top:14px;list-style:none;padding:0}
.trust-list li{color:var(--muted)}

/* Booking wrapper: button above the trust-list */
.booking{display:flex;flex-direction:column;align-items:center;gap:12px;width:100%;margin-top:0}
.booking .hero-buttons{width:100%;display:flex;flex-direction:column;gap:12px;align-items:center;margin-bottom:8px}
.booking .trust-list{margin-top:0;justify-content:flex-start;order:2;width:100%}
.booking .trust-list li{justify-content:center}
.booking .hero-buttons .btn{width:100%;max-width:720px}

@media (min-width:900px){
  .booking{flex-direction:column}
  .booking .hero-buttons{flex-direction:row;justify-content:flex-start}
  .booking .hero-buttons .btn{width:auto;min-width:180px}
  .booking .trust-list{flex-direction:row;justify-content:flex-start}
}

/* Mobile-only booking copy: hide by default, show on small screens */
.booking--mobile{display:none}

@media (min-width: 1207px) {
  .site-header__inner {
    position: relative;
  }

}

/* On large screens, pull the phone and hours visually closer to the brand */
@media (min-width:1207px){
  .site-header{
    padding-top:12px; /* slightly reduce top padding so content sits higher */
    padding-bottom:18px;
  }
  .site-header__brand{
    gap:6px; /* keep compact vertical spacing */
  }
  .site-header__phone{
    margin-top:0; /* remove extra gap */
    transform:translateY(-6px); /* visually lift closer to the title */
  }
  .site-header__hours{
    margin-top:2px;
    transform:translateY(-4px);
    font-size:0.95rem;
  }
}

@media (max-width: 1206px) {
  .site-header__inner {
    justify-content: center;
    align-items: center;
  }
  .site-header__brand {
    align-items: center;
    text-align: center;
    line-height: 1;
    gap: 6px;
  }
  .hero-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-card {
    max-width: 100%;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-copy-text {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy h1 {
    font-size: 2.6rem;
    line-height: 1.05;
  }
  .hero-copy .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    margin: 0 0 16px;
    font-size: 0.95rem;
  }
}

@media (max-width:768px){
  .hero{padding:8px 8px 18px}
  .section{padding:24px 0}
  .booking-section{padding-top:12px;padding-bottom:12px}
}

/* Reduce FAQ question size on small screens for better fit */
@media (max-width:600px) {
  .faq-question,
  .faq-title {
    font-size: 1rem; /* 16px */
    line-height: 1.4;
    font-weight: 600;
  }
}

@media (max-width:1206px){
  .booking{display:none}
  .booking--mobile{display:block;width:100%;margin-top:-12px}
  .booking--mobile .hero-buttons{display:flex;flex-direction:column;gap:12px;align-items:center}
  .booking--mobile .hero-buttons .btn{width:100%;max-width:none}
  .booking--mobile .trust-list{justify-content:center;flex-wrap:wrap;align-items:center;margin-left:auto;margin-right:auto}
  .booking--mobile .trust-list li{flex-basis:calc(33.333% - 10px);text-align:center}
  .booking--mobile .btn-secondary{display:none}
  .hero-copy h1{font-size:2rem}
  .hero-copy h2{font-size:1.6rem}
}
.hero-card{background:linear-gradient(180deg,var(--card),#ffffff);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}
.stat-card{display:flex;align-items:center;justify-content:space-between;padding:12px 0;border-bottom:1px solid rgba(11,11,11,0.06);min-height:48px}
.stat-card strong{display:flex;align-items:center;font-size:1.125rem}
/* tighten icon sizes inside the stat cards */
.stat-card svg{width:20px;height:20px;flex:0 0 20px;display:block}
.section{padding-block: clamp(24px, 6vw, 48px);}
.section.container{padding-inline: var(--safe-padding);}
.section-heading .eyebrow{color:var(--accent);font-weight:600}

/* Section subheading converted to paragraph: match previous h3 styling */
.section-heading .section-subheading,
.section-heading p {
  /* Match `p.lead` visual style */
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1rem;
  font-weight: 400;
}
#faq{padding-left:5px;padding-right:5px}
#faq .section-heading{text-align:center}
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:18px}
.info-card{background:var(--card);padding:18px;border-radius:10px}
.booking-section .booking-grid{display:grid;grid-template-columns:1fr;gap:20px;align-items:start;max-width:760px;margin:0 auto}
.booking-section .booking-grid > div{padding:5px;box-sizing:border-box}
.booking-section h3{padding-left:8px;padding-right:8px}
.booking-card{--calendar-gap:10px;background:var(--card);padding:18px;border-radius:0;box-shadow:var(--shadow);width:100%;max-width:100%;min-width:0}
.calendar-toolbar{display:flex;align-items:center;justify-content:space-between}
.weekdays{display:grid;grid-template-columns:repeat(7,1fr);margin-top:12px;color:var(--muted);font-weight:600}
.calendar-days{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:var(--calendar-gap);margin-top:8px;width:100%}
.calendar-day{position:relative;padding:0;background:var(--text);border-radius:0;text-align:center;color:#fff;cursor:pointer;display:grid;place-items:center;width:100%;aspect-ratio:1/1;border:none;height:auto;min-height:0;line-height:1.1;font-size:clamp(0.9rem,1.6vw,1.1rem)}
.calendar-day.inactive{
  background: transparent;
  color: #000; /* make past days text black */
  opacity: 1;
  border: none;
  box-shadow: none;
  aspect-ratio: 1/1;
  min-height: 72px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
}
.calendar-day.today{outline:none;outline-offset:0}
.calendar-day.selected::after,
.calendar-day.today.selected::after{content:"";position:absolute;inset:clamp(4px,0.8vw,10px);border:clamp(1px,0.25vw,3px) dashed rgba(255,255,255,0.95);pointer-events:none;z-index:1}

/* icon buttons (prev/next) styled like calendar days */
.icon-btn{display:inline-grid;place-items:center;aspect-ratio:1/1;width:calc((100% - (var(--calendar-gap) * 6)) / 7);height:auto;min-width:0;min-height:0;padding:0;border:none;background:var(--text);color:#fff;border-radius:0;cursor:pointer;font-size:1.05rem;line-height:1}
.icon-btn:focus{outline:6px solid rgba(255,255,255,0.12);outline-offset:3px}

/* Footer alignment fixes: separate the top links row from the bottom contact/credit row */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-links {
  text-align: left !important;
  width: 100%;
  margin: 0 16px;
  padding: 0 8px;
}
.footer-contact,
.footer-credits {
  text-align: center;
  width: 100%;
}

/* Keep contact details above the long location links list. */
.footer-contact { order: 1; margin-top: 14px; }
.footer-links { order: 2; }


/* Enforce H2 larger than H3 at all viewports */
:root{
  --h2: clamp(1.4rem, 4vw, 2.4rem);
  --h3: clamp(1rem, 2.2vw, 1.6rem);
}

/* Base heading sizes use variables to guarantee relationship */
h2{font-size:var(--h2) !important;}
h3{font-size:var(--h3) !important;}

/* Ensure component-specific selectors follow the same variables */
.hero-copy h2, .hero-copy-text h2{font-size:var(--h2) !important;}
.hero-card h3, .hero-copy-text h3, .booking-section h3{font-size:var(--h3) !important;}

/* Force hero card h3 to be smaller than h2 even when other rules are specific */
.hero-card h3{font-size:var(--h3) !important; font-weight:700 !important;}

/* Ensure h2 inside hero always larger via very specific selector */
main.main-content section.hero .hero-copy-text h2,
main.main-content section.hero .hero-copy h2,
.hero-copy-text > h2{
  font-size:var(--h2) !important;
  line-height:1.12 !important;
}

.icon-btn[aria-label]{-webkit-appearance:none;-moz-appearance:none;appearance:none}

/* make toolbar spacing accommodate larger icon buttons */
.calendar-toolbar h3{margin:0;font-size:1rem;text-align:center}
.calendar-toolbar{gap:8px}
.time-slots{margin-top:24px;display:flex;flex-wrap:nowrap;justify-content:center;align-items:center;gap:8px;overflow-x:auto;padding-bottom:4px}
.time-chip{display:inline-grid;place-items:center;background:#000000;color:#ffffff;padding:6px 12px;border-radius:999px;cursor:pointer;border:none;font-weight:700;font-size:clamp(0.95rem,1.6vw,1.15rem);line-height:1;text-decoration:none;white-space:nowrap;height:auto;min-height:44px}
.time-chip::before{content:none}
.time-chip:hover{background:#000000}
.time-chip:focus{outline:none}
/* Disabled/soon slots: visually crossed-out and non-interactive */
.time-chip.disabled-future{
  pointer-events: none;
  text-decoration: line-through;
  text-decoration-thickness: 3px; /* thicker strike-through */
  text-decoration-color: #ffffff;
  background: #000 !important; /* keep slot black */
  color: #ffffff !important;
  cursor: default;
}
.time-chip.disabled-future:hover{background: #000}
/* Selected state for time chip when user clicks a slot */
.time-chip.selected{background:#ffffff;color:#000000;border:none}
.intake-form{margin-top:0.5rem;background:var(--card);padding:12px;border-radius:10px}
.intake-form h4{margin:0 0 12px;font-size:2.4rem;text-align:center;color:var(--text);font-weight:700}
.intake-form .form-row{margin-bottom:8px}
.intake-form label{display:block;font-size:0.95rem;color:var(--text);text-transform:uppercase}
.intake-form input{width:100%;padding:16px 12px;border-radius:12px;border:var(--control-border-width) solid #000;margin-top:6px;height:var(--control-min-height);min-height:0;box-sizing:border-box;resize:vertical;font-size:1.35rem;background:#fff;color:#0b0b0b;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;font-weight:600;text-transform:uppercase}
.field-with-hint .field-wrapper{position:relative}
.field-with-hint .input-hint{position:absolute;right:58px;top:0;bottom:0;margin:auto 0;color:#0b0b0b;font-size:1.35rem;font-weight:600;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;pointer-events:none;white-space:nowrap;line-height:1.35rem;height:1.35rem}
.field-with-hint .field-wrapper input{padding-right:150px}

/* Ensure all labels are displayed in the primary text color (black) */
label{color:var(--text)}
/* Make form labels bold for better readability */
.intake-form label, .booking-card .intake-form label { font-weight: 700; }
.intake-form textarea{width:100%;padding:16px 12px 32px;border-radius:12px;border:var(--control-border-width) solid #000;margin-top:6px;min-height:var(--textarea-min-height);resize:vertical;font-size:1.35rem;background:#fff;color:#0b0b0b;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;font-weight:600;line-height:1.4}
.custom-select-wrapper{width:100%;margin-top:6px}
.custom-select{position:relative;width:100%;background:#fff;border:var(--control-border-width) solid #000;border-radius:12px;cursor:pointer;height:var(--control-min-height);min-height:var(--control-min-height);display:flex;align-items:center;transition:left .18s ease,width .18s ease}
.custom-select.open{left:0;width:100%;border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
.custom-select-header,
.custom-option{
  width:100%;
  box-sizing:border-box;
  font-size:1.35rem;
  color:#0b0b0b;
  font-weight:600;
  line-height:1.2;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
.custom-select-header{
  position:relative;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  padding:16px 44px 16px 12px;
  height:100%;
  min-height:0;
  transition:padding .18s ease,width .18s ease,left .18s ease;
}
.custom-select.open .custom-select-header{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width:auto;
  padding-left:18px;
  padding-right:46px;
  flex-shrink:0;
}
.custom-select-header::after{content:"";position:absolute;right:14px;top:50%;width:0;height:0;transform:translateY(-50%);border-left:10px solid transparent;border-right:10px solid transparent;border-top:12px solid #000}
.custom-select:focus-visible .custom-select-header{outline:3px solid rgba(0,0,0,0.15);outline-offset:2px;}
.custom-select.open .custom-select-header::after{transform:translateY(-50%) rotate(180deg)}
.custom-select-dropdown{display:none;position:absolute;top:calc(100% - var(--control-border-width));left:calc(-1 * var(--control-border-width));right:calc(-1 * var(--control-border-width));min-width:calc(100% + calc(2 * var(--control-border-width)));background:#fff;border:var(--control-border-width) solid #000;border-top:none;border-radius:0 0 12px 12px;z-index:1000;max-height:none;overflow-y:auto;box-shadow:0 12px 30px rgba(11,11,11,0.08);box-sizing:border-box}
.custom-select.open .custom-select-dropdown{display:block}
.custom-option{display:block;padding:16px 12px;cursor:pointer;white-space:nowrap;outline:none;}
.custom-option:hover,.custom-option:focus{background:#f0f0f0;}
.custom-option[aria-selected="true"],.custom-option.selected{background:#000;color:#fff;font-weight:600}

/* New elastic brand banner */
.brand-banner{
  position:static;
  width:100%;
  background:#000;
  padding-block:clamp(12px, 2vw, 18px);
  box-sizing:border-box;
}
.brand-banner__inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding-inline:clamp(16px, 4vw, 48px);
  width:100%;
  max-width:none;
  margin:0 auto;
  text-align:center;
}

.brand-banner__left{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:100%;
  min-width:0;
}
.brand-banner{
  position:static;
  width:100%;
  background:#000;
  padding-block:clamp(12px, 2vw, 18px);
  box-sizing:border-box;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
.brand-banner__inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding-inline:clamp(16px, 4vw, 48px);
  width:100%;
  max-width:none;
  margin:0 auto;
  text-align:center;
}

.brand-banner__left{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:100%;
  min-width:0;
}
.brand-banner__title{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  margin:0;
  font-weight:900;
  text-transform:uppercase;
  line-height:1;
  font-size:clamp(2.4rem, 6vw, 7.5rem);
  overflow:visible;
  white-space:nowrap;
  overflow-wrap:normal;
  word-break:keep-all;
  color:#fff;
  letter-spacing:0.04em;
}
.brand-banner__contact{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:8px;
}
.brand-banner__phone{
  font-weight:900;
  color:#fff;
  text-decoration:none;
  font-size:clamp(1.2rem,3.5vw,2.2rem);
  letter-spacing:0.08em;
}
.brand-banner__hours{
  font-weight:900;
  color:#fff;
  text-align:left;
  font-size:clamp(1.2rem,3.5vw,2.2rem);
  letter-spacing:0.08em;
  width:auto;
}

@media (max-width: 600px){
  .brand-banner__inner{ padding-inline:16px; }
  .brand-banner__contact{
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
    width:100%;
    max-width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .brand-banner__phone,
  .brand-banner__hours {
    white-space:nowrap;
    min-width:0;
    flex:0 0 auto;
    font-size:clamp(0.85rem, 3vw, 1.1rem);
  }
  .brand-banner__hours { text-align:center; }
  .brand-banner__title{ font-size:clamp(1.6rem, 8vw, 3.5rem); }
}
.notes-field{position:relative;margin-top:6px}
.notes-field::after{content:"";position:absolute;right:8px;bottom:8px;width:18px;height:18px;background:linear-gradient(135deg, transparent 0 50%, rgba(11,11,11,0.28) 50% 56%, transparent 56% 100%);pointer-events:none;border-bottom-right-radius:6px}

.attachment-dropzone{margin-top:8px;border:var(--control-border-width) dashed #000;border-radius:16px;padding:18px;background:#fff;cursor:pointer;display:flex;flex-direction:column;gap:10px;align-items:center;text-align:center;min-height:132px;justify-content:center;position:relative;overflow:hidden;transition:transform .22s ease, background-color .22s ease, box-shadow .22s ease}
.attachment-dropzone::before{content:"";position:absolute;inset:-1px;border-radius:inherit;background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.75) 50%, transparent 100%);transform:translateX(-125%);transition:transform .55s ease;pointer-events:none}
.attachment-dropzone::after{content:"";position:absolute;inset:10px;border:2px solid rgba(0,0,0,.12);border-radius:12px;opacity:0;transform:scale(.97);transition:opacity .22s ease, transform .22s ease;pointer-events:none}
.attachment-dropzone:hover::before,.attachment-dropzone.drag-active::before{transform:translateX(125%)}
.attachment-dropzone:hover,.attachment-dropzone.drag-active{transform:translateY(-2px) scale(1.01);border:var(--control-border-width) dashed #000;box-shadow:0 12px 26px rgba(11,11,11,.12);background:#f8f8f8;color:#000}
.attachment-dropzone:hover .attachment-dropzone__content strong,
.attachment-dropzone:hover .attachment-dropzone__content p,
.attachment-dropzone.drag-active .attachment-dropzone__content strong,
.attachment-dropzone.drag-active .attachment-dropzone__content p{color:#000}
.attachment-dropzone.drag-active .attachment-dropzone__icon{animation:attachment-bounce .75s ease infinite}
.attachment-dropzone.has-files{border:var(--control-border-width) dashed #000;background:#fff;color:#000}
.attachment-dropzone.has-files:hover,.attachment-dropzone.has-files.drag-active{transform:translateY(-1px);border:var(--control-border-width) dashed #000;background:#fff;box-shadow:0 8px 18px rgba(11,11,11,.08)}
.attachment-dropzone.has-files .attachment-dropzone__content p,.attachment-dropzone.has-files .attachment-status{color:rgba(11,11,11,0.8)}
.attachment-dropzone__icon{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#fff;color:#000;box-shadow:0 8px 20px rgba(11,11,11,0.12);font-size:1.25rem;transition:transform .22s ease, box-shadow .22s ease}
.attachment-dropzone:hover .attachment-dropzone__icon{transform:translateY(-2px);box-shadow:0 10px 24px rgba(11,11,11,.16)}
.attachment-dropzone__icon svg{width:20px;height:20px;fill:currentColor;display:block}
.attachment-input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Ensure the hidden file input remains visually hidden and does not capture layout
   (override more general input rules that may apply within .intake-form) */
.attachment-dropzone .attachment-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}
.attachment-dropzone__content strong{display:block;font-size:1rem;font-weight:700}
.attachment-dropzone__content p{margin:4px 0 0;color:var(--muted);font-size:0.92rem;line-height:1.4}
.attachment-status{font-size:0.9rem;color:var(--muted);font-weight:600}
.attachment-list{list-style:none;padding:0;margin:8px 0 0;display:grid;gap:6px}
.attachment-list li{width:100%;min-height:var(--control-min-height);height:var(--control-min-height);padding:18px 16px 18px 56px;border-radius:12px;border:none;background:#d4d4d4;font-size:1.35rem;color:var(--text);font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;font-weight:600;display:flex;justify-content:flex-start;gap:8px;align-items:center;position:relative;box-sizing:border-box;animation:attachment-file-in .24s ease both;transition:background-color .18s ease, transform .18s ease}
.attachment-file--uploaded::before{content:"✓";color:#000;font-weight:900;font-size:1.1rem;position:absolute;left:16px;top:50%;transform:translateY(-50%);}
.attachment-file--uploaded:hover::before{opacity:0}
.attachment-list li:hover{background:#c9c9c9;transform:translateX(2px)}
.attachment-list li span{flex:1 1 0;font-weight:600;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.attachment-list li small{margin-right:8px;flex:0 0 auto;}
.attachment-file--uploading{background:#efefef}
.attachment-file--uploading small{font-weight:800}
.attachment-file--uploaded{background:#d8d8d8}
.attachment-file--uploaded small{color:transparent;}
/* Removed duplicate pseudo-element cross on hover; use .attachment-remove button instead */
.attachment-file--error{background:#fff;border:var(--control-border-width) solid #000}
.attachment-file--error small{color:#000;text-transform:uppercase;letter-spacing:0;font-weight:900}
.attachment-remove{position:relative;margin-left:auto;background:transparent;border:none;color:#000;font-size:1.2rem;font-weight:900;cursor:pointer;padding:6px 10px;border-radius:8px;opacity:1;display:flex;align-items:center;justify-content:center;transition:transform .18s ease, color .18s ease;z-index:1}
.attachment-remove:hover{background:transparent}
.attachment-file--uploaded .attachment-remove,
.attachment-list li:hover .attachment-remove,
.attachment-list li:active .attachment-remove,
.attachment-list li:focus-within .attachment-remove,
.attachment-remove:focus{transform:scale(1.05)}
@keyframes attachment-bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
@keyframes attachment-file-in{0%{opacity:0;transform:translateY(-6px) scale(.99)}100%{opacity:1;transform:translateY(0) scale(1)}}
@media (prefers-reduced-motion: reduce){
  .attachment-dropzone,
  .attachment-dropzone::before,
  .attachment-dropzone::after,
  .attachment-dropzone__icon,
  .attachment-list li,
  .attachment-remove{animation:none;transition:none}
}
.intake-form textarea{overflow:hidden;box-sizing:border-box;display:block}
.intake-form textarea::-webkit-resizer{display:none}
.intake-form input:focus, .intake-form textarea:focus,
.intake-form input.filled,
.intake-form textarea.filled{border:var(--control-border-width) solid #000;box-shadow:none;outline:none;}
.custom-select.focus .custom-select-header{padding:14px 44px 14px 12px;}
.intake-form input[type=date], .intake-form input[type=time]{color:#0b0b0b;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;font-weight:600;padding:16px 60px 16px 12px;appearance:none;-webkit-appearance:none;-moz-appearance:none;background-repeat:no-repeat;background-position:right 14px center;background-size:24px 24px}

.intake-form input[type=date] { background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='15' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M8 2v4M16 2v4M4 9h16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") }

.intake-form input[type=time] { background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 3' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='square'/%3E%3E%3C/svg%3E") }

.intake-form input[type=date]::-webkit-calendar-picker-indicator, .intake-form input[type=time]::-webkit-calendar-picker-indicator{opacity:0;display:none;width:0;height:0}
/* Placeholder styling: match custom-select header (bold, same font-size) */
.intake-form input::placeholder, .intake-form textarea::placeholder,
.intake-form input::-webkit-input-placeholder, .intake-form textarea::-webkit-input-placeholder,
.intake-form input:-ms-input-placeholder, .intake-form textarea:-ms-input-placeholder,
.intake-form input::-ms-input-placeholder, .intake-form textarea::-ms-input-placeholder {
  font-weight: 600;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.35rem;
  color: rgba(11,11,11,0.65);
  opacity: 1; /* ensure consistent appearance across browsers */
}
.intake-form input[type=date]::-webkit-calendar-picker-indicator,
.intake-form input[type=time]::-webkit-calendar-picker-indicator{filter:brightness(0) saturate(100%);}

/* Keep text aligned consistently in every intake field at every breakpoint. */
.intake-form input, .intake-form textarea{padding-left:12px}
.form-actions{display:flex;gap:8px;margin-top:8px}

/* Make form action buttons match input width inside the intake form */
.intake-form .form-actions{flex-direction:column;align-items:stretch}
.intake-form .form-actions .btn{width:100%;min-width:0;display:block}
.intake-form .form-actions .btn:disabled{cursor:wait;opacity:.62}
.intake-status{margin-top:8px;color:var(--muted);font-size:0.95rem}
.map-actions{display:block;margin-bottom:12px}
.map-actions .btn{display:flex;width:100%;min-width:auto;justify-content:center;align-items:center}
.nearby-card{background:var(--card);padding:18px;border-radius:16px;box-shadow:var(--shadow)}
.nearby-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:12px}
.nearby-status{color:var(--muted);margin:0 0 12px;line-height:1.5}
.nearby-results{display:grid;gap:12px}
.nearby-item{background:#fff;border:2px solid rgba(11,11,11,0.1);border-radius:12px;padding:14px;display:flex;flex-direction:column;gap:8px}
.nearby-item strong{font-size:1.05rem}
.nearby-item small{color:var(--muted)}
.nearby-actions a,.nearby-actions button{height:auto;min-height:48px;padding:12px 16px}
.nearby-map-links{display:flex;flex-wrap:wrap;gap:8px}
.nearby-map-links a{display:inline-flex;align-items:center;justify-content:center;padding:8px 10px;border-radius:999px;background:#000;color:#fff;text-decoration:none;font-weight:600;font-size:0.95rem}

.locations-actions{text-align:center;margin-top:12px}
.inquire-btn{min-width:140px}


/* map marker icon inside stat cards */
.map-icon{width:20px;height:20px;display:inline-block;vertical-align:middle;margin-right:8px;fill:#000}
/* footnote asterisk before labels */
.footnote{font-size:0.8rem;color:var(--muted);vertical-align:super;margin-right:6px}

/* small plus marker left of map icon */
.map-plus{display:inline-grid;place-items:center;width:20px;height:20px;border-radius:50%;background:var(--text);color:#fff;font-weight:700;margin-right:8px;font-size:0.95rem;line-height:1}

/* pill badge for counts */
.badge{display:inline-grid;place-items:center;padding:4px 10px;border-radius:999px;background:var(--text);color:#fff;font-weight:600;font-size:0.95rem;line-height:1;vertical-align:middle;margin-left:8px}
.badge svg{width:1.3em;height:1.3em;display:block;fill:currentColor}
.badge--muted{background:var(--muted);color:#fff}
.hero-card-note{margin-top:10px;color:var(--muted);font-size:0.95rem;line-height:1.5;text-align:right}
.travel-note{font-weight:400;color:var(--text);}
.map-fallback:hover{opacity:0.9}
.map-iframe{width:100%;height:260px;border:0;border-radius:10px}
.footer{padding:20px 0;background:transparent;margin-top:auto}
.footer-content{display:flex;flex-direction:column;align-items:stretch;gap:16px;padding:0 16px}
.footer-content > .btn{width:100%;max-width:100%;display:inline-flex;align-items:center;justify-content:center}
.footer-contact{display:flex;flex-direction:column;gap:4px}

/* FAQ Section */
.faq-container{display:grid;gap:12px;margin-top:18px;width:100%;max-width:760px;margin-left:auto;margin-right:auto;padding:0 12px}
.faq-item{border:var(--faq-border-width) solid #000;border-radius:12px;overflow:hidden;background:#fff}
.faq-question{width:100%;padding:20px 18px;text-align:left;background:var(--card);border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:1.35rem;line-height:1.35;color:var(--text);}
.faq-question:hover{background:rgba(11,11,11,0.05)}
.faq-question:focus{outline:none}
.faq-question:focus-visible{outline:6px solid var(--accent);outline-offset:-2px}
.faq-title{flex:1;text-align:left;text-transform:none}
.faq-title::first-letter{text-transform:uppercase}
.faq-toggle{display:grid;place-items:center;width:24px;height:24px;min-width:24px;flex:0 0 24px;color:#0b0b0b;}
.faq-toggle svg{display:block;width:18px;height:18px;overflow:visible;fill:none !important;stroke:#0b0b0b !important;stroke-width:3.5 !important;stroke-linecap:round;stroke-linejoin:round;opacity:1}
.faq-toggle svg path{fill:none !important;stroke:#0b0b0b !important;stroke-width:3.5 !important;stroke-linecap:round;stroke-linejoin:round}
.faq-question.active .faq-toggle{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;padding:0 18px}
.faq-answer p.answers,
.faq-answer ul {font-size:1.1rem;line-height:1.4;color:var(--text);margin:0}
.faq-answer ul {padding-left:1.5rem;}
.faq-question.active ~ .faq-answer{max-height:1000px;padding:18px 18px 18px 18px}

/* Control sizing driven by variables (JS may update these at runtime) */
.intake-form input, .intake-form input[type=date], .intake-form input[type=time], .custom-select-header {
  height: var(--control-min-height);
  min-height: 0;
  box-sizing: border-box;
}
.intake-form textarea{
  min-height: var(--textarea-min-height);
}

/* Ensure the Notes textarea remains multi-line on small devices.
   Make the rule specific to the notes field to avoid affecting inputs. */
.intake-form .notes-field textarea{
  height: auto;
  min-height: calc(var(--textarea-min-height));
  max-height: 60vh;
  overflow: hidden;
  resize: vertical;
  field-sizing: content;
}

/* Custom: soft white rounded focus for interactive elements */
/* REMOVE: global focus visuals (user requested). This will hide all default focus
   outlines and shadows for interactive elements. Accessibility note: this
   removes visible keyboard focus — use only when the user explicitly requests it. */
:where(a, button, input, select, textarea, summary, [role="button"], .custom-option):focus,
:where(a, button, input, select, textarea, summary, [role="button"], .custom-option):focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Override specific focus rules added elsewhere in the stylesheet */
.footer-phone a:focus,
.footer-credits a:focus,
.faq-question:focus,
.faq-question:focus-visible,
.modal-close:focus,
.icon-btn:focus,
.custom-select:focus-visible .custom-select-header,
.attachment-dropzone:focus,
.attachment-dropzone:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

/* Disable mobile tap highlight for interactive controls */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}


body.menu-open{overflow:hidden;height:100vh}

@media (max-width:900px){
  /* adjust control sizing variables for medium viewports */
  :root{ --control-min-height:92px; --textarea-min-height:160px; }
  .hero-grid{grid-template-columns:1fr;justify-items:center}
  .hero-card{max-width:100%}
  .hero-media{display:grid;grid-template-columns:1fr;gap:24px;align-items:start;width:100%}
  .hero-image{max-width:100%;width:100%}
  .hero-buttons .btn-secondary{display:none}
  .booking-section .booking-grid{grid-template-columns:1fr}
  .booking-section .booking-grid{max-width:100%;width:100%;margin:0;padding:0;}
  body{padding:0}
  .container{max-width:100%;padding-left:0;padding-right:0}
  .booking-card{--calendar-gap:8px}

  .intake-form h4{font-size:1.6rem}

  /* Center eyebrow text under title on narrow screens */
  .hero-copy .eyebrow{width:100%;max-width:100%;text-align:center;white-space:normal;overflow:visible;text-overflow:none;margin-left:0;margin-right:0;font-size:clamp(0.75rem, 2vw, 0.95rem)}

  /* Move eyebrow below h1 on very narrow screens by changing order */
  .hero-copy{display:flex;flex-direction:column}
  .hero-copy h1{order:1}
  .hero-copy .eyebrow{order:2;margin-top:8px}
  .hero-copy .lead{order:3}
  .hero-actions{order:4}
  .trust-list{order:5}

  /* stack hero action buttons vertically on narrow screens */
  .hero-actions{display:flex;flex-direction:column;align-items:stretch;width:100%;gap:12px}
  .hero-actions .btn{flex:0 0 auto;width:100%;min-width:auto;margin-left:0}
  .hero-actions .btn-secondary{display:none}

  /* Keep hero image within gutters and preserve rounded corners on narrow screens */
  .hero-image{
    width:100%;
    max-width:100%;
    height:auto; /* preserve natural aspect */
    border-radius:24px; /* keep rounded corners */
    margin:0 auto; /* maintain equal side spacing inside container */
    object-fit:cover;
    display:block;
  }

  /* Calendar: use fluid columns and square cells that scale to available width */
  .booking-card{--calendar-gap:8px}
  .calendar-days{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:var(--calendar-gap);margin-top:8px}
  .calendar-day{width:100%;aspect-ratio:1/1;height:auto;padding:0;border-radius:0}
  .calendar-toolbar{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}
  .calendar-toolbar h3{flex:1;text-align:center;margin:0}
  .weekdays{grid-auto-flow:column;overflow-x:auto;gap:8px;scrollbar-width:none;-ms-overflow-style:none}
  .weekdays::-webkit-scrollbar{display:none}
  .weekdays span{min-width:32px}

  /* Make form controls consistent on small screens — use variables so narrower breakpoints can override */
  .intake-form input{height:var(--control-min-height);min-height:0;padding:10px 12px;font-size:1rem;border:var(--control-border-width) solid #000}
  .intake-form textarea{min-height:var(--textarea-min-height);padding:10px 12px;font-size:1rem;border:var(--control-border-width) solid #000}
  .custom-select{height:var(--control-min-height)}
  .custom-select-header{padding:12px 44px 12px 12px;font-size:1.15rem;height:100%}
  .custom-option{padding:12px 12px;font-size:1.15rem;}
}

@media (max-width:600px){
  /* adjust control sizing variables for small viewports */
  :root{ --control-min-height:48px; --textarea-min-height:96px; }
  /* Scale down header title on narrow screens to fit in one line */
  .site-header__title { font-size: 2rem; }
  /* Center eyebrow text under title on small screens */
  .hero-copy .eyebrow{width:100%;max-width:100%;text-align:center;white-space:normal;overflow:visible;text-overflow:none;margin-left:0;margin-right:0;font-size:clamp(0.65rem, 2.8vw, 0.85rem)}

  /* Move eyebrow below h1 on very narrow screens by changing order */
  .hero-copy{display:flex;flex-direction:column}
  .hero-copy h1{order:1}
  .hero-copy .eyebrow{order:2;margin-top:8px}
  .hero-copy .lead{order:3}
  .hero-actions{order:4}
  .trust-list{order:5}

  /* stack hero action buttons vertically on narrow screens */
  .hero-actions{display:flex;flex-direction:column;align-items:stretch;width:100%;gap:12px}
  .hero-actions .btn{flex:0 0 auto;width:100%;min-width:auto;margin-left:0}
  .hero-actions .btn-secondary{display:none}

  /* Calendar: use fluid columns and square cells that scale to available width */
  .booking-card{--calendar-gap:8px}
  .calendar-days{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:var(--calendar-gap);margin-top:8px}
  .calendar-day{width:100%;aspect-ratio:1/1;height:auto;padding:0;border-radius:0}
  .calendar-toolbar{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}
  .calendar-toolbar h3{flex:1;text-align:center;margin:0}
  .weekdays{grid-auto-flow:column;overflow-x:auto;gap:8px;scrollbar-width:none;-ms-overflow-style:none}
  .weekdays::-webkit-scrollbar{display:none}
  .weekdays span{min-width:32px}

  /* Make form controls more compact on small screens */
  .intake-form input{height:var(--control-min-height);min-height:0;padding:10px 12px;font-size:1rem;border:var(--control-border-width) solid #000}
  .intake-form textarea{height:auto;min-height:var(--textarea-min-height);padding:10px 12px;font-size:1rem;border:var(--control-border-width) solid #000}
  .custom-select{height:var(--control-min-height)}
  .custom-select-header{padding:12px 44px 12px 12px;font-size:1.15rem;height:100%}
  .custom-option{padding:12px 12px;font-size:1.15rem;}
}

@media (max-width:480px){
  .site-header{padding:12px 0}
  .site-header__inner{padding:0 var(--safe-padding);gap:8px}
  .site-header__title{font-size:clamp(1rem, 5vw, 1.45rem)}
  .site-header__phone{font-size:clamp(0.9rem, 3.8vw, 1.1rem)}
  .hero{padding:8px var(--safe-padding) 16px}
  .section{padding:22px 0}
  .hero-copy h1{font-size:clamp(1.35rem, 7vw, 1.75rem)}
  .hero-copy h2{font-size:clamp(1rem, 4.5vw, 1.3rem)}
  .hero-copy .lead{font-size:0.95rem}
  .hero-actions{gap:8px}
  .btn, .btn-primary, .btn-secondary, button, input[type=submit], .nearby-actions a, .nearby-actions button{
    min-height:44px;
    padding:10px 14px;
    font-size:0.95rem;
  }
  .hero-card, .booking-card, .info-card, .nearby-card, .intake-form{padding:12px}
  .faq-question{padding:14px 12px;font-size:1rem}
  .faq-answer p.answers,
  .faq-answer ul{font-size:0.95rem}
  .calendar-day{font-size:0.82rem}
  .time-chip{padding:6px 10px;font-size:0.9rem;min-height:38px}
  .intake-form input, .intake-form textarea, .custom-select-header, .custom-option, .attachment-list li{font-size:0.95rem}
  .attachment-list li{min-height:44px;height:auto;padding:12px 14px}
  .footer-content{flex-direction:column;align-items:center;gap:8px;text-align:center}
  .footer-content > .btn{width:100%;max-width:100%;display:inline-flex;align-items:center;justify-content:center;margin-bottom:24px;text-align:center;font-size:1.2rem;min-height:60px}
}

/* Reduce visual weight of headings on mobile to improve readability */
@media (max-width: 600px) {
  /* Make primary hero headings slightly smaller and lighter */
  .hero-copy-text h1 { font-size: 1.6rem; font-weight: 700; }
  .hero-copy h1 { font-size: 1.6rem; font-weight: 700; }
  .hero-copy-text h2 { font-size: 1.15rem; font-weight: 700; }
  .hero-copy h2 { font-size: 1.15rem; font-weight: 700; }
  .hero-copy-text h3 { font-size: 1rem; font-weight: 600; }

  /* Section headings (h2) should be less bold on mobile */
  .section-heading h2, #faq .section-heading h2 { font-weight: 700; font-size: 1.15rem; }
  .section-heading h3 { font-weight: 600; font-size: 1rem; }

  /* Booking / form headings */
  #quick-intake { font-size: 1.15rem; font-weight: 700; }

  /* Slightly reduce header title weight on very narrow screens */
  .site-header__title { font-weight: 800; }
}

/* Card headings: match hero/section mobile style for visual consistency */
@media (max-width: 600px) {
  .card-grid .info-card h3,
  .info-card h3 { font-size: 1rem; font-weight: 600; line-height: 1.3; margin: 8px 0 10px; }
}

@media (max-width:320px){
  :root{--safe-padding:10px}
  .hero-copy h1{font-size:1.2rem}
  .hero-copy h2{font-size:0.95rem}
  .hero-copy .eyebrow{font-size:0.72rem}
  .faq-question{font-size:0.95rem}
  .btn, .btn-primary, .btn-secondary, button, input[type=submit]{padding:9px 12px;font-size:0.9rem}
}

.footer{padding:20px 0;background:transparent;margin-top:auto;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;font-size:0.95rem;line-height:1.6;color:var(--muted)}
.footer-content{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;padding:0 16px;margin:0 auto;max-width:var(--container)}
.footer-content > .btn{margin-bottom:32px;text-align:center;justify-content:center;font-size:1rem;min-height:52px;width:auto;max-width:100%;display:inline-flex;align-items:center;min-width:180px;padding:0 28px}
.footer-contact{display:flex;flex-direction:column;gap:6px;align-items:center;text-align:center}
.footer-contact p, .footer-contact .footer-email, .footer-credits{width:100%;max-width:fit-content;justify-content:center}

/* Ensure consistent spacing inside footer and accessible link styles */
.footer-content p, .footer-email{line-height:1.6;font-size:0.95rem;font-weight:400;color:var(--muted);margin:0}
.footer-email{display:inline-flex;align-items:center;gap:8px;color:var(--text);text-decoration:none}
.footer-email-icon{width:18px;height:18px;fill:currentColor;flex-shrink:0}
.footer-credits{display:inline-flex;align-items:center;gap:8px}
.footer-copyright{font-weight:600;color:var(--text);margin-right:4px}
.footer-copyright-icon{display:block;width:12px;height:12px;overflow:visible}
.inline-icon{width:16px;height:16px;vertical-align:middle;margin-right:6px;flex-shrink:0}
.hero-bullet{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;line-height:0}
.hero-bullet svg{display:block;width:10px;height:10px}
.footer-links{margin:12px auto 0 !important;padding:0 !important;font-size:0.85rem;line-height:1.55;color:var(--muted);text-align:justify !important;text-justify:inter-word;max-width:100% !important;display:block !important;width:auto !important}
.footer-links p{font-size:0.8rem;line-height:1.45;text-align:justify;text-justify:inter-word}
.footer-links a{color:var(--muted);text-decoration:none;font-weight:400}
.footer-links a:hover,.footer-links a:focus{opacity:0.9;text-decoration:underline}
.footer-content p a{color:var(--text);text-decoration:none;font-weight:600}
.footer-links p a{color:var(--muted);font-weight:400}
.footer-content p a:focus{outline:3px solid rgba(11,11,11,0.12);outline-offset:3px}
/* Make phone number and copyright link match email style */
.footer-phone a,
.footer-credits a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 400 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-phone a:hover,
.footer-credits a:hover,
.footer-phone a:focus,
.footer-credits a:focus {
  opacity: 0.95;
  text-decoration: underline;
}
.footer-phone a:focus,
.footer-credits a:focus {
  outline: 3px solid rgba(11,11,11,0.12);
  outline-offset: 3px;
}
.footer-disclaimer{max-width:720px;margin:0;color:var(--muted)}
.version{font-size:0.85rem;text-align:center;color:var(--muted);margin:12px 0 0}
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.95);display:none;align-items:center;justify-content:center;padding:24px;z-index:10001;overflow-y:auto}
.modal-overlay.active{display:flex}
.modal{width:100%;max-width:760px;background:#050505;color:#fff;border-radius:24px;padding:32px;position:relative;box-shadow:0 40px 90px rgba(0,0,0,0.5);max-height:90vh;overflow:auto}

/* Apply matching max-width and centering only on non-desktop viewports */
@media (max-width:1206px) {
  .faq-container, .footer-content > .btn {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

 
.modal h2{margin-top:0;font-size:2rem}
.modal h3{margin-top:24px;font-size:1.2rem}
.modal p{margin:18px 0 0;line-height:1.7;color:rgba(255,255,255,0.92)}
.modal p a[href^="tel"], .modal p a[href^="mailto"], .modal a.phone-link{color:#fff;font-weight:700;text-decoration:none}
.modal-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.modal-close:hover{
  transform: scale(1.03);
  background: rgba(255,255,255,0.06);
}

.modal-close:focus{
  outline: 6px solid rgba(255,255,255,0.12);
  outline-offset: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.map-actions{display:flex;justify-content:center;margin-top:24px}
/* Hypnotic lamp + link styles */
.hypno-light{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin:4px auto 18px;
  color:var(--card);
  border:none;
  box-shadow:none;
  background:transparent;
}
.hypno-text{color:#fff;font-weight:700;font-size:15px;line-height:1.2;text-align:right;margin-top:2px;display:block}
.hypno-text a{color:#fff;font-weight:700;text-decoration:underline;margin-left:0}
.hypno-svg{width:96px;height:96px;flex:0 0 96px;transform:translateY(0);border:none;box-shadow:none;background:transparent}
.hypno-svg .core{animation:hypnoCore 3.2s ease-in-out infinite}
.hypno-svg .pulse{transform-origin:60px 44px;animation:hypnoPulse 3.2s cubic-bezier(.4,0,.2,1) infinite}

@keyframes hypnoPulse{0%{transform:scale(0.86);opacity:0.74}14%{transform:scale(0.95);opacity:0.82}34%{transform:scale(1.04);opacity:0.94}56%{transform:scale(1.12);opacity:1}72%{transform:scale(1.02);opacity:0.9}100%{transform:scale(0.88);opacity:0.76}}
@keyframes hypnoCore{0%,100%{transform:scale(1)}20%{transform:scale(1.01)}48%{transform:scale(1.03)}76%{transform:scale(1.01)}}

@media (max-width:520px){
  .hypno-text{font-size:14px}
  .hypno-svg{width:60px;height:60px}
}

/* Force hypno link appearance in all states and provide visible focus ring */
.hypno-light .hypno-text a,
.hypno-light .hypno-text a:link,
.hypno-light .hypno-text a:visited,
.hypno-light .hypno-text a:hover,
.hypno-light .hypno-text a:focus,
.hypno-light .hypno-text a:active{
  color: #ffffff !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  margin-left: 6px !important;
}
.hypno-light .hypno-text a:focus-visible{
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
  border-radius: 4px;
}

/* NOTE: User requested the hypnotic lamp animate on all devices. This removes
   the reduced-motion suppression for the lamp so animations run even when
   the OS reports prefers-reduced-motion. Be aware this overrides user
   accessibility preference by design. */


/* Mobile overrides — make borders approximately 2x thinner on small screens */
@media (max-width: 600px) {
  :root{
    --control-border-width: 3px; /* was 6px */
    --faq-border-width: 3px;     /* was 6px */
  }

  /* FAQ toggle icon stroke — scale down to match halved borders */
  .faq-toggle svg,
  .faq-toggle svg path{
    stroke-width: 1px !important; /* rounded down from 1.75 */
  }

  /* stat-card dashed divider: use integer pixel width */
  .stat-card{ border-bottom-width: 1px; }

  /* attachment dropzone inner border: keep lighter on mobile */
  .attachment-dropzone::after{ border-width: 1px; }
}

/* Make very small screens even slimmer if needed */
@media (max-width: 360px) {
  :root{
    --control-border-width: 2px;
    --faq-border-width: 2px;
  }
  .faq-toggle svg,
  .faq-toggle svg path{
    stroke-width: 1px !important; /* rounded down from 1.2 */
  }
  .stat-card{ border-bottom-width: 1px; }
  .attachment-dropzone::after{ border-width: 1px; }
}
