:root {
  --forest-950: #082c25;
  --forest-900: #123d34;
  --forest-800: #1b5246;
  --forest-100: #dcebe4;
  --sage-100: #eaf2ed;
  --sage-200: #d5e5dc;
  --cream-50: #fdfcf8;
  --cream-100: #f7f3e9;
  --sand-200: #e9dfca;
  --gold-400: #f1bd73;
  --gold-500: #e4a956;
  --clay-100: #f6e7df;
  --clay-700: #8b452f;
  --ink-900: #15231f;
  --ink-700: #384a44;
  --ink-500: #687771;
  --white: #fff;
  --border: rgba(21, 35, 31, .14);
  --shadow-sm: 0 8px 24px rgba(8, 44, 37, .08);
  --shadow-lg: 0 24px 70px rgba(8, 44, 37, .14);
  --radius-sm: .75rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --container: 75rem;
  --container-narrow: 58rem;
  --space-section: clamp(5rem, 9vw, 8.5rem);
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --duration: 220ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { margin: 0; overflow-x: hidden; background: var(--cream-50); color: var(--ink-900); font: 400 1rem/1.7 var(--font); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -.055em; line-height: 1.04; }
h1 { font-size: clamp(3.2rem, 7vw, 6.3rem); }
h2 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
h3 { line-height: 1.25; }
::selection { background: var(--gold-400); color: var(--forest-950); }

:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }
.container { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-section); }
[hidden] { display: none !important; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; padding: .75rem 1rem; border-radius: var(--radius-sm); background: var(--white); color: var(--forest-950); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.eyebrow span { width: 2rem; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--forest-800); }

.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.35rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform var(--duration) var(--ease), background var(--duration), color var(--duration), border-color var(--duration); }
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .55; cursor: wait; transform: none; }
.button-primary { background: var(--gold-400); color: var(--forest-950); }
.button-primary:hover { background: var(--gold-500); }
.button-secondary { border-color: var(--border); background: var(--white); color: var(--forest-900); }
.button-secondary:hover { border-color: var(--forest-800); }
.button-ghost { border-color: rgba(255,255,255,.32); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-light { background: var(--white); color: var(--forest-950); }
.button-small { min-height: 2.75rem; padding: .7rem 1rem; border-radius: .7rem; font-size: .82rem; }
.text-link, .text-button { color: var(--forest-800); font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: .3rem; }
.text-button { padding: .2rem; border: 0; background: transparent; cursor: pointer; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; padding-block: 1rem; color: var(--white); transition: background var(--duration), box-shadow var(--duration), padding var(--duration); }
.site-header.scrolled { padding-block: .7rem; background: rgba(8,44,37,.96); box-shadow: 0 1px rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark { width: 2.75rem; aspect-ratio: 1; display: grid; place-items: center; flex: none; border: 1px solid currentColor; border-radius: .8rem; color: var(--gold-400); font-size: 1.35rem; font-weight: 800; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: .95rem; letter-spacing: .28em; }
.brand-copy small { margin-top: .35rem; font-size: .54rem; font-weight: 700; letter-spacing: .17em; opacity: .66; }
.main-nav { display: flex; align-items: center; gap: 2rem; font-size: .86rem; font-weight: 700; }
.main-nav > a:not(.button):hover { color: var(--gold-400); }
.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; border: 0; background: transparent; color: var(--white); cursor: pointer; }
.nav-toggle span { display: block; width: 1.5rem; height: 2px; margin: .35rem auto; background: currentColor; transition: transform var(--duration); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(.23rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.23rem) rotate(-45deg); }

.hero { position: relative; min-height: 53rem; display: grid; align-items: center; overflow: hidden; background: var(--forest-950); color: var(--white); }
.hero::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, var(--forest-950) 0%, rgba(8,44,37,.98) 38%, rgba(8,44,37,.4) 68%, rgba(8,44,37,.05)); }
.hero-photo { position: absolute; inset: 0 0 0 46%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.hero-layout { position: relative; z-index: 3; padding-block: 9rem 5rem; }
.hero-copy { max-width: 45rem; }
.hero h1 { margin-bottom: 1.75rem; }
.hero-lead { max-width: 39rem; margin-bottom: 2rem; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.5vw, 1.17rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-facts { max-width: 46rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 3.75rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.hero-facts li { padding: 1.35rem 1.1rem 0; border-left: 1px solid rgba(255,255,255,.18); }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts span, .hero-facts strong { display: block; }
.hero-facts span { margin-bottom: .35rem; color: rgba(255,255,255,.54); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-facts strong { font-size: .86rem; }

.urgent-band { background: var(--gold-400); color: var(--forest-950); }
.urgent-content { min-height: 7.5rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; }
.urgent-icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid rgba(8,44,37,.25); border-radius: 50%; font-weight: 800; }
.urgent-content h2 { margin: 0 0 .15rem; font-size: 1.1rem; letter-spacing: -.02em; }
.urgent-content p { margin: 0; font-size: .9rem; }
.urgent-content a { font-size: .88rem; font-weight: 800; }
.urgent-content > a, .text-link, .contact-grid article a, .footer-main nav a { display: inline-block; padding-block: .3rem; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: end; gap: 4rem; margin-bottom: 3.5rem; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { color: var(--ink-500); }
.section-heading.compact { grid-template-columns: minmax(0, 52rem); }
.services { background: var(--cream-100); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 21rem; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); transition: transform var(--duration) var(--ease), box-shadow var(--duration), border-color var(--duration); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(18,61,52,.35); box-shadow: var(--shadow-sm); }
.service-index { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; margin-bottom: 3rem; border-radius: .7rem; background: var(--sage-100); color: var(--forest-800); font-size: .7rem; font-weight: 800; }
.service-card h3 { margin-bottom: .75rem; font-size: 1.35rem; letter-spacing: -.03em; }
.service-card p { color: var(--ink-500); }
.card-action { margin-top: auto; color: var(--forest-800); font-size: .78rem; font-weight: 800; }
.service-card-accent { background: var(--forest-900); color: var(--white); }
.service-card-accent p { color: rgba(255,255,255,.67); }
.service-card-accent .service-index { background: rgba(255,255,255,.1); color: var(--gold-400); }
.service-card-accent .card-action { color: var(--gold-400); }

.trust { background: var(--white); }
.trust-layout { display: grid; grid-template-columns: minmax(20rem, .9fr) minmax(22rem, 1.1fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.trust-photo { position: relative; max-height: 43rem; overflow: hidden; border-radius: var(--radius-lg); background: var(--sage-100); }
.trust-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); border-radius: inherit; }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; }
.trust-copy > p:not(.eyebrow) { max-width: 39rem; color: var(--ink-500); }
.trust-points { margin-top: 2.5rem; border-top: 1px solid var(--border); }
.trust-points article { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding-block: 1.15rem; border-bottom: 1px solid var(--border); }
.trust-points article > span { color: var(--forest-800); font-size: .72rem; font-weight: 800; }
.trust-points h3 { margin-bottom: .25rem; font-size: 1rem; }
.trust-points p { margin: 0; color: var(--ink-500); font-size: .9rem; }

.process { background: var(--sage-100); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(18,61,52,.14); border: 1px solid rgba(18,61,52,.14); border-radius: var(--radius-md); overflow: hidden; }
.process-grid li { min-height: 17rem; padding: 2rem; background: var(--sage-100); }
.process-grid li > span { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; margin-bottom: 3.5rem; border-radius: 50%; background: var(--forest-900); color: var(--white); font-size: .78rem; font-weight: 800; }
.process-grid h3 { margin-bottom: .65rem; font-size: 1.05rem; }
.process-grid p { margin: 0; color: var(--ink-500); font-size: .9rem; }

.about { background: var(--cream-100); }
.about-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: clamp(3rem, 10vw, 10rem); }
.about-kicker { min-height: 22rem; display: flex; flex-direction: column; justify-content: center; padding: 3rem; border-radius: var(--radius-lg); background: var(--forest-900); color: var(--white); }
.about-kicker span { color: var(--gold-400); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 800; letter-spacing: -.08em; }
.about-kicker strong { font-size: 1.1rem; }
.about-kicker small { margin-top: .35rem; color: rgba(255,255,255,.6); }
.about-copy > p:not(.eyebrow) { max-width: 43rem; color: var(--ink-500); font-size: 1.06rem; }

.booking { position: relative; background: var(--forest-950); color: var(--white); }
.booking::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 20% 20%, var(--gold-400) 0 1px, transparent 1.5px); background-size: 22px 22px; }
.booking .container { position: relative; }
.booking-intro { max-width: 54rem; margin-bottom: 3.5rem; }
.booking-intro > p:last-child { max-width: 42rem; color: rgba(255,255,255,.68); }
.booking-intro a { color: var(--gold-400); font-weight: 800; }
.booking-app { display: grid; grid-template-columns: 15rem minmax(0, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: var(--cream-50); color: var(--ink-900); box-shadow: var(--shadow-lg); }
.booking-progress { padding: 2.3rem 1.5rem; background: var(--forest-900); color: var(--white); }
.booking-progress ol { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.booking-progress li { position: relative; display: grid; grid-template-columns: 2.35rem 1fr; align-items: center; gap: .75rem; min-height: 4rem; color: rgba(255,255,255,.45); }
.booking-progress li::after { content: ""; position: absolute; left: 1.15rem; top: 3.25rem; bottom: -1rem; width: 1px; background: rgba(255,255,255,.13); }
.booking-progress li:last-child::after { display: none; }
.booking-progress li span { width: 2.35rem; height: 2.35rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .75rem; }
.booking-progress li strong { font-size: .82rem; }
.booking-progress li.active, .booking-progress li.done { color: var(--white); }
.booking-progress li.active span { border-color: var(--gold-400); background: var(--gold-400); color: var(--forest-950); }
.booking-progress li.done span { background: rgba(255,255,255,.1); }
.booking-panel { min-height: 39rem; padding: clamp(1.5rem, 5vw, 3.5rem); }
.booking-status { min-height: 0; }
.booking-status:not(:empty) { margin-bottom: 1.5rem; padding: .9rem 1rem; border: 1px solid #d6b56f; border-radius: var(--radius-sm); background: #fff6dc; color: #684d18; font-size: .88rem; }
.stage-heading { margin-bottom: 2rem; }
.stage-heading p { margin-bottom: .55rem; color: var(--forest-800); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.stage-heading h3 { margin-bottom: .45rem; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.045em; }
.stage-heading > span { color: var(--ink-500); font-size: .88rem; }
.booking-services { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.booking-service { min-height: 6.8rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: 1.2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900); text-align: left; cursor: pointer; transition: border-color var(--duration), background var(--duration), transform var(--duration); }
.booking-service:hover { transform: translateY(-2px); border-color: var(--forest-800); }
.booking-service.selected { border-color: var(--forest-800); background: var(--sage-100); box-shadow: inset 0 0 0 1px var(--forest-800); }
.booking-service strong, .booking-service small { display: block; }
.booking-service strong { margin-bottom: .3rem; }
.booking-service small { color: var(--ink-500); line-height: 1.45; }
.booking-service em { color: var(--forest-800); font-size: .75rem; font-style: normal; font-weight: 800; white-space: nowrap; }
.date-control { max-width: 24rem; display: flex; flex-direction: column; gap: .45rem; }
.date-control label, .form-grid label { font-size: .8rem; font-weight: 800; }
.date-control small, .form-grid small { color: var(--ink-500); font-size: .72rem; font-weight: 500; }
input, textarea, select { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900); outline: none; transition: border-color var(--duration), box-shadow var(--duration); }
input { min-height: 3.25rem; padding: .75rem .9rem; }
textarea { min-height: 7.5rem; padding: .85rem .9rem; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--forest-800); box-shadow: 0 0 0 4px rgba(27,82,70,.11); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--clay-700); }
.slot-heading { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.slot-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: .65rem; margin-top: 1rem; }
.slot-button { min-height: 4.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900); cursor: pointer; }
.slot-button strong, .slot-button small { display: block; }
.slot-button small { color: var(--ink-500); font-size: .7rem; }
.slot-button:hover, .slot-button.selected { border-color: var(--forest-800); background: var(--sage-100); box-shadow: inset 0 0 0 1px var(--forest-800); }
.booking-empty, .booking-loading { grid-column: 1 / -1; min-height: 7rem; display: grid; place-items: center; margin: 0; padding: 1.5rem; border: 1px dashed var(--border); border-radius: var(--radius-sm); color: var(--ink-500); text-align: center; }
.booking-loading::before { content: ""; width: 1.25rem; height: 1.25rem; margin-right: .65rem; border: 2px solid var(--sage-200); border-top-color: var(--forest-800); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid label { display: flex; flex-direction: column; gap: .45rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid .optional { float: right; color: var(--ink-500); font-size: .7rem; font-weight: 500; }
.field-error, [data-field-error] { min-height: 1rem; color: var(--clay-700) !important; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.review-list { margin: 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.review-list div { display: grid; grid-template-columns: minmax(8rem, .38fr) 1fr; gap: 1rem; padding: .95rem 1.15rem; border-bottom: 1px solid var(--border); }
.review-list div:last-child { border-bottom: 0; }
.review-list dt { color: var(--ink-500); font-size: .78rem; }
.review-list dd { margin: 0; font-size: .88rem; font-weight: 700; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .8rem; margin-top: 1.25rem; padding: 1rem; border-radius: var(--radius-sm); background: var(--sage-100); cursor: pointer; }
.consent input { width: 1.25rem; min-height: 1.25rem; margin: .18rem 0 0; accent-color: var(--forest-800); }
.consent span { font-size: .82rem; font-weight: 500; }
.consent strong { color: var(--clay-700); }
.form-message { min-height: 1.5rem; margin: 1rem 0 0; color: var(--clay-700); font-size: .85rem; font-weight: 700; }
.booking-actions { display: flex; justify-content: space-between; gap: .75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.booking-actions [data-booking-next], .booking-actions [data-booking-submit] { margin-left: auto; }
.booking-success { max-width: 39rem; margin: 1.5rem auto; text-align: center; }
.success-mark { width: 4rem; height: 4rem; display: grid; place-items: center; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--sage-200); color: var(--forest-800); font-size: 1.6rem; }
.booking-success > p:first-of-type { margin-bottom: .6rem; color: var(--forest-800); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.booking-success h3 { font-size: 2.2rem; letter-spacing: -.05em; }
.booking-success [data-booking-confirmation] { margin: 1.5rem 0; padding: 1.2rem; border-radius: var(--radius-md); background: var(--sage-100); }
.booking-success [data-booking-confirmation] strong { display: block; font-size: 1.05rem; }
.booking-success [data-booking-confirmation] small { display: block; color: var(--ink-500); }

.contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy > p:not(.eyebrow) { max-width: 30rem; color: var(--ink-500); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.contact-grid article { min-height: 11rem; display: flex; flex-direction: column; align-items: flex-start; padding: 1.75rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-grid small { margin-bottom: 1rem; color: var(--ink-500); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.contact-grid strong, .contact-grid > article > a:first-of-type { font-size: 1.05rem; line-height: 1.6; }
.contact-grid article a + a { margin-top: .45rem; }

.faq { background: var(--cream-100); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 9vw, 9rem); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.4rem; font-weight: 400; transition: transform var(--duration); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 46rem; padding: 0 2rem 1.4rem 0; color: var(--ink-500); }
.faq-list details a { color: var(--forest-800); font-weight: 800; }

.footer { padding: 4rem 0 1.5rem; background: var(--forest-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 4rem; padding-bottom: 3rem; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.55); }
.footer-main nav { display: flex; gap: 1.4rem; font-size: .82rem; }
.footer-main nav a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .72rem; }
.mobile-booking-cta { display: none; }

.js-ready .reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* Postojeći privatni admin ostaje funkcionalan; javna dostupnost dolazi iz Google Calendara. */
.admin-body { min-height: 100vh; background: var(--cream-100); }
.admin-topbar { min-height: 4.75rem; display: flex; align-items: center; justify-content: space-between; padding: .75rem 4vw; background: var(--forest-900); color: var(--white); }
.admin-public-link, .logout-button, .reset-button { border: 0; background: transparent; color: inherit; font-weight: 700; cursor: pointer; }
.login-view { min-height: calc(100vh - 4.75rem); display: grid; grid-template-columns: 1fr 1fr; }
.login-intro { position: relative; overflow: hidden; padding: 10vh 8vw; background: var(--forest-950); color: var(--white); }
.login-intro h1 { font-size: clamp(3.5rem, 7vw, 6rem); }
.login-intro > p:not(.eyebrow) { max-width: 30rem; color: rgba(255,255,255,.65); }
.login-shape { position: absolute; right: -5rem; bottom: -8rem; color: rgba(241,189,115,.12); font-size: 18rem; font-weight: 800; }
.login-card { align-self: center; width: min(27rem, calc(100% - 2rem)); margin: auto; padding: 2.5rem; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.login-card h2 { margin: .5rem 0; font-size: 2.5rem; }
.login-card > p { color: var(--ink-500); }
.login-card label, .reminder-form label { display: flex; flex-direction: column; gap: .4rem; margin-top: 1rem; font-size: .8rem; font-weight: 800; }
.login-card .button { width: 100%; margin-top: .5rem; }
.secure-note { display: block; margin-top: 1rem; color: var(--ink-500); text-align: center; }
.admin-dashboard { padding: 3rem 4vw; }
.dashboard-header { max-width: 90rem; display: flex; align-items: center; gap: 2rem; margin: 0 auto 2rem; }
.dashboard-header > div:first-child { flex: 1; }
.dashboard-header h1 { margin-bottom: .25rem; font-size: 3rem; }
.dashboard-header p { color: var(--ink-500); }
.dashboard-date { padding-left: 1.5rem; border-left: 1px solid var(--border); }
.dashboard-date small, .dashboard-date strong { display: block; }
.dashboard-layout { max-width: 90rem; display: grid; grid-template-columns: 1fr 23rem; gap: 1.25rem; margin: auto; }
.schedule-card, .reminders-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.card-heading { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem; border-bottom: 1px solid var(--border); }
.card-heading small { color: var(--ink-500); font-size: .65rem; letter-spacing: .1em; }
.card-heading h2 { margin: 0; font-size: 1.5rem; }
.save-state { padding: .4rem .65rem; border-radius: var(--radius-pill); background: var(--sage-100); color: var(--forest-800); font-size: .7rem; }
.admin-calendar-wrap { display: grid; grid-template-columns: minmax(22rem, .9fr) minmax(25rem, 1.1fr); }
.admin-mini-calendar, .admin-slots { padding: 1.5rem; }
.admin-mini-calendar { border-right: 1px solid var(--border); }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.calendar-toolbar button, .icon-button { width: 2.5rem; height: 2.5rem; border: 1px solid var(--border); border-radius: 50%; background: var(--white); cursor: pointer; }
.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.weekdays span { padding: .5rem 0; color: var(--ink-500); font-size: .65rem; text-align: center; }
.calendar-day { min-height: 3rem; border: 1px solid transparent; border-radius: .55rem; background: var(--cream-100); cursor: pointer; }
.calendar-day:hover:not(:disabled), .calendar-day.selected { border-color: var(--forest-800); background: var(--sage-100); }
.calendar-day.outside, .calendar-day.past, .calendar-day.closed, .calendar-day:disabled { opacity: .3; cursor: not-allowed; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.time-slot { min-height: 3.5rem; border: 1px solid var(--border); border-radius: .55rem; background: var(--white); cursor: pointer; }
.time-slot strong, .time-slot small { display: block; }
.time-slot small { color: var(--ink-500); }
.time-slot.busy { background: var(--clay-100); color: var(--clay-700); }
.admin-savebar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.legend { display: flex; gap: 1rem; font-size: .75rem; }
.reminder-form { padding: 1.25rem; background: var(--cream-100); }
.reminder-form > div { display: flex; justify-content: flex-end; gap: .75rem; margin-top: .75rem; }
.reminder-tabs { display: flex; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.reminder-tabs button { border: 0; background: transparent; color: var(--ink-500); cursor: pointer; }
.reminder-tabs button.active { color: var(--forest-800); font-weight: 800; }
.reminder-item { display: grid; grid-template-columns: 1.75rem 1fr 1.5rem; gap: .5rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.reminder-item button { border: 0; background: transparent; cursor: pointer; }
.reminder-item p { margin: 0; }
.reminder-empty { padding: 3rem 1.25rem; text-align: center; color: var(--ink-500); }
.reminder-empty strong { display: block; color: var(--ink-900); }
.reminder-footnote { margin: 0; padding: 1rem; border-top: 1px solid var(--border); color: var(--ink-500); font-size: .72rem; text-align: center; }

@media (max-width: 64rem) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .admin-calendar-wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 50rem) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .site-header { padding-block: .75rem; background: rgba(8,44,37,.88); backdrop-filter: blur(10px); }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 4.25rem 0 0; display: none; align-items: stretch; flex-direction: column; gap: .35rem; padding: 2rem 1rem; background: var(--forest-950); font-size: 1.1rem; }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav .button { margin-top: 1rem; border: 0; }
  .hero { min-height: auto; padding-top: 4.25rem; }
  .hero::before { background: linear-gradient(180deg, rgba(8,44,37,.42) 0%, rgba(8,44,37,.85) 34%, var(--forest-950) 63%); }
  .hero-photo { inset: 4.25rem 0 auto; height: 28rem; }
  .hero-photo img { object-position: 50% 45%; }
  .hero-layout { padding: 25rem 0 3rem; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 42rem; font-size: clamp(3rem, 11vw, 5rem); }
  .hero-facts { margin-top: 2.5rem; }
  .urgent-content { grid-template-columns: auto 1fr; padding-block: 1.25rem; }
  .urgent-content a { grid-column: 2; }
  .section-heading, .trust-layout, .about-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-heading { align-items: start; }
  .trust-photo { max-height: 34rem; }
  .about-kicker { min-height: 16rem; }
  .booking-app { grid-template-columns: 1fr; }
  .booking-progress { padding: 1rem; }
  .booking-progress ol { grid-template-columns: repeat(4, 1fr); gap: .25rem; }
  .booking-progress li { grid-template-columns: 1fr; justify-items: center; min-height: auto; text-align: center; }
  .booking-progress li::after { left: calc(50% + 1.35rem); right: calc(-50% + 1.35rem); top: 1.15rem; bottom: auto; width: auto; height: 1px; }
  .booking-progress li strong { font-size: .67rem; }
  .slot-list { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main nav { flex-wrap: wrap; }
  .login-view { grid-template-columns: 1fr; }
  .login-intro { display: none; }
  .login-card { margin-top: 8vh; }
  .admin-calendar-wrap { grid-template-columns: 1fr; }
  .admin-mini-calendar { border-right: 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 36rem) {
  body { padding-bottom: 4.5rem; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .section { padding-block: 4.75rem; }
  .brand-copy strong { font-size: .8rem; }
  .brand-copy small { font-size: .47rem; }
  .hero-photo { height: 23rem; }
  .hero-layout { padding-top: 21rem; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts li, .hero-facts li:first-child { padding: .9rem 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-facts li:last-child { border-bottom: 0; }
  .urgent-content { grid-template-columns: 2.5rem 1fr; gap: .8rem; }
  .urgent-content a { grid-column: 1 / -1; padding-top: .3rem; }
  .section-heading { margin-bottom: 2.5rem; }
  .service-grid, .process-grid, .booking-services, .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 17rem; }
  .service-index { margin-bottom: 2rem; }
  .process-grid { gap: 1px; }
  .process-grid li { min-height: 14rem; }
  .process-grid li > span { margin-bottom: 2rem; }
  .trust-photo { height: 29rem; }
  .about-kicker { padding: 2rem; }
  .booking-intro { margin-bottom: 2.5rem; }
  .booking-app { overflow: visible; border-radius: var(--radius-md); }
  .booking-progress { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .booking-progress li strong { display: none; }
  .booking-panel { min-height: 0; padding: 1.25rem; }
  .booking-services { gap: .65rem; }
  .booking-service { min-height: 6rem; }
  .slot-list { grid-template-columns: repeat(3, 1fr); }
  .form-grid .full { grid-column: auto; }
  .review-list div { grid-template-columns: 1fr; gap: .2rem; }
  .booking-actions { position: sticky; z-index: 5; bottom: 4.7rem; margin-inline: -1.25rem; padding: 1rem 1.25rem; background: var(--cream-50); box-shadow: 0 -8px 24px rgba(8,44,37,.08); }
  .booking-actions .button { flex: 1; }
  .contact-grid { border-left: 0; }
  .contact-grid article { min-height: auto; border-left: 1px solid var(--border); }
  .footer-bottom { flex-direction: column; }
  .mobile-booking-cta { position: fixed; z-index: 90; right: .75rem; bottom: .75rem; left: .75rem; min-height: 3.25rem; display: flex; align-items: center; justify-content: space-between; padding: .75rem 1rem; border-radius: var(--radius-sm); background: var(--gold-400); color: var(--forest-950); box-shadow: 0 10px 28px rgba(8,44,37,.28); font-weight: 800; transition: opacity var(--duration), transform var(--duration); }
  .mobile-booking-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(calc(100% + 1rem)); }
  .dashboard-header { align-items: flex-start; flex-direction: column; }
  .dashboard-date { display: none; }
  .admin-dashboard { padding: 2rem .75rem; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .admin-savebar { align-items: flex-start; flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}
