/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-text);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out),
              background-color 200ms var(--ease-out), color 200ms var(--ease-out);
}

.btn--primary {
  background: var(--coral);
  color: #FFF7F0;
  box-shadow: var(--lift-2);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: auto 0.7rem 0.42rem;
  height: 5px;
  background-image: radial-gradient(circle at center,
    rgba(255, 246, 226, 0.95) 0 26%, rgba(255, 246, 226, 0.4) 30% 46%, transparent 52%);
  background-size: 13px 13px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
  transition: opacity 220ms var(--ease-out);
}
.btn--primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--lift-3);
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink-3);
}
.btn--ghost:hover { background: var(--ink); color: var(--on-ink); }

.btn--on-ink {
  background: transparent;
  color: var(--on-ink);
  box-shadow: inset 0 0 0 1.5px rgba(246, 237, 227, 0.45);
}
.btn--on-ink:hover { background: var(--on-ink); color: var(--ink); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tel {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 72, "opsz" 30;
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.tel:hover { color: var(--coral-ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: 5.25rem;
}

.brand { flex: 0 0 auto; line-height: 0; }
.brand img {
  width: clamp(9rem, 17vw, 12.5rem);
  height: auto;
  border-radius: 3px;
  box-shadow: var(--lift-1);
}

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--coral); color: var(--coral-ink); }

/* ---------- services submenu ---------- */
/* Opened by :hover and :focus-within, so it is keyboard reachable with no JS and
   no media query duplicated in a script. `top: 100%` keeps it touching its
   parent: any gap between the two and the pointer crossing it closes the menu. */
.site-nav__has-sub { position: relative; }
/* Every rule here is written `.site-nav .subnav`, at (0,2,1), because the row
   rule it has to beat is `.site-nav ul` at (0,1,1). Written as a bare `.subnav`
   the `display: none` LOST and the menu hung open on every page, which read as
   correct in a screenshot taken while hovering it. Verify computed styles. */
.site-nav .subnav {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  z-index: 60;
  display: none;
  min-width: 15.5rem;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  box-shadow: var(--lift-3);
  padding: 0.35rem;
}
.site-nav .site-nav__has-sub:hover > .subnav,
.site-nav .site-nav__has-sub:focus-within > .subnav { display: block; }
/* .site-nav ul is a flex row; this one is a stacked menu, so both are reset. */
.site-nav .subnav { flex-direction: column; align-items: stretch; gap: 0; }
.site-nav .subnav li { width: 100%; }
.site-nav .subnav a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-bottom: 0;
  border-radius: calc(var(--radius) - 3px);
  font-weight: 500;
  white-space: nowrap;
}
.site-nav .subnav a:hover { background: var(--paper-2); border-bottom: 0; }
.site-nav .subnav__all {
  border-top: 1px solid var(--paper-3);
  border-radius: 0;
  margin-top: 0.25rem;
  padding-top: 0.6rem;
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-paper-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex: 0 0 auto;
}

.nav-toggle { display: none; }

@media (max-width: 62rem) {
  .site-header__inner { min-height: 4.5rem; gap: var(--s-3); }
  .site-nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    display: none;
    padding-bottom: var(--s-3);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: var(--s-2); }
  /* .site-nav .subnav, not .subnav: the row rule is `.site-nav ul` at (0,1,1),
     which outranks a bare class. Written the short way this declaration lost and
     the menu only looked right because a flex column and a block stack the same. */
  .site-nav .subnav {
    position: static;
    display: block;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.25rem 0 0 var(--s-3);
    border-left: 2px solid var(--paper-3);
    margin-left: 0.15rem;
  }
  .site-nav .subnav a { padding: 0.3rem 0; font-size: var(--t-sm); }
  .site-nav .subnav a:hover { background: transparent; }
  .site-nav .subnav__all { border-top: 0; padding-top: 0.45rem; margin-top: 0.1rem; }
  .site-header__inner { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem; height: 2.75rem;
    background: transparent;
    border: 1.5px solid var(--ink-3);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--ink);
  }
  .nav-toggle svg { width: 20px; height: 20px; }
}

/* ---------- forms ---------- */
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
}
.field input,
.field select {
  font-family: var(--font-text);
  font-size: var(--t-base);
  color: var(--on-ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(246, 237, 227, 0.32);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}
.field input::placeholder { color: rgba(201, 182, 196, 0.85); }
.field input:hover, .field select:hover { border-color: rgba(246, 237, 227, 0.55); }
.field input:focus, .field select:focus {
  border-color: var(--apricot);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
.field input:focus-visible, .field select:focus-visible { outline: 3px solid var(--apricot); outline-offset: 2px; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) sepia(1) saturate(2) hue-rotate(330deg); cursor: pointer; }

/* ---------- job figure ---------- */
.job { margin: 0; position: relative; }
.job img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-2);
}
.job figcaption {
  display: block;
  margin-top: var(--s-2);
  font-size: var(--t-sm);
  color: var(--on-paper-soft);
  line-height: 1.35;
}
.job b {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 72, "opsz" 30;
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- breadcrumbs ---------- */
/* Present on the service pages, matching the BreadcrumbList in the JSON-LD. */
.crumbs { margin-bottom: var(--s-3); }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--t-xs);
  color: var(--on-paper-soft);
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--paper-3);
}
.crumbs a { color: var(--on-paper-soft); text-decoration-color: var(--paper-3); }
.crumbs a:hover { color: var(--coral-ink); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- booking form: honeypot and status ---------- */
/* Off-screen rather than display:none. Some form-fillers skip anything hidden
   with display, and a real person never reaches it: it is aria-hidden and
   tabindex="-1". */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status { margin: var(--s-2) 0 0; font-size: var(--t-sm); min-height: 1.2em; }
.form-status:empty { margin: 0; min-height: 0; }
.form-status--ok  { color: #FFF7F0; font-weight: 600; }
.form-status--bad { color: #FFE2D2; font-weight: 600; }
