/* ══════════════════════════════════════════════════════════════
   Amor Largo — theme.css  v3.2
   Aman-inspired restraint. Silence is the product.
   ══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   LIGHT MODE (default)
   ───────────────────────────────────────────────────────────── */
:root,
body.al-light {
  --bg:           #EDE8E0;
  --bg-soft:      #E5DFD6;
  --bg-card:      #F4F0EA;
  --bg-elevated:  #F9F7F4;
  --text:         #1C1A17;
  --text-soft:    #3A3128;
  --text-muted:   #6E6459;
  --accent:       #4A3728;
  --accent-soft:  #6B5240;
  --green:        #4A6741;       /* warmer, less primary — reads natural not designed */
  --green-soft:   rgba(74, 103, 65, 0.08);
  --border:       rgba(60, 46, 32, 0.11);
  --nav-bg:       rgba(237, 232, 224, 0.94);
  --glow:         rgba(60, 46, 32, 0.05);
  --grain-opacity: 0.03;
  --leaf-opacity:  0.04;
  --photo-overlay: rgba(22, 19, 15, 0.48);
  --card-shadow:  0 1px 16px rgba(22,19,15,0.06);
}

/* ─────────────────────────────────────────────────────────────
   DARK MODE (opt-in)
   ───────────────────────────────────────────────────────────── */
body.al-dark {
  --bg:           #1A1916;
  --bg-soft:      #222119;
  --bg-card:      #2A2821;
  --bg-elevated:  #312F27;
  --text:         #EAE2D6;
  --text-soft:    #BFB5A8;
  --text-muted:   #8A8177;
  --accent:       #A89070;
  --accent-soft:  #8E7458;
  --green:        #7A9E6C;       /* slightly muted vs before */
  --green-soft:   rgba(122, 158, 108, 0.11);
  --border:       rgba(168, 144, 112, 0.14);
  --nav-bg:       rgba(26, 25, 22, 0.94);
  --glow:         rgba(168, 144, 112, 0.10);
  --grain-opacity: 0.06;
  --leaf-opacity:  0.06;
  --photo-overlay: rgba(22, 19, 15, 0.55);
  --card-shadow:  0 2px 24px rgba(0,0,0,0.28);
}


/* ─────────────────────────────────────────────────────────────
   RESET + BASE
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--green); color: #fff; }

body.al-page {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.6s ease, color 0.6s ease;
  font-size: 16px;
  line-height: 1.75;
}

body.al-page a { color: inherit; text-decoration: none; }

.serif { font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif; }
.dm    { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; }


/* ─────────────────────────────────────────────────────────────
   ANIMATIONS — slowed for luxury pace
   ───────────────────────────────────────────────────────────── */
@keyframes heroReveal {
  0%   { opacity: 0; transform: translateY(36px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes lineGrow {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.05); }
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%       { transform: rotate(1.5deg) translateY(-6px); }
}


/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────────────────────── */
.al-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.al-reveal.is-visible { opacity: 1; transform: translateY(0); }
.al-reveal--delay     { transition-delay: 0.18s; }


/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.al-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0 clamp(24px, 4vw, 56px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background 0.6s, box-shadow 0.4s;
}
.al-nav.is-scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }

.al-nav__logo a    { display: flex; flex-direction: column; gap: 2px; color: var(--text); }
.al-nav__logo-text { font-size: 17px; font-weight: 400; line-height: 1; letter-spacing: -0.1px; }
.al-nav__logo-sub  { font-size: 8.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

.al-nav__links {
  display: flex; align-items: center;
  gap: clamp(20px, 3vw, 44px);
  list-style: none;
}

.nl {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer; background: none; border: none; padding: 4px 0;
  position: relative; transition: color 0.3s;
}
.nl::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nl:hover        { color: var(--text); }
.nl:hover::after { transform: scaleX(1); }

.al-nav__actions { display: flex; align-items: center; gap: 14px; }

/* Ghost reserve link — barely there */
.al-nav__book {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.al-nav__book:hover { color: var(--text); border-color: var(--green); }

/* Theme toggle */
.al-theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  cursor: pointer; color: var(--text-muted); border-radius: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.al-theme-toggle:hover { color: var(--text); border-color: var(--accent); }
.al-theme-toggle svg   { width: 14px; height: 14px; }

body.al-light .al-theme-toggle__sun  { display: none; }
body.al-light .al-theme-toggle__moon { display: block; }
body.al-dark  .al-theme-toggle__sun  { display: block; }
body.al-dark  .al-theme-toggle__moon { display: none; }

.al-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; background: none; border: none; cursor: pointer; padding: 4px;
}
.al-nav__burger span { display: block; width: 100%; height: 1px; background: var(--text-muted); transition: all 0.35s; }
.al-nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); background: var(--text); }
.al-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.al-nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); background: var(--text); }

.al-nav__overlay {
  position: fixed; inset: 0; z-index: 80; background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 44px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.al-nav__overlay.is-open { opacity: 1; pointer-events: all; }
.al-nav__overlay-links   { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.al-nav__overlay-link {
  font-size: clamp(36px, 9vw, 64px); font-weight: 400;
  background: none; border: none; cursor: pointer; color: var(--text);
  font-family: 'Instrument Serif', Georgia, serif;
  transition: color 0.3s; line-height: 1.1;
}
.al-nav__overlay-link:hover { color: var(--green); }
.al-nav__overlay-contact {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.al-nav__overlay-contact a { color: var(--text-muted); transition: color 0.3s; }
.al-nav__overlay-contact a:hover { color: var(--green); }


/* ─────────────────────────────────────────────────────────────
   BUTTONS + TEXT LINKS
   ───────────────────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 40px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  font-family: 'DM Sans', -apple-system, sans-serif;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
/* Ghost — primary CTA style (Aman-style, never solid fill) */
.cta-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
}
.cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.cta-sm { padding: 11px 24px; font-size: 9px; letter-spacing: 2.5px; }

/* Text link — for in-body use, always themed */
.al-text-link {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.al-text-link:hover { color: var(--text); border-color: var(--green); }


/* ─────────────────────────────────────────────────────────────
   GRAIN
   ───────────────────────────────────────────────────────────── */
.al-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: var(--grain-opacity); mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.al-dark .al-grain { mix-blend-mode: overlay; }


/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.al-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.al-hero__photo          { position: absolute; inset: 0; z-index: 0; }
.al-hero__photo img      { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.al-hero__photo-overlay  { position: absolute; inset: 0; background: var(--photo-overlay); transition: background 0.6s; }

.al-hero__leaf {
  position: absolute; top: 14%; right: 9%;
  width: 160px; z-index: 1; pointer-events: none;
  opacity: var(--leaf-opacity);
}
.al-hero__leaf svg { animation: leafSway 10s ease-in-out infinite; }

.al-hero__inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 28px; max-width: 860px;
}

/* All hero text is over photo — always fixed white, never theme-reactive */
.al-hero__over {
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px; font-weight: 500;
  animation: heroReveal 1.2s 1.2s both;   /* delayed — let photo breathe first */
}
.al-hero__h {
  font-size: clamp(46px, 8.5vw, 100px);
  font-weight: 400; line-height: 0.94; letter-spacing: -0.5px;
  margin-bottom: 32px; color: #fff;
  text-shadow: 0 2px 60px rgba(0,0,0,0.2);
}
.al-hero__h span            { display: block; animation: heroReveal 1.2s both; }
.al-hero__h span:nth-child(1){ animation-delay: 1.5s; }
.al-hero__h span:nth-child(2){ animation-delay: 1.8s; color: rgba(210,230,200,0.85); font-style: italic; }

.al-hero__p {
  font-size: 15.5px; line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-width: 500px; margin: 0 auto 48px;
  font-weight: 300; animation: heroReveal 1.2s 2.1s both;
  text-shadow: 0 1px 16px rgba(0,0,0,0.2);
}
.al-hero__actions {
  display: flex; align-items: center; gap: 28px;
  justify-content: center; flex-wrap: wrap;
  animation: heroReveal 1.2s 2.4s both;
}
.al-hero__tel {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 400;
  transition: color 0.3s;
}
.al-hero__tel:hover { color: rgba(255,255,255,0.8); }

.al-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroReveal 1.2s 3s both;
}
.al-hero__scroll span      { font-size: 8px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.al-hero__scroll-line      { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: breathe 3.5s ease-in-out infinite; }


/* ─────────────────────────────────────────────────────────────
   SECTION FRAMEWORK — more air
   ───────────────────────────────────────────────────────────── */
.al-sec {
  padding: clamp(96px, 12vw, 160px) clamp(24px, 5vw, 64px);
  max-width: 1200px; margin: 0 auto;
}
.sec-label {
  font-size: 9px; letter-spacing: 5.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px; font-weight: 600;
}
.sec-h {
  font-size: clamp(36px, 5vw, 60px); font-weight: 400;
  line-height: 1.08; margin-bottom: 24px; color: var(--text);
}
.sec-h em   { font-style: italic; color: var(--accent); }
.sec-line   { width: 32px; height: 1px; background: var(--border); margin-bottom: 56px; }
.al-line-grow { animation: lineGrow 1.2s 0.6s cubic-bezier(0.16,1,0.3,1) both; transform-origin: left; }


/* ─────────────────────────────────────────────────────────────
   PULLQUOTE — editorial scale, no glow orbs
   ───────────────────────────────────────────────────────────── */
.al-pq {
  padding: clamp(80px, 12vw, 140px) clamp(28px, 8vw, 120px);
  text-align: center; position: relative;
}
.al-pq--soft { background: var(--bg-soft); }

.al-pq__text {
  font-size: clamp(26px, 4.5vw, 52px); line-height: 1.28;
  font-weight: 400; font-style: italic;
  max-width: 900px; margin: 0 auto;
  color: var(--text);
  letter-spacing: -0.2px;
}
.al-pq__text em { font-style: normal; color: var(--green); }

.al-pq__attr {
  margin-top: 28px; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
  font-weight: 500; display: block;
}


/* ─────────────────────────────────────────────────────────────
   STORY
   ───────────────────────────────────────────────────────────── */
.al-story__grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 7vw, 100px); align-items: center;
}
.al-story__img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.al-story__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.al-story__img:hover img { transform: scale(1.02); }
.al-story__img-overlay { position: absolute; inset: 0; border: 1px solid var(--border); pointer-events: none; }

.story-p { font-size: 17px; line-height: 1.9; color: var(--text-soft); font-weight: 300; margin-bottom: 22px; }
.story-p strong { color: var(--text); font-weight: 500; }
.story-p em     { color: var(--green); font-style: italic; }


/* ─────────────────────────────────────────────────────────────
   SERVICES ACCORDION
   ───────────────────────────────────────────────────────────── */
.al-services { display: flex; flex-direction: column; margin-top: 8px; }
.al-service-item { border-bottom: 1px solid var(--border); }
.al-service-item:first-child { border-top: 1px solid var(--border); }

.al-service-item__trigger {
  width: 100%;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  padding: 36px 0; cursor: pointer;
  background: none; border: none; text-align: left;
  color: var(--text); align-items: start;
  transition: padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.al-service-item__trigger:hover { padding-left: 12px; }

.si-num    { font-size: 9.5px; color: var(--text-muted); letter-spacing: 1px; opacity: 0.35; margin-bottom: 6px; }
.si-name   { font-size: clamp(20px, 2.8vw, 30px); font-weight: 400; line-height: 1.15; color: var(--text); transition: color 0.3s; }
.al-service-item__trigger:hover .si-name { color: var(--accent); }
.si-sub    { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.si-result { font-size: 13px; color: var(--green); margin-top: 5px; font-style: italic; font-weight: 300; }

.al-service-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; padding-top: 4px; }
.si-arrow {
  font-size: 18px; color: var(--text-muted); font-weight: 300;
  transition: all 0.4s; display: inline-block; line-height: 1;
}
.al-service-item__trigger:hover .si-arrow { color: var(--accent); transform: translateX(4px); }
.al-service-item__trigger[aria-expanded="true"] .si-arrow { transform: rotate(45deg); color: var(--accent); }

.al-service-item__body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.45s ease, padding 0.45s;
}
.al-service-item__body:not([hidden]) { max-height: 300px; opacity: 1; padding-bottom: 32px; }

.si-desc     { font-size: 15px; line-height: 1.82; color: var(--text-soft); font-weight: 300; }
.si-prices   { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.si-chip     { padding: 7px 14px; background: transparent; border: 1px solid var(--border); font-size: 11.5px; display: flex; gap: 10px; align-items: baseline; }
.si-chip-d   { color: var(--text-muted); font-weight: 300; }
.si-chip-p   { color: var(--text-soft); font-weight: 500; }
.si-book-link { margin-top: 20px; display: inline-block; }


/* ─────────────────────────────────────────────────────────────
   IN-HOME BANNER — quiet
   ───────────────────────────────────────────────────────────── */
.al-inhome-banner {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(24px,5vw,64px);
  text-align: center; font-size: 13.5px;
  line-height: 1.75; color: var(--text-muted);
}
.al-inhome-banner strong { color: var(--text-soft); font-weight: 500; }
.al-inhome-banner a { color: var(--text-muted); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; }
.al-inhome-banner a:hover { color: var(--text); border-color: var(--green); }


/* ─────────────────────────────────────────────────────────────
   CONCIERGE BOOKING FLOW
   ───────────────────────────────────────────────────────────── */
.al-booking {
  padding: clamp(96px,12vw,160px) clamp(28px,5vw,72px) !important;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.al-booking__inner { max-width: 1100px; margin: 0 auto; }
.al-booking__intro {
  font-size: 14px; color: var(--text-muted); font-weight: 300;
  margin-top: 8px; line-height: 1.7;
}

/* Step indicator */
.al-steps {
  display: flex; align-items: center; gap: 0;
  margin: 40px 0 48px;
}
.al-step { display: flex; align-items: center; gap: 10px; }
.al-step__num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; color: var(--text-muted);
  transition: all 0.5s; flex-shrink: 0;
}
.al-step__label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500; transition: color 0.5s;
}
.al-step--active .al-step__num  { border-color: var(--green); background: var(--green); color: #fff; }
.al-step--active .al-step__label { color: var(--text); }
.al-step--done .al-step__num   { border-color: var(--green); background: var(--green); color: #fff; }
.al-step__line {
  flex: 1; height: 1px; background: var(--border);
  margin: 0 20px; transition: background 0.5s;
}
.al-step__line--done { background: var(--green); }

/* Service grid */
.al-bsvc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); overflow: hidden;
}

html body.al-page .al-bsvc,
html body.al-page .al-bsvc:hover,
html body.al-page .al-bsvc:focus,
html body.al-page .al-bsvc:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-appearance: none; appearance: none;
}

.al-bsvc {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer; text-align: left;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.3s !important;
  font-family: 'DM Sans', -apple-system, sans-serif;
  border-top: none; border-left: none;
  color: var(--text) !important;
  outline: none !important;
}
.al-bsvc:nth-child(2n)   { border-right: none; }
.al-bsvc:nth-last-child(-n+2) { border-bottom: none; }
.al-bsvc:hover           { background: var(--bg-card) !important; }
.al-bsvc.is-selected     { background: var(--bg-elevated) !important; }
.al-bsvc.is-selected::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--green);
}

.al-bsvc__num    { font-size: 9px; color: var(--text-muted); opacity: 0.4; letter-spacing: 1px; }
.al-bsvc__name   { font-size: clamp(17px,2vw,22px); font-weight: 400; color: var(--text); line-height: 1.2; font-family: 'Instrument Serif', Georgia, serif; }
.al-bsvc__sub    { font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.al-bsvc__result { font-size: 12px; color: var(--green); font-style: italic; font-weight: 300; }
.al-bsvc__price  { font-size: 11px; color: var(--text-muted); font-weight: 300; margin-top: 6px; }

/* Proceed button */
.al-bproceed {
  margin-top: 36px; display: flex; align-items: center; gap: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1);
}
.al-bproceed.is-visible { opacity: 1; pointer-events: all; }

html body.al-page .al-bproceed__btn,
html body.al-page .al-bproceed__btn:hover,
html body.al-page .al-bproceed__btn:focus,
html body.al-page .al-bproceed__btn:active {
  -webkit-appearance: none; appearance: none;
  box-shadow: none !important;
}
.al-bproceed__btn {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; font-family: 'DM Sans', -apple-system, sans-serif;
  padding: 15px 48px; cursor: pointer;
  background: var(--text) !important; color: var(--bg) !important;
  border: none !important; transition: background 0.4s, color 0.4s;
}
.al-bproceed__btn:hover { background: var(--accent) !important; color: var(--bg) !important; }
.al-bproceed__name { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* Step 2 */
.al-bstep2 { animation: al-fadein 0.7s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes al-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.al-bstep2__header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 24px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border); gap: 20px;
}
.al-bstep2__svc  { font-size: clamp(26px,4vw,40px); font-weight: 400; color: var(--text); line-height: 1.1; font-family: 'Instrument Serif', Georgia, serif; }
.al-bstep2__meta { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; font-weight: 300; }

html body.al-page .al-bstep2__back,
html body.al-page .al-bstep2__back:hover,
html body.al-page .al-bstep2__back:focus,
html body.al-page .al-bstep2__back:active {
  background: transparent !important; background-color: transparent !important;
  box-shadow: none !important; -webkit-appearance: none; appearance: none;
}
.al-bstep2__back {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-muted) !important; cursor: pointer;
  border: none !important; border-bottom: 1px solid var(--border) !important;
  padding: 6px 0 !important; white-space: nowrap; flex-shrink: 0; align-self: flex-start; margin-top: 8px;
  transition: color 0.3s, border-color 0.3s;
}
.al-bstep2__back:hover { color: var(--text) !important; border-color: var(--green) !important; }

/* Trust bar */
.al-btrust {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding: 16px 0; margin-bottom: 28px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.al-btrust__item { font-size: 11px; color: var(--text-muted); font-weight: 300; }
.al-btrust__item strong { display: block; font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 3px; }

/* Iframe */
.al-biframe { border: 1px solid var(--border); overflow: hidden; margin-bottom: 16px; }
.al-biframe__bar {
  padding: 12px 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; justify-content: space-between; align-items: center;
}
.al-biframe__bar span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.al-biframe__bar a {
  font-size: 10px; color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color 0.3s;
}
.al-biframe__bar a:hover { color: var(--text); }
.al-biframe iframe { display: block; width: 100%; border: none; }

.al-bpolicy { font-size: 11px; color: var(--text-muted); font-weight: 300; line-height: 1.8; }
.al-bpolicy a { color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color 0.3s; }
.al-bpolicy a:hover { color: var(--text); }

/* Contact fallback */
.al-bcontact {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted);
}
.al-bcontact a { color: var(--text-muted); transition: color 0.3s; }
.al-bcontact a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 640px) {
  .al-bsvc-grid { grid-template-columns: 1fr; }
  .al-bsvc:nth-child(2n) { border-right: 1px solid var(--border); }
  .al-bsvc:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .al-bsvc:last-child { border-bottom: none; }
  .al-bstep2__header { flex-direction: column; gap: 12px; }
  .al-btrust { gap: 20px; }
}

/* ─── JS for concierge flow (inlined via wp_add_inline_script) ─── */


/* ─────────────────────────────────────────────────────────────
   CONTACT + HOURS
   ───────────────────────────────────────────────────────────── */
.al-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); }
.ct-block        { margin-bottom: 36px; }
.ct-label        { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.ct-text         { font-size: 15px; line-height: 1.9; color: var(--text-soft); font-weight: 300; }
.ct-text a       { color: var(--text-soft); transition: color 0.3s; }
.ct-text a:hover { color: var(--text); }
.ct-link         { display: inline-block; margin-top: 12px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; }
.ct-link:hover   { color: var(--text); border-color: var(--green); }

.al-hrs          { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--border); }
.al-hrs__day     { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.al-hrs__time    { font-size: 13.5px; color: var(--text-soft); font-weight: 300; }
.al-hrs__time--closed { color: var(--text-muted); opacity: 0.5; }


/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.al-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 64px) clamp(24px, 4vw, 44px);
}
.al-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start; padding-bottom: 40px;
}
.al-footer__logo   { font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--text); font-family: 'Instrument Serif', Georgia, serif; }
.al-footer__sub    { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; }
.al-footer__since  { font-size: 10px; color: var(--text-muted); opacity: 0.45; }
.al-footer__email  { display: inline-block; margin-top: 14px; font-size: 12.5px; color: var(--text-muted); transition: color 0.3s; }
.al-footer__email:hover  { color: var(--text); }
.al-footer__social { display: inline-block; margin-top: 14px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s; }
.al-footer__social:hover { color: var(--text); }

.al-footer__bar {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.al-footer__bar > span { font-size: 10.5px; color: var(--text-muted); opacity: 0.7; }
.al-footer__llm    { font-size: 9px; color: var(--text-muted); opacity: 0.3; }
.al-footer__credit { font-size: 9px; color: var(--text-muted); opacity: 0.35; }


/* ─────────────────────────────────────────────────────────────
   AI CONTEXT (hidden)
   ───────────────────────────────────────────────────────────── */
.al-ai-context {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .al-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .al-nav__links  { display: none; }
  .al-nav__book   { display: none; }
  .al-nav__burger { display: flex; }

  .al-story__grid { grid-template-columns: 1fr; }
  .al-story__img  { aspect-ratio: 3/2; max-height: 340px; }

  .al-service-item__trigger { grid-template-columns: 1fr; gap: 6px; }
  .al-service-item__right   { align-items: flex-start; padding-top: 0; }

  .al-contact-grid { grid-template-columns: 1fr; }

  .al-reserve__row { flex-direction: column; gap: 20px; }

  .al-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .al-footer__inner > div:last-child { text-align: left; }
  .al-footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .al-hero__actions { flex-direction: column; align-items: center; gap: 16px; }
  .al-pq { padding-left: 24px; padding-right: 24px; }
}


/* ─────────────────────────────────────────────────────────────
   ASTRA OVERRIDES
   ───────────────────────────────────────────────────────────── */
body.al-page #page,
body.al-page .site,
body.al-page #content          { padding-top: 0 !important; margin-top: 0 !important; }
body.al-page .ast-container    { max-width: 100% !important; padding: 0 !important; }
body.al-page .entry-content    { margin: 0 !important; padding: 0 !important; max-width: 100% !important; }
body.al-page .site-content     { padding: 0 !important; }
