/* ═══════════════════════════════════════════════════════════════════
   Studio Freya — Nordic style
   ═══════════════════════════════════════════════════════════════════ */

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

/* ─── Tokens ────────────────────────────────────────────────────── */
:root {
  /* palette */
  --c-bg:        #f6f5f2;      /* warm off-white linen */
  --c-surface:   #ffffff;
  --c-dark:      #1a1916;      /* warm near-black */
  --c-mid:       #252420;      /* dark section bg */
  --c-deep:      #1a1916;      /* footer */
  --c-accent:    #4a6251;      /* muted nordic forest green */
  --c-accent-lt: #e8efe9;      /* very light green tint */
  --c-muted:     #7a7873;
  --c-border:    #dddad4;
  --c-soft:      #eceae5;      /* section divider / soft bg */

  /* status colours */
  --c-free:      #3c9e60;
  --c-free-bg:   #edf7f1;
  --c-free-bd:   #9fd4b2;
  --c-taken:     #c94040;
  --c-taken-bg:  #fdf0f0;
  --c-taken-bd:  #eaabab;

  /* typography */
  --f-serif:  'Cormorant Garamond', Georgia, serif;
  --f-sans:   'DM Sans', system-ui, sans-serif;

  /* layout */
  --max-w:    1200px;
  --pad-sec:  7rem 1.5rem;
}

/* ─── Base ──────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-dark);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Type scale ────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; margin-bottom: .4rem; }

/* ─── Section header ────────────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }

.section-title {
  display: block;
  margin-bottom: .8rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--c-accent);
  margin-top: .9rem;
}

.section-sub {
  color: var(--c-muted);
  font-size: .95rem;
  max-width: 480px;
  line-height: 1.65;
}

/* ─── Container ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: var(--f-sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--c-dark);
  color: var(--c-bg);
  border: 1px solid var(--c-dark);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.btn:hover { background: var(--c-accent); border-color: var(--c-accent); }

.btn--outline {
  background: transparent;
  color: var(--c-dark);
}
.btn--outline:hover {
  background: var(--c-dark);
  color: var(--c-bg);
}

.btn--ghost {
  background: transparent;
  color: var(--c-bg);
  border-color: rgba(246,245,242,.35);
}
.btn--ghost:hover {
  background: var(--c-bg);
  color: var(--c-dark);
  border-color: var(--c-bg);
}

/* Dark-section btn overrides */
.section--dark .btn {
  background: var(--c-bg);
  color: var(--c-dark);
  border-color: var(--c-bg);
}
.section--dark .btn:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(246, 245, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,.07); }

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--c-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--c-dark); }

.nav-link-booking {
  background: var(--c-accent) !important;
  color: #fff !important;
  padding: .4rem 1rem;
  letter-spacing: .1em;
}
.nav-link-booking:hover { background: var(--c-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-dark);
  transition: transform .28s, opacity .28s;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 5.5rem;
  overflow: hidden;
  background: var(--c-mid);
}

/* Swap this for a real photo:
   background-image: url('../images/hero.jpg');
   background-size: cover; background-position: center; */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,25,22,.72) 0%, transparent 55%),
    linear-gradient(150deg, #232820 0%, #1a1916 50%, #201e1a 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  color: var(--c-bg);
}

.hero-eyebrow {
  display: block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}

.hero-content h1 { margin-bottom: 2.5rem; }
.hero-content h1 em { font-style: italic; opacity: .7; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.section { padding: var(--pad-sec); }

.section--dark {
  background: var(--c-mid);
  color: var(--c-bg);
}
.section--dark .section-title::after { background: var(--c-accent); }
.section--dark .section-sub { color: rgba(246,245,242,.55); }

/* ═══════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: .75rem;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-soft);
}

/* Gallery images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.service-card {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.service-number {
  display: block;
  font-family: var(--f-serif);
  font-size: 2.2rem;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.service-card h3 { color: var(--c-bg); margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: rgba(246,245,242,.55); line-height: 1.65; }
.service-gear { margin: .75rem 0 0 1rem; padding: 0; list-style: disc; font-size: .82rem; color: rgba(246,245,242,.38); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image .gallery-placeholder { height: 540px; }

.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--c-muted); margin-bottom: 1.2rem; font-size: .95rem; }

.about-meta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 2rem 0 2rem;
  padding: 1.5rem;
  background: var(--c-soft);
  border-left: 2px solid var(--c-accent);
}

.about-meta-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  font-size: .88rem;
}

.about-meta-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING WIDGET
   ═══════════════════════════════════════════════════════════════════ */
.section--booking { background: var(--c-soft); }

.bk-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 32px rgba(26,25,22,.06);
}

/* ── Duration bar ─────────────────────────────────────────────── */
.bk-duration-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c-border);
}

.bk-dur-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  padding: 1.4rem 2rem;
  background: none;
  border: none;
  border-right: 1px solid var(--c-border);
  cursor: pointer;
  text-align: left;
  transition: background .18s;
}
.bk-dur-btn:last-child { border-right: none; }

.bk-dur-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}

.bk-dur-btn:hover { background: var(--c-accent-lt); }
.bk-dur-btn.active { background: var(--c-accent-lt); }
.bk-dur-btn.active::after { transform: scaleX(1); }

.bk-dur-time {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1;
}

.bk-dur-price {
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--c-accent);
}

.bk-dur-badge {
  position: absolute;
  top: .9rem;
  right: 1.2rem;
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--c-accent);
  color: #fff;
  padding: .2rem .55rem;
}

/* ── Main area ────────────────────────────────────────────────── */
.bk-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 420px;
}

/* ── Calendar ─────────────────────────────────────────────────── */
.bk-calendar {
  padding: 2rem 1.8rem 1.2rem;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.bk-cal-title {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--c-dark);
}

.bk-cal-nav {
  width: 2rem;
  height: 2rem;
  background: none;
  border: 1px solid var(--c-border);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.bk-cal-nav:hover {
  background: var(--c-dark);
  color: var(--c-bg);
  border-color: var(--c-dark);
}

.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .5rem;
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  border-radius: 2px;
  cursor: default;
  transition: background .15s, color .15s;
  gap: 2px;
  position: relative;
}

/* Available day */
.bk-cal-day--avail {
  cursor: pointer;
  color: var(--c-dark);
}
.bk-cal-day--avail:hover { background: var(--c-accent-lt); }

/* Unavailable day */
.bk-cal-day--off { color: #c8c5be; }

/* Past / empty */
.bk-cal-day--empty { cursor: default; }
.bk-cal-day--past  { color: #d5d2cb; }

/* Today ring */
.bk-cal-day--today .bk-day-num {
  outline: 1px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Selected */
.bk-cal-day--selected {
  background: var(--c-dark) !important;
  color: var(--c-bg) !important;
  border-radius: 2px;
}
.bk-cal-day--selected .bk-day-dot { background: var(--c-accent) !important; }

/* Availability dot */
.bk-day-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-free);
  flex-shrink: 0;
}

/* Calendar legend */
.bk-cal-legend {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  font-size: .7rem;
  color: var(--c-muted);
  letter-spacing: .04em;
}
.bk-cal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-free);
  margin-right: .2rem;
}

/* ── Slots panel ──────────────────────────────────────────────── */
.bk-slots-panel {
  display: flex;
  flex-direction: column;
}

.bk-slots-header {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--c-border);
}

.bk-slots-title {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-dark);
}

.bk-slots-list {
  flex: 1;
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  overflow-y: auto;
}

.bk-slots-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #c5c2bb;
  text-align: center;
  font-size: .85rem;
  line-height: 1.65;
  padding: 2.5rem;
}

/* Slot row */
.bk-slot {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform .12s, box-shadow .12s;
}

.bk-slot--free {
  background: var(--c-free-bg);
  border-color: var(--c-free-bd);
  cursor: pointer;
}
.bk-slot--free:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(60,158,96,.12);
}

.bk-slot--taken {
  background: var(--c-taken-bg);
  border-color: var(--c-taken-bd);
  cursor: not-allowed;
  opacity: .7;
}

.bk-slot--selected {
  background: var(--c-dark) !important;
  border-color: var(--c-dark) !important;
  transform: translateX(3px);
}
.bk-slot--selected .bk-slot-dot   { background: var(--c-accent) !important; }
.bk-slot--selected .bk-slot-time,
.bk-slot--selected .bk-slot-label { color: var(--c-bg) !important; }

.bk-slot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bk-slot--free  .bk-slot-dot { background: var(--c-free); }
.bk-slot--taken .bk-slot-dot { background: var(--c-taken); }

.bk-slot-time {
  flex: 1;
  font-size: .88rem;
  color: var(--c-dark);
}

.bk-slot-label {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bk-slot--free  .bk-slot-label { color: var(--c-free); }
.bk-slot--taken .bk-slot-label { color: var(--c-taken); }

.bk-no-slots {
  font-size: .88rem;
  color: var(--c-muted);
  padding: 1rem 0;
}

/* Slots legend */
.bk-legend {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 2rem;
  border-top: 1px solid var(--c-border);
  font-size: .72rem;
  color: var(--c-muted);
  letter-spacing: .04em;
}
.bk-legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: .15rem;
}
.bk-legend-dot--free  { background: var(--c-free); }
.bk-legend-dot--taken { background: var(--c-taken); }

/* ── Form panel ───────────────────────────────────────────────── */
.bk-form-panel {
  border-top: 1px solid var(--c-border);
  padding: 2rem 2rem 2.5rem;
}
.bk-form-panel[hidden] { display: none; }

.bk-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.bk-selection-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  background: var(--c-accent-lt);
  border: 1px solid var(--c-free-bd);
  padding: .6rem 1.2rem;
  font-size: .83rem;
  color: var(--c-dark);
  border-radius: 2px;
}
.bk-selection-badge strong { color: var(--c-accent); font-weight: 400; }
.bk-badge-sep {
  width: 1px;
  height: 12px;
  background: var(--c-free-bd);
  display: inline-block;
}

.bk-change-btn {
  background: none;
  border: 1px solid var(--c-border);
  padding: .5rem 1.1rem;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--c-muted);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  font-family: var(--f-sans);
}
.bk-change-btn:hover { border-color: var(--c-dark); color: var(--c-dark); }

.bk-form { display: flex; flex-direction: column; gap: 1rem; }

.bk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: .5rem;
}

.bk-field { display: flex; flex-direction: column; gap: .3rem; }
.bk-field--full { grid-column: 1 / -1; }

.bk-field label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.bk-field input,
.bk-field textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  padding: .75rem .9rem;
  font-family: var(--f-sans);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color .18s;
}
.bk-field input:focus,
.bk-field textarea:focus { border-color: var(--c-accent); }
.bk-field textarea { resize: vertical; }

/* ── Success ──────────────────────────────────────────────────── */
.bk-success {
  text-align: center;
  padding: 5rem 2rem 5.5rem;
}
.bk-success[hidden] { display: none; }

.bk-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--c-free-bg);
  border: 1.5px solid var(--c-free);
  color: var(--c-free);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
}

.bk-success h3 {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: .8rem;
}

.bk-success p { color: var(--c-muted); font-size: .93rem; margin-bottom: 2.5rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: .5rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .9rem;
  color: rgba(246,245,242,.7);
}

.contact-detail-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.contact-detail-item a { transition: color .15s; }
.contact-detail-item a:hover { color: var(--c-bg); }

.contact-lead {
  color: rgba(246,245,242,.6);
  font-size: .93rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-form { display: flex; flex-direction: column; gap: .9rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--c-bg);
  padding: .8rem 1rem;
  font-family: var(--f-sans);
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .18s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(246,245,242,.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--c-accent); }
.contact-form textarea { resize: vertical; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-deep);
  color: rgba(246,245,242,.4);
  padding: 2.2rem 1.5rem;
  font-size: .78rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.footer .logo { color: var(--c-bg); font-size: 1.15rem; }
.footer-address { font-size: .72rem; opacity: .6; }
.footer-copy { font-size: .72rem; }

.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .18s;
}
.footer-social a:hover { color: var(--c-bg); }

/* ═══════════════════════════════════════════════════════════════════
   LOGO
   ═══════════════════════════════════════════════════════════════════ */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-dark);
}

.logo-svg { display: block; height: 28px; width: auto; }

.logo-link--footer { color: var(--c-bg); }

/* ═══════════════════════════════════════════════════════════════════
   EYEBROW
   ═══════════════════════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
  font-family: var(--f-sans);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO FILTER
   ═══════════════════════════════════════════════════════════════════ */
.portfolio-filter {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pf-btn {
  background: none;
  border: 1px solid var(--c-border);
  padding: .4rem 1.1rem;
  font-family: var(--f-sans);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.pf-btn:hover { background: var(--c-soft); color: var(--c-dark); border-color: var(--c-dark); }
.pf-btn.active { background: var(--c-dark); color: var(--c-bg); border-color: var(--c-dark); }

/* Gallery item inner wrapper & hover */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-item-inner .gallery-placeholder {
  transition: transform .45s cubic-bezier(.25,.1,.25,1);
}
.gallery-item:hover .gallery-placeholder {
  transform: scale(1.04);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem .9rem;
  background: linear-gradient(to top, rgba(26,25,22,.65) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

.gallery-caption-cat {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246,245,242,.85);
  border: 1px solid rgba(246,245,242,.3);
  padding: .15rem .55rem;
  line-height: 1.6;
  font-family: var(--f-sans);
}

/* ═══════════════════════════════════════════════════════════════════
   PHOTOGRAPHER SECTION
   ═══════════════════════════════════════════════════════════════════ */
.section--photographer {
  background: var(--c-surface);
  padding: 0;
  overflow: hidden;
}

.photographer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.photographer-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.photographer-body {
  padding: 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-soft);
}

.photographer-body .section-title {
  margin-bottom: 1.8rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.photographer-bio {
  color: var(--c-muted);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.photographer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 2rem 0 2.5rem;
}

.photo-tag {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  font-family: var(--f-sans);
}

.photographer-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ─── Booking: photographer checkbox ─────────────────────────── */
.bk-check-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: var(--c-accent-lt);
  border: 1px solid var(--c-free-bd);
  cursor: pointer;
  transition: background .15s;
  user-select: none;
  border-radius: 2px;
}
.bk-check-wrap:hover { background: #dde8df; }

.bk-check-input { display: none; }

.bk-check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c-border);
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
}
.bk-check-input:checked ~ .bk-check-box {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.bk-check-input:checked ~ .bk-check-box::after {
  content: '';
  display: block;
  width: 10px;
  height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.bk-check-text {
  font-size: .88rem;
  color: var(--c-dark);
  line-height: 1.5;
}

.bk-check-price {
  display: inline-block;
  margin-left: .5rem;
  font-size: .75rem;
  color: var(--c-accent);
  font-weight: 400;
  letter-spacing: .04em;
}

/* ─── Booking: privacy policy checkbox ───────────────────────── */
.bk-privacy-field .bk-check-wrap {
  background: var(--c-soft);
  border-color: var(--c-border);
}
.bk-privacy-field .bk-check-wrap:hover { background: var(--c-border); }

.privacy-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.privacy-link:hover { color: var(--c-dark); }

/* ─── Privacy modal ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 25, 22, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  backdrop-filter: blur(2px);
}
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--c-surface);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem 2.5rem 2.5rem;
  border-radius: 2px;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin-left: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--c-muted);
  padding: 0 .2rem;
  transition: color .15s;
}
.modal-close:hover { color: var(--c-dark); }

.modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: .25rem;
}
.modal-date {
  font-size: .8rem;
  color: var(--c-muted);
  margin-bottom: 1.75rem;
}
.modal-content h3 {
  font-family: var(--f-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 1.5rem 0 .5rem;
}
.modal-content p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.modal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: .75rem;
}
.modal-content ul li {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .2rem;
}
.modal-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .modal-box { padding: 1.5rem 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .photographer-body { padding: 4rem 3rem; }
}

@media (max-width: 900px) {
  .photographer-grid { grid-template-columns: 1fr; }
  .photographer-photo { min-height: 360px; }
  .photographer-body { padding: 3.5rem 2rem; }
}

@media (max-width: 640px) {
  .photographer-body { padding: 2.5rem 1.5rem; }
  .photographer-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bk-main { grid-template-columns: 1fr; }
  .bk-calendar { border-right: none; border-bottom: 1px solid var(--c-border); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-image .gallery-placeholder { height: 320px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .bk-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --pad-sec: 4.5rem 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 4rem 0 0;
    background: var(--c-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .9rem; }
  .nav-link-booking { padding: .55rem 1.4rem; }
  .nav-toggle { display: flex; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: .75rem; }

  .bk-duration-bar { grid-template-columns: 1fr; }
  .bk-dur-btn { border-right: none !important; border-bottom: 1px solid var(--c-border); }
  .bk-dur-btn:last-child { border-bottom: none; }
  .bk-dur-badge { position: static; margin-top: .3rem; display: inline-block; }

  .bk-slots-list { padding: 1rem 1.25rem; }
  .bk-slots-header { padding: 1.2rem 1.25rem .8rem; }
  .bk-legend { padding: .75rem 1.25rem; }
  .bk-form-panel { padding: 1.5rem 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
