/* =================================================================
   Kenya Car Guy — Site stylesheet
   All styles the site needs in one file. No Tailwind, no build step.
   Edit this file to restyle globally.
   ================================================================= */

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;background:#0A0A0A;color:#fff;font-family:'Manrope',-apple-system,BlinkMacSystemFont,sans-serif;-webkit-font-smoothing:antialiased;line-height:1.5}
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:transparent;color:inherit}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,h5,h6{font-family:'Cabinet Grotesk',sans-serif;letter-spacing:-.02em;margin:0;font-weight:900;color:#fff}
p{margin:0}
::selection{background:#C9A24E;color:#000}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:#0A0A0A}
::-webkit-scrollbar-thumb{background:#2a2a2a}
::-webkit-scrollbar-thumb:hover{background:#C9A24E}

/* ---- Layout helpers ---- */
.container-x{max-width:80rem;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.container-x{padding:0 1.5rem}}
@media(min-width:1024px){.container-x{padding:0 2rem}}
.section-pad{padding:5rem 0}
@media(min-width:640px){.section-pad{padding:6rem 0}}
@media(min-width:1024px){.section-pad{padding:8rem 0}}
.font-display{font-family:'Cabinet Grotesk',sans-serif}
.gold{color:#C9A24E}
.divider-gold{display:inline-block;width:48px;height:2px;background:#C9A24E;vertical-align:middle}
.muted{color:rgba(255,255,255,.35)}
.overline{font-family:'Cabinet Grotesk',sans-serif;text-transform:uppercase;letter-spacing:.25em;font-size:.75rem;font-weight:700;color:#C9A24E;display:inline-block}

/* ---- Buttons ---- */
.btn-primary,.btn-secondary,.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.875rem 1.5rem;border-radius:2px;font-family:'Cabinet Grotesk',sans-serif;
  font-weight:800;letter-spacing:.02em;transition:all .3s ease-out;border:1px solid transparent;
  cursor:pointer;font-size:1rem;line-height:1.2;
}
.btn-primary svg,.btn-secondary svg,.btn-ghost svg{flex-shrink:0}
.btn-sm{padding:.6rem 1.1rem;font-size:.875rem}
.btn-primary{background:#C9A24E;color:#000;border-color:#C9A24E}
.btn-primary:hover{background:#DDB766;box-shadow:0 0 20px rgba(201,162,78,.45);transform:translateY(-1px)}
.btn-primary:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none}
.btn-secondary{background:transparent;color:#C9A24E;border-color:#C9A24E}
.btn-secondary:hover{background:rgba(201,162,78,.08);box-shadow:0 0 15px rgba(201,162,78,.2)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.2);font-weight:700}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.04)}

/* ---- Inputs ---- */
.input-dark{background:#141414;border:1px solid rgba(255,255,255,.1);color:#fff;border-radius:2px;padding:.75rem 1rem;width:100%;font-family:'Manrope',sans-serif;font-size:.95rem}
.input-dark::placeholder{color:rgba(255,255,255,.4)}
.input-dark:focus{outline:none;border-color:#C9A24E;box-shadow:0 0 0 1px #C9A24E}
textarea.input-dark{resize:vertical;min-height:80px}
select.input-dark{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C9A24E'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;background-size:1rem;padding-right:2.25rem}

/* =================================================================
   HEADER
   ================================================================= */
.site-header{position:sticky;top:0;z-index:50;background:rgba(10,10,10,.85);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,.06)}
.site-header__row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1rem}
@media(min-width:640px){.site-header__row{padding:1.1rem 1.5rem}}
@media(min-width:1024px){.site-header__row{padding:1.1rem 2rem}}
.site-header__logo img{height:44px;width:auto}
@media(min-width:1024px){.site-header__logo img{height:56px}}
.site-header__nav{display:none}
.site-header__cta{display:none;align-items:center;gap:.75rem}
@media(min-width:1280px){
  .site-header__nav{display:flex;gap:2rem}
  .site-header__nav a{font-weight:600;font-size:.95rem;color:rgba(255,255,255,.75);padding:.25rem 0;border-bottom:2px solid transparent;transition:color .2s,border-color .2s}
  .site-header__nav a:hover,.site-header__nav a.is-active{color:#C9A24E;border-bottom-color:#C9A24E}
  .site-header__cta{display:flex}
}
.phone-inline{display:inline-flex;align-items:center;gap:.4rem;color:rgba(255,255,255,.8);font-weight:600;font-size:.9rem;margin-right:.5rem}
.phone-inline:hover{color:#C9A24E}
.site-header__burger{display:flex;flex-direction:column;justify-content:center;gap:5px;width:42px;height:42px;border:1px solid rgba(255,255,255,.15);padding:10px 9px}
.site-header__burger span{display:block;height:2px;background:#fff;border-radius:1px;transition:transform .2s,opacity .2s}
.site-header__burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-header__burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.site-header__burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(min-width:1280px){.site-header__burger{display:none}}
.mobile-menu{display:none;background:#0A0A0A;border-top:1px solid rgba(255,255,255,.08);padding:1rem 1rem 1.5rem}
.mobile-menu.is-open{display:block}
.mobile-menu nav{display:flex;flex-direction:column}
.mobile-menu nav a{padding:.9rem 0;color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:1.1rem;border-bottom:1px solid rgba(255,255,255,.06)}
.mobile-menu__cta{display:flex;flex-direction:column;gap:.6rem;margin-top:1.25rem}
.mobile-menu__cta a{width:100%}
@media(min-width:1280px){.mobile-menu{display:none !important}}

/* =================================================================
   HERO
   ================================================================= */
.hero{position:relative;min-height:92vh;padding:8rem 0 4rem;overflow:hidden}
@media(min-width:1024px){.hero{padding:9rem 0 4rem}}
.hero__bg{position:absolute;inset:0;z-index:-1}
.hero__bg img{width:100%;height:100%;object-fit:cover;opacity:.4}
.hero__bg::before{content:"";position:absolute;inset:0;background:linear-gradient(to right,#0A0A0A,rgba(10,10,10,.92),rgba(10,10,10,.6))}
.hero__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,#0A0A0A,transparent 30%,rgba(10,10,10,.3))}
.hero__grid{display:grid;gap:2.5rem;align-items:center}
@media(min-width:1024px){.hero__grid{grid-template-columns:1.15fr 1fr;gap:4rem}}
.hero__eyebrow{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem}
.hero h1{font-size:clamp(2.25rem,6vw,4.5rem);line-height:1.02;letter-spacing:-.02em}
.hero__lead{margin-top:1.5rem;color:rgba(255,255,255,.7);font-size:1.125rem;max-width:36rem;line-height:1.6}
.hero__ctas{display:flex;flex-direction:column;gap:.75rem;margin-top:2rem}
@media(min-width:640px){.hero__ctas{flex-direction:row;flex-wrap:wrap}}
.hero__badges{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:2.5rem}
@media(min-width:640px){.hero__badges{grid-template-columns:repeat(3,1fr)}}
.hero__badge{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.75);border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.02);padding:.5rem .75rem}
.hero__badge .check{color:#C9A24E;font-weight:900}

/* Booking form card */
.booking-card{position:relative;background:rgba(16,16,16,.95);border:1px solid rgba(255,255,255,.1);padding:1.5rem}
@media(min-width:640px){.booking-card{padding:2rem}}
.booking-card::before{content:"";position:absolute;top:-1px;left:0;right:0;height:2px;background:linear-gradient(to right,transparent,#C9A24E,transparent)}
.booking-card h3{font-size:1.5rem;margin-top:.5rem}
@media(min-width:640px){.booking-card h3{font-size:1.875rem}}
.booking-card__lead{font-size:.875rem;color:rgba(255,255,255,.6);margin-top:.25rem}
.booking-form{display:grid;gap:.75rem;margin-top:1.25rem}
.booking-form .grid-2{display:grid;grid-template-columns:1fr;gap:.75rem}
@media(min-width:640px){.booking-form .grid-2{grid-template-columns:1fr 1fr}}
.booking-form__note{font-size:.7rem;color:rgba(255,255,255,.5);text-align:center;display:flex;align-items:center;justify-content:center;gap:.4rem;margin-top:.25rem}
.booking-form__altnote{font-size:.7rem;color:rgba(255,255,255,.4);text-align:center;margin-top:.1rem}
.booking-success{text-align:center;padding:2rem 0}
.booking-success__icon{color:#C9A24E;margin-bottom:.75rem;line-height:1;display:flex;justify-content:center}
.booking-success h4{font-size:1.25rem}
.booking-success p{color:rgba(255,255,255,.6);margin-top:.5rem;font-size:.875rem}
.booking-success button{margin-top:1.5rem}

/* =================================================================
   HERO BAND (photo + stats strip)
   ================================================================= */
.hero-band{position:relative;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1);overflow:hidden}
.hero-band__img{position:relative;height:280px;overflow:hidden}
@media(min-width:640px){.hero-band__img{height:360px}}
@media(min-width:1024px){.hero-band__img{height:440px}}
.hero-band__img img{width:100%;height:100%;object-fit:cover}
.hero-band__img::before{content:"";position:absolute;inset:0;background:linear-gradient(to right,#0A0A0A,rgba(10,10,10,.3),rgba(10,10,10,.7))}
.hero-band__img::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,10,10,.6),transparent 50%,#0A0A0A)}
.hero-band__caption{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.5);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);padding:.625rem 1rem}
@media(min-width:1024px){.hero-band__caption{left:auto;right:2rem;transform:none;bottom:2rem}}
.hero-band__caption .kicker{font-family:'Cabinet Grotesk',sans-serif;font-weight:900;text-transform:uppercase;letter-spacing:.3em;font-size:.625rem;color:#C9A24E}
.hero-band__caption .title{color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:.875rem}
@media(min-width:640px){.hero-band__caption .title{font-size:1rem}}
.stats{background:#070707;border-top:1px solid rgba(255,255,255,.05)}
.stats__grid{display:grid;grid-template-columns:repeat(2,1fr)}
@media(min-width:1024px){.stats__grid{grid-template-columns:repeat(4,1fr)}}
.stats__item{display:flex;align-items:center;gap:1rem;padding:1.5rem 1rem;border-color:rgba(255,255,255,.05)}
@media(min-width:1024px){.stats__item{padding:2rem 1.5rem}}
.stats__item:nth-child(1),.stats__item:nth-child(2){border-right:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05)}
@media(min-width:1024px){.stats__item:nth-child(1),.stats__item:nth-child(2),.stats__item:nth-child(3){border-right:1px solid rgba(255,255,255,.05);border-bottom:0}.stats__item:nth-child(4){border:0}}
.stats__icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(201,162,78,.3);background:rgba(201,162,78,.05);color:#C9A24E;flex-shrink:0}
.stats__num{font-family:'Cabinet Grotesk',sans-serif;font-size:1.5rem;font-weight:900;color:#fff;line-height:1}
@media(min-width:1024px){.stats__num{font-size:1.875rem}}
.stats__lbl{font-size:.75rem;color:rgba(255,255,255,.5);margin-top:.25rem}

/* =================================================================
   SECTION HEADERS
   ================================================================= */
.section-head{text-align:center;max-width:42rem;margin:0 auto 3rem}
.section-head h2{font-size:clamp(1.875rem,4vw,3rem);margin-top:.5rem;line-height:1.1;letter-spacing:-.02em}
.section-head p{color:rgba(255,255,255,.65);margin-top:1rem;font-size:1rem;line-height:1.6}

/* =================================================================
   SERVICES GRID
   ================================================================= */
.services-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.services-grid{grid-template-columns:repeat(3,1fr)}}
.service-card{background:#111;border:1px solid rgba(255,255,255,.08);padding:1.5rem;transition:border-color .3s,transform .3s,box-shadow .3s;display:flex;flex-direction:column;gap:.75rem;min-height:220px}
.service-card:hover{border-color:rgba(201,162,78,.5);transform:translateY(-2px);box-shadow:0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(201,162,78,.15)}
.service-card__icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:rgba(201,162,78,.1);border:1px solid rgba(201,162,78,.3);color:#C9A24E}
.service-card h3{font-size:1.125rem;line-height:1.2}
.service-card p{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.5}
.service-card a{margin-top:auto;color:#C9A24E;font-weight:700;font-size:.875rem;font-family:'Cabinet Grotesk',sans-serif;text-transform:uppercase;letter-spacing:.1em;display:inline-flex;align-items:center;gap:.4rem}
.service-card a:hover{text-decoration:underline}

/* =================================================================
   WHY CHOOSE
   ================================================================= */
.why-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.why-grid{grid-template-columns:repeat(4,1fr)}}
.why-card{border:1px solid rgba(255,255,255,.08);padding:1.5rem;background:rgba(255,255,255,.01);transition:border-color .3s}
.why-card:hover{border-color:rgba(201,162,78,.4)}
.why-card__icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:#C9A24E;margin-bottom:.75rem}
.why-card h3{font-size:1rem;margin-bottom:.4rem}
.why-card p{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.5}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how-grid{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:640px){.how-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.how-grid{grid-template-columns:repeat(4,1fr)}}
.how-step{position:relative;padding:1.5rem;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.01)}
.how-step__num{font-family:'Cabinet Grotesk',sans-serif;font-size:3rem;font-weight:900;color:rgba(201,162,78,.2);line-height:.9;margin-bottom:.75rem}
.how-step h3{font-size:1.125rem;margin-bottom:.5rem}
.how-step p{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.5}

/* =================================================================
   GALLERY (CSS columns masonry — matches preview: 2/3/4 cols, labels always visible)
   ================================================================= */
.gallery{columns:2;column-gap:.75rem}
@media(min-width:1024px){.gallery{columns:3;column-gap:1rem}}
@media(min-width:1280px){.gallery{columns:4;column-gap:1rem}}
.gallery__item{display:block;break-inside:avoid;margin-bottom:.75rem;position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.1);background:#0A0A0A}
@media(min-width:1024px){.gallery__item{margin-bottom:1rem}}
.gallery__item img{width:100%;height:auto;display:block;transition:transform .6s ease}
.gallery__item:hover img{transform:scale(1.05)}
.gallery__item::before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.8) 0%,transparent 55%);pointer-events:none;opacity:.9;z-index:1}
.gallery__item__label{position:absolute;bottom:12px;left:12px;right:12px;z-index:2;pointer-events:none}
.gallery__item__label .kicker{display:block;font-family:'Cabinet Grotesk',sans-serif;font-weight:900;text-transform:uppercase;letter-spacing:.25em;font-size:.6875rem;color:#C9A24E;margin-bottom:.15rem}
.gallery__item__label .name{display:block;color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:.8125rem}
@media(min-width:640px){.gallery__item__label .name{font-size:.875rem}}

/* =================================================================
   URGENT + REVIEWS CTA BANDS
   ================================================================= */
.urgent-cta{position:relative;padding:4rem 0;background:#0a0a0a;border-top:1px solid rgba(201,162,78,.2);border-bottom:1px solid rgba(201,162,78,.2);overflow:hidden;text-align:center}
.urgent-cta::before{content:"";position:absolute;inset:0;opacity:.08;background-image:repeating-linear-gradient(45deg,#C9A24E 0,#C9A24E 1px,transparent 1px,transparent 18px);pointer-events:none}
.urgent-cta__inner{position:relative;max-width:48rem;margin:0 auto;padding:0 1rem}
.urgent-cta h2{font-size:clamp(1.875rem,5vw,3.5rem);line-height:1.05}
.urgent-cta p{color:rgba(255,255,255,.65);margin-top:1rem;font-size:1rem}
.urgent-cta__ctas{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;margin-top:2rem}
.urgent-cta__badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(201,162,78,.1);border:1px solid rgba(201,162,78,.3);padding:.375rem .75rem;margin-bottom:1.25rem}

.reviews-cta{padding:4rem 0;text-align:center;background:#070707}
.reviews-cta__inner{max-width:44rem;margin:0 auto;padding:0 1rem;border:1px solid rgba(201,162,78,.25);padding:3rem 2rem;background:rgba(255,255,255,.01)}
.reviews-cta .stars{color:#C9A24E;display:inline-flex;gap:.35rem;justify-content:center;margin-bottom:.75rem}
.reviews-cta .stars svg{width:22px;height:22px;fill:#C9A24E;stroke:#C9A24E}
.reviews-cta h2{font-size:clamp(1.5rem,4vw,2.25rem);line-height:1.1}
.reviews-cta p{color:rgba(255,255,255,.65);margin-top:1rem}
.reviews-cta__ctas{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;margin-top:2rem}
.reviews-cta__note{margin-top:1.25rem;font-size:.7rem;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.2em}

/* =================================================================
   VISIT US STRIP
   ================================================================= */
.visit-strip{padding:2rem 0;background:#070707;border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05)}
.visit-strip__row{display:grid;gap:1.5rem;align-items:center;grid-template-columns:1fr}
@media(min-width:768px){.visit-strip__row{grid-template-columns:auto 1fr auto}}
.visit-strip__pin{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border:1px solid #C9A24E;color:#C9A24E}
.visit-strip__text .kicker{font-size:.7rem;color:#C9A24E;text-transform:uppercase;letter-spacing:.25em;font-family:'Cabinet Grotesk',sans-serif;font-weight:700}
.visit-strip__text h3{font-size:1.25rem;margin-top:.25rem}
.visit-strip__text .meta{color:rgba(255,255,255,.55);font-size:.875rem;margin-top:.35rem}

/* =================================================================
   SERVICE DETAIL PAGE
   ================================================================= */
.service-hero{padding:4rem 0 2rem}
.service-hero__grid{display:grid;gap:2rem;align-items:center}
@media(min-width:1024px){.service-hero__grid{grid-template-columns:1.2fr 1fr;gap:3rem}}
.service-hero h1{font-size:clamp(2.25rem,5vw,3.5rem);line-height:1.05;margin-top:.5rem}
.service-hero__lead{margin-top:1.25rem;color:rgba(255,255,255,.7);font-size:1.0625rem;line-height:1.6}
.service-hero__ctas{display:flex;gap:.75rem;margin-top:1.75rem;flex-wrap:wrap}
.service-hero__img{overflow:hidden;border:1px solid rgba(255,255,255,.08)}
.service-hero__img img{width:100%;height:auto;display:block}
.bread{font-size:.8rem;color:rgba(255,255,255,.5);padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.05)}
.bread a{color:rgba(255,255,255,.7)}
.bread a:hover{color:#C9A24E}
.bread span{color:#C9A24E;margin:0 .5rem}
.service-blocks{display:grid;gap:3rem;grid-template-columns:1fr;margin-top:3rem}
@media(min-width:1024px){.service-blocks{grid-template-columns:1fr 1fr}}
.service-block h2{font-size:1.5rem;margin-bottom:1rem}
.service-block ul{display:grid;gap:.75rem}
.service-block li{display:flex;gap:.6rem;color:rgba(255,255,255,.8);font-size:.95rem;line-height:1.5}
.service-block li::before{content:"✓";color:#C9A24E;font-weight:900;flex-shrink:0}
.service-block ol{counter-reset:step;display:grid;gap:1rem;margin:0;padding:0;list-style:none}
.service-block ol li{counter-increment:step;padding-left:2.75rem;position:relative;color:rgba(255,255,255,.8);font-size:.95rem}
.service-block ol li::before{content:counter(step);position:absolute;left:0;top:-2px;width:32px;height:32px;background:rgba(201,162,78,.15);border:1px solid rgba(201,162,78,.4);color:#C9A24E;font-family:'Cabinet Grotesk',sans-serif;font-weight:900;display:flex;align-items:center;justify-content:center}

/* FAQ */
.faq{margin-top:3rem}
.faq details{border-top:1px solid rgba(255,255,255,.08);padding:1.25rem 0}
.faq details:last-child{border-bottom:1px solid rgba(255,255,255,.08)}
.faq summary{cursor:pointer;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:1.0625rem;color:#fff;list-style:none;display:flex;justify-content:space-between;gap:1rem;align-items:center}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:#C9A24E;font-size:1.5rem;font-weight:300;transition:transform .3s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq p{margin-top:.75rem;color:rgba(255,255,255,.65);line-height:1.6;font-size:.95rem}

/* Related services + inline booking */
.related{margin-top:4rem}
.related__grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.related__grid{grid-template-columns:repeat(3,1fr)}}
.related-card{background:#111;border:1px solid rgba(255,255,255,.08);padding:1.25rem;transition:border-color .3s}
.related-card:hover{border-color:rgba(201,162,78,.4)}
.related-card h3{font-size:1.0625rem;margin-bottom:.4rem}
.related-card p{font-size:.85rem;color:rgba(255,255,255,.6);line-height:1.4}

.inline-book{margin-top:3rem;background:#101010;border:1px solid rgba(255,255,255,.1);padding:1.5rem}
@media(min-width:640px){.inline-book{padding:2rem}}
.inline-book__grid{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:1024px){.inline-book__grid{grid-template-columns:1fr 1.2fr;gap:3rem}}
.inline-book h2{font-size:clamp(1.5rem,3vw,2.25rem);line-height:1.1;margin-top:.5rem}
.inline-book__lead{color:rgba(255,255,255,.65);margin-top:.75rem;line-height:1.6}

/* =================================================================
   BLOG
   ================================================================= */
.blog-hero{padding:4rem 0 2rem;text-align:center;border-bottom:1px solid rgba(255,255,255,.05)}
.blog-hero h1{font-size:clamp(2.25rem,5vw,3.5rem);margin-top:.5rem}
.blog-hero p{color:rgba(255,255,255,.65);margin-top:1rem;max-width:42rem;margin-left:auto;margin-right:auto}
.blog-grid{display:grid;gap:1.5rem;grid-template-columns:1fr;margin-top:3rem}
@media(min-width:640px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:#111;border:1px solid rgba(255,255,255,.08);display:flex;flex-direction:column;transition:transform .3s,border-color .3s}
.blog-card:hover{border-color:rgba(201,162,78,.4);transform:translateY(-2px)}
.blog-card__img{height:200px;overflow:hidden}
.blog-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.blog-card:hover .blog-card__img img{transform:scale(1.05)}
.blog-card__body{padding:1.25rem;flex:1;display:flex;flex-direction:column}
.blog-card__meta{font-size:.7rem;color:#C9A24E;text-transform:uppercase;letter-spacing:.2em;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;margin-bottom:.6rem}
.blog-card h3{font-size:1.125rem;line-height:1.25;margin-bottom:.5rem}
.blog-card p{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.5;flex:1}
.blog-card__more{margin-top:1rem;color:#C9A24E;font-size:.8rem;font-weight:700;font-family:'Cabinet Grotesk',sans-serif;text-transform:uppercase;letter-spacing:.1em}

/* Blog post */
.post{max-width:44rem;margin:0 auto;padding:3rem 1rem 5rem}
@media(min-width:640px){.post{padding:4rem 1.5rem 6rem}}
.post__meta{color:#C9A24E;font-size:.75rem;text-transform:uppercase;letter-spacing:.25em;font-family:'Cabinet Grotesk',sans-serif;font-weight:700;margin-bottom:1rem}
.post h1{font-size:clamp(2rem,5vw,3rem);line-height:1.1;margin-bottom:1.5rem}
.post__cover{margin:2rem 0 2.5rem;border:1px solid rgba(255,255,255,.08)}
.post__cover img{width:100%;display:block}
.post__content p{color:rgba(255,255,255,.8);font-size:1.0625rem;line-height:1.75;margin-bottom:1.5rem}
.post__content h2{font-size:1.5rem;margin:2.5rem 0 1rem}
.post__content ul{margin:0 0 1.5rem;padding-left:0;list-style:none}
.post__content ul li{padding-left:1.25rem;position:relative;margin-bottom:.5rem;color:rgba(255,255,255,.8);font-size:1rem;line-height:1.6}
.post__content ul li::before{content:"→";color:#C9A24E;position:absolute;left:0;font-weight:900}
.post__content blockquote{border-left:3px solid #C9A24E;padding:1rem 0 1rem 1.5rem;margin:2rem 0;font-style:italic;color:#fff;font-size:1.125rem;font-family:'Cabinet Grotesk',sans-serif}
.post__cta{margin-top:3rem;padding:2rem;background:#111;border:1px solid rgba(255,255,255,.1);text-align:center}
.post__cta h3{font-size:1.25rem;margin-bottom:.75rem}
.post__cta p{color:rgba(255,255,255,.65);margin-bottom:1.5rem}
.post__cta__ctas{display:flex;gap:.75rem;flex-wrap:wrap;justify-content:center}

/* =================================================================
   ABOUT + CONTACT
   ================================================================= */
.page-hero{padding:4rem 0 3rem;text-align:center;border-bottom:1px solid rgba(255,255,255,.05)}
.page-hero h1{font-size:clamp(2.25rem,5vw,3.5rem);margin-top:.5rem}
.page-hero p{color:rgba(255,255,255,.65);margin-top:1rem;max-width:42rem;margin-left:auto;margin-right:auto;line-height:1.6}
.content{max-width:56rem;margin:0 auto;padding:3rem 1rem 5rem}
.content p{color:rgba(255,255,255,.8);font-size:1.0625rem;line-height:1.75;margin-bottom:1.25rem}
.content h2{font-size:1.75rem;margin:2.5rem 0 1rem}
.content ul{list-style:none;margin:0 0 1.5rem;padding:0}
.content ul li{padding-left:1.25rem;position:relative;margin-bottom:.5rem;color:rgba(255,255,255,.8);line-height:1.6}
.content ul li::before{content:"✓";color:#C9A24E;position:absolute;left:0;font-weight:900}
.contact-grid{display:grid;gap:2rem;grid-template-columns:1fr;margin-top:3rem}
@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1.2fr}}
.contact-info{background:#111;border:1px solid rgba(255,255,255,.08);padding:2rem}
.contact-info h2{font-size:1.5rem;margin-bottom:1.5rem}
.contact-info ul li{display:flex;gap:.75rem;align-items:flex-start;margin-bottom:1rem;color:rgba(255,255,255,.75);font-size:.95rem;line-height:1.5}
.contact-info ul li .gold{color:#C9A24E;flex-shrink:0;margin-top:.2rem}
.contact-map{width:100%;height:340px;border:1px solid rgba(255,255,255,.08)}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer{background:#060606;border-top:1px solid rgba(255,255,255,.08);padding:4rem 0 6rem}
@media(min-width:1280px){.site-footer{padding:4rem 0 3rem}}
.site-footer__grid{display:grid;gap:2.5rem;grid-template-columns:1fr}
@media(min-width:768px){.site-footer__grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.site-footer__grid{grid-template-columns:1.3fr 1fr 1fr 1.2fr}}
.site-footer__logo img{height:56px;width:auto}
.site-footer__tag{margin-top:1.25rem;color:rgba(255,255,255,.55);font-size:.875rem;line-height:1.6;max-width:24rem}
.site-footer__social{display:flex;gap:.6rem;margin-top:1.25rem}
.site-footer__social a{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.6);transition:all .2s}
.site-footer__social a:hover{border-color:#C9A24E;color:#C9A24E}
.site-footer h2{font-size:.8rem;text-transform:uppercase;letter-spacing:.25em;font-family:'Cabinet Grotesk',sans-serif;font-weight:900;margin-bottom:1.25rem;color:#fff}
.site-footer ul li{margin-bottom:.6rem}
.site-footer ul li a{color:rgba(255,255,255,.55);font-size:.875rem;transition:color .2s}
.site-footer ul li a:hover{color:#C9A24E}
.site-footer__contact li{color:rgba(255,255,255,.7);font-size:.875rem}
.site-footer__contact li a{color:rgba(255,255,255,.7)}
.site-footer__contact li a:hover{color:#C9A24E}
.site-footer__hours{margin-top:1.5rem;background:#111;border:1px solid rgba(255,255,255,.1);padding:1rem}
.site-footer__hours .overline{font-size:.65rem;margin-bottom:.5rem}
.site-footer__hours > div{display:flex;justify-content:space-between;font-size:.75rem;color:rgba(255,255,255,.65);padding:.15rem 0}
.site-footer__bottom{margin-top:3.5rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.05);display:flex;flex-direction:column;gap:.6rem;align-items:center;text-align:center}
@media(min-width:640px){.site-footer__bottom{flex-direction:row;justify-content:space-between;text-align:left}}
.site-footer__bottom p{font-size:.75rem;color:rgba(255,255,255,.4)}
.site-footer__credit{margin-top:.75rem;font-size:.7rem;color:rgba(255,255,255,.3);text-align:center}
.site-footer__credit a{color:rgba(255,255,255,.55);text-decoration:underline}
.site-footer__credit a:hover{color:#C9A24E}

/* =================================================================
   MOBILE STICKY BAR (bottom, mobile/tablet only)
   ================================================================= */
.mobile-sticky{position:fixed;bottom:0;left:0;right:0;z-index:40;background:rgba(0,0,0,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-top:1px solid rgba(255,255,255,.1);display:grid;grid-template-columns:1fr 1fr 1fr}
@media(min-width:1280px){.mobile-sticky{display:none}}
.mobile-sticky a{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:.75rem 0;color:#fff;font-size:.75rem;font-weight:600;line-height:1.2;text-align:center}
.mobile-sticky a .icon{display:flex;align-items:center;justify-content:center;margin-bottom:.2rem;color:#C9A24E}
.mobile-sticky a:nth-child(2){border-left:1px solid rgba(255,255,255,.1);border-right:1px solid rgba(255,255,255,.1)}
.mobile-sticky__book{background:#C9A24E;color:#000 !important}
.mobile-sticky__book .icon{color:#000 !important}

/* =================================================================
   MISC UTILITY
   ================================================================= */
.text-center{text-align:center}
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-4{margin-bottom:2rem}
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease-out,transform .6s ease-out}
.reveal.is-visible{opacity:1;transform:translateY(0)}

/* ---- 404 ---- */
.notfound{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:4rem 1rem}
.notfound h1{font-size:clamp(3rem,8vw,6rem);color:#C9A24E;line-height:1}
.notfound p{color:rgba(255,255,255,.65);margin:1rem 0 2rem}
