:root {
  --canvas: #f4eae4;
  --surface: #f8f0ea;
  --surface-warm: #efe1d6;
  --text: #332d29;
  --muted: #6b5a50;
  --espresso: #4e3b2c;
  --espresso-deep: #2e221a;
  --copper: #b67a48;
  --copper-deep: #9a6338;
  --gold-light: #e6c18c;
  --white: #ffffff;
  --soft-border: rgba(182, 122, 72, 0.55);
  --divider: rgba(182, 122, 72, 0.35);
  --font-logo: "Allura", "Great Vibes", cursive;
  --font-display: "Cormorant Garamond", "Playfair Display", serif;
  --font-body: "Montserrat", "Inter", "Lato", sans-serif;
  --site-max: 1055px;
  --site-gutter: clamp(20px, 5vw, 92px);
  --section-gutter: clamp(20px, 8vw, 112px);
  --radius-image: 7px;
  --radius-button: 3px;
  --radius-panel: 6px;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.22, 1);
  --motion-duration: 720ms;
  --motion-slow: 1180ms;
  --motion-pop: cubic-bezier(0.18, 0.9, 0.24, 1.08);
  --focus-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-preloading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  min-width: 320px;
  background: var(--canvas);
  opacity: 1;
  transition: opacity 420ms ease;
}

body.is-preloading .page-shell {
  opacity: 0;
}

body.is-loaded .page-shell {
  opacity: 1;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #fbf6f4;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

body.is-loaded .loading-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-card {
  width: min(310px, calc(100vw - 56px));
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loading-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--copper);
  font-family: var(--font-logo);
  font-size: clamp(48px, 11vw, 66px);
  line-height: 0.8;
}

.loading-mark {
  position: relative;
  width: 34px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 13px 13px 4px 4px;
  transform: rotate(-4deg);
}

.loading-mark::before,
.loading-mark::after {
  content: "";
  position: absolute;
}

.loading-mark::before {
  left: 11px;
  top: -8px;
  width: 9px;
  height: 9px;
  border-radius: 50% 50% 0 0;
  background: currentColor;
}

.loading-mark::after {
  right: -14px;
  top: 5px;
  width: 22px;
  height: 34px;
  border-right: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(25deg);
}

.loading-line {
  width: min(248px, 64vw);
  height: 1px;
  overflow: hidden;
  background: rgba(182, 122, 72, 0.2);
}

.loading-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  background: rgba(244, 234, 228, 0.98);
  border-bottom: 1px solid rgba(182, 122, 72, 0.18);
  backdrop-filter: blur(18px);
}

.js-ready .site-header {
  animation: header-settle 760ms var(--motion-ease) both;
}

[id] {
  scroll-margin-top: 96px;
}

.header-inner {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--copper);
  font-family: var(--font-logo);
  font-size: 32px;
  line-height: 1;
  white-space: nowrap;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) translateY(-1px);
}

.js-ready .brand,
.js-ready .nav-links a,
.js-ready .social-links a {
  opacity: 0;
  animation: nav-item-in 680ms var(--motion-ease) both;
}

.js-ready .brand {
  animation-delay: 90ms;
}

.js-ready .nav-links a:nth-of-type(1) {
  animation-delay: 170ms;
}

.js-ready .nav-links a:nth-of-type(2) {
  animation-delay: 220ms;
}

.js-ready .nav-links a:nth-of-type(3) {
  animation-delay: 270ms;
}

.js-ready .nav-links a:nth-of-type(4) {
  animation-delay: 320ms;
}

.js-ready .nav-links a:nth-of-type(5) {
  animation-delay: 370ms;
}

.js-ready .social-links a:nth-child(1) {
  animation-delay: 430ms;
}

.js-ready .social-links a:nth-child(2) {
  animation-delay: 480ms;
}

.brand-mark {
  position: relative;
  width: 23px;
  height: 30px;
  border: 1px solid var(--copper);
  border-radius: 9px 9px 3px 3px;
  transform: rotate(-4deg);
  transition: transform 240ms var(--motion-ease);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--copper);
}

.brand-mark::before {
  left: 7px;
  top: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50% 50% 0 0;
}

.brand-mark::after {
  right: -10px;
  top: 3px;
  width: 16px;
  height: 24px;
  border-radius: 50%;
  border-right: 1px solid var(--copper);
  background: transparent;
  transform: rotate(25deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 46px);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--copper-deep);
  background: transparent;
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.mobile-nav-toggle::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(182, 122, 72, 0.36);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 180ms ease,
    transform 220ms var(--motion-ease);
}

.mobile-nav-toggle span {
  position: absolute;
  right: 11px;
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    top 220ms var(--motion-ease),
    width 220ms var(--motion-ease),
    transform 220ms var(--motion-ease);
}

.mobile-nav-toggle span:nth-child(1) {
  top: 14px;
  width: 22px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 21px;
  width: 14px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 28px;
  width: 22px;
}

.mobile-nav-toggle:hover {
  color: var(--copper);
}

.mobile-nav-toggle:hover::before,
.mobile-nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  width: 22px;
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  width: 22px;
  transform: rotate(-45deg);
}

.mobile-menu-head {
  display: none;
}

.nav-links a,
.social-links a,
.footer-socials a,
.footer-booking,
.outline-button,
.pdf-button {
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: calc(50% - 4px);
  bottom: -10px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--copper);
  border-bottom: 1px solid var(--copper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px) rotate(45deg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transition:
    left 220ms ease,
    right 220ms ease,
    opacity 220ms ease;
  opacity: 0;
}

.nav-links a.is-active,
.nav-links a[aria-current="location"] {
  color: var(--copper-deep);
}

.nav-links a.is-active::after,
.nav-links a[aria-current="location"]::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.nav-links a:hover,
.nav-links a.is-scrolling,
.footer-column a:hover {
  color: var(--copper-deep);
}

.nav-links a.is-scrolling {
  transform: translateY(-1px);
}

.nav-links a.is-scrolling::before {
  animation: nav-arrow-drop 860ms var(--motion-pop) infinite;
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a,
.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 122, 72, 0.4);
  border-radius: 999px;
  color: var(--copper);
  background: rgba(248, 240, 234, 0.46);
}

.social-links svg,
.footer-socials svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-links a:hover,
.footer-socials a:hover {
  border-color: var(--copper);
  color: var(--copper-deep);
  background: var(--surface);
}

.hero {
  position: relative;
  height: clamp(360px, 42vw, 500px);
  overflow: hidden;
  background: var(--surface-warm);
}

.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.02) brightness(0.9);
  transform-origin: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46, 34, 26, 0.62) 0%, rgba(46, 34, 26, 0.3) 38%, rgba(46, 34, 26, 0.08) 76%),
    linear-gradient(180deg, rgba(46, 34, 26, 0.08), transparent 30%, rgba(46, 34, 26, 0.44) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  left: clamp(32px, 7vw, 118px);
  bottom: clamp(30px, 5vw, 58px);
  z-index: 1;
  width: min(360px, 52vw);
  color: var(--white);
}

.hero-overlay span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-overlay strong {
  display: none;
  font-family: var(--font-logo);
  font-size: clamp(82px, 11vw, 150px);
  font-weight: 400;
  line-height: 0.72;
}

.hero-overlay p {
  width: fit-content;
  margin: 0 0 16px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(230, 193, 140, 0.72);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.25;
}

.hero-overlay a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold-light);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-address {
  display: block;
  max-width: 300px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 600;
  line-height: 1.45;
}

.js-ready .hero.is-visible img {
  animation: hero-image-settle var(--motion-slow) var(--motion-ease) both;
}

.intro-section {
  min-height: 0;
  background:
    linear-gradient(180deg, #fbf6f3 0%, var(--canvas) 100%);
  border-bottom: 1px solid rgba(182, 122, 72, 0.16);
}

.intro-inner {
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1fr);
  column-gap: clamp(32px, 4.4vw, 62px);
  align-items: center;
  padding: clamp(52px, 7vw, 82px) 0;
}

.intro-copy {
  padding-top: 0;
  max-width: 540px;
}

.intro-copy h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.55vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--espresso-deep);
}

.intro-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.outline-button,
.pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid var(--copper);
  border-radius: var(--radius-button);
  color: var(--copper);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.outline-button:hover,
.pdf-button:hover,
.footer-booking:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.outline-button:active,
.pdf-button:active,
.footer-booking:active {
  transform: translateY(0) scale(0.985);
}

.intro-copy .outline-button {
  justify-content: flex-start;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--copper-deep);
  background: transparent;
}

.intro-copy .outline-button:hover {
  color: var(--espresso-deep);
  background: transparent;
  transform: none;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.category-card {
  min-width: 0;
  transform-origin: center bottom;
  transition:
    transform 320ms var(--motion-ease),
    filter 320ms ease;
}

.category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius-image);
  box-shadow: 0 10px 24px rgba(46, 34, 26, 0.08);
  transition:
    box-shadow 320ms ease,
    filter 360ms ease,
    transform 520ms var(--motion-ease);
}

.category-card h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
  box-shadow: 0 14px 30px rgba(46, 34, 26, 0.12);
}

.booking-strip {
  min-height: 0;
  background:
    linear-gradient(135deg, var(--espresso-deep), var(--espresso));
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(230, 193, 140, 0.32);
  border-bottom: 1px solid rgba(230, 193, 140, 0.32);
}

.booking-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 22%, rgba(230, 193, 140, 0.12) 48%, transparent 74%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-38%);
}

.booking-strip.section-focus::after,
.booking-strip:has(.booking-copy.is-visible)::after {
  animation: strip-light-sweep 1500ms var(--motion-ease) both;
}

.booking-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.5fr) minmax(280px, 1fr);
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
  padding: clamp(44px, 6vw, 68px) 0;
}

.booking-image {
  width: 100%;
  height: clamp(230px, 24vw, 330px);
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: var(--radius-image);
  transition:
    filter 360ms ease,
    transform 520ms var(--motion-ease);
}

.booking-image:hover {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.012);
}

.booking-copy {
  padding-top: 3px;
}

.booking-copy h2 {
  max-width: 640px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
}

.booking-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.outline-button-dark {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: transparent;
}

.outline-button-dark:hover {
  border-color: var(--gold-light);
  color: var(--espresso-deep);
  background: var(--gold-light);
}

.service-grid-section {
  min-height: 0;
  padding: clamp(44px, 6vw, 64px) 0 clamp(34px, 5vw, 52px);
  background: var(--canvas);
}

.service-grid-section h2,
.price-section h2 {
  width: min(calc(100% - (var(--section-gutter) * 2)), 840px);
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
  color: var(--text);
}

.tile-grid {
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-tile {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform-origin: center bottom;
  transition:
    transform 320ms var(--motion-ease);
}

.service-tile::after {
  display: none;
}

.service-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 205 / 132;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius-image);
  box-shadow: 0 8px 18px rgba(46, 34, 26, 0.08);
  transition:
    box-shadow 320ms ease,
    filter 420ms ease,
    transform 720ms var(--motion-ease);
}

.service-tile figcaption {
  position: static;
  max-width: none;
  min-height: 0;
  display: block;
  padding: 12px 0 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.12;
  text-shadow: none;
  transition:
    transform 320ms var(--motion-ease);
}

.service-tile:hover {
  transform: translateY(-3px);
}

.service-tile:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
  box-shadow: 0 12px 24px rgba(46, 34, 26, 0.12);
}

.service-tile:hover figcaption {
  transform: translateY(-2px);
}

.price-section {
  min-height: 0;
  padding: clamp(34px, 5vw, 54px) 0 clamp(44px, 6vw, 64px);
  background: var(--canvas);
}

.price-panel {
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  height: auto;
  margin: 28px auto 0;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-panel);
  color: var(--text);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--motion-ease);
}

.price-panel:hover {
  border-color: rgba(182, 122, 72, 0.78);
  box-shadow: 0 12px 24px rgba(46, 34, 26, 0.07);
  transform: translateY(-2px);
}

.price-panel-header {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(182, 122, 72, 0.24);
  color: var(--text);
  font-weight: 600;
}

.price-panel-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 30px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.price-panel-toggle:focus-visible {
  outline: 2px solid rgba(182, 122, 72, 0.7);
  outline-offset: -4px;
}

.file-icon {
  width: 22px;
  height: 22px;
  color: var(--text);
}

.file-icon svg,
.pdf-button svg,
.footer-booking svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.caret {
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-top: 2px solid var(--text);
  border-left: 2px solid var(--text);
  transform: rotate(45deg) translateY(4px);
  transition: transform 260ms var(--motion-ease);
}

.price-panel:hover .caret {
  transform: rotate(45deg) translate(3px, 1px);
}

.price-panel.is-open .caret,
.price-panel.is-open:hover .caret {
  transform: rotate(225deg) translate(-2px, -1px);
}

.price-panel-content[hidden] {
  display: none;
}

.price-panel-body {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 30px;
  background: var(--surface);
}

.price-panel-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.price-panel-body em {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
}

.pdf-button {
  min-width: 146px;
  gap: 10px;
  padding: 0 20px;
  color: var(--copper);
  background: transparent;
}

.pdf-button svg {
  width: 14px;
  height: 14px;
  transition: transform 220ms var(--motion-ease);
}

.pdf-button:hover svg {
  transform: translateY(2px);
}

.price-panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.pdf-button-secondary {
  min-width: 126px;
  border-color: rgba(182, 122, 72, 0.34);
  color: var(--muted);
  background: rgba(182, 122, 72, 0.06);
}

.pdf-button-secondary:hover {
  border-color: var(--copper-deep);
  color: var(--white);
  background: var(--copper-deep);
}

.price-pdf-preview {
  padding: clamp(14px, 2vw, 20px);
  border-top: 1px solid rgba(182, 122, 72, 0.22);
  background:
    linear-gradient(180deg, rgba(248, 240, 234, 0.96), rgba(239, 225, 214, 0.98)),
    repeating-linear-gradient(132deg, transparent 0 82px, rgba(182, 122, 72, 0.055) 83px 84px, transparent 86px 170px);
}

.price-pdf-pages {
  max-height: min(1120px, 150vh);
  overflow-y: auto;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(182, 122, 72, 0.58) rgba(248, 240, 234, 0.74);
}

.price-pdf-page {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 122, 72, 0.24);
  border-radius: var(--radius-panel);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(46, 34, 26, 0.12);
}

.price-pdf-page img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
}

.price-pdf-page figcaption {
  padding: 10px 14px 12px;
  color: var(--copper-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .price-panel-body {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .price-panel-actions {
    width: 100%;
    justify-content: stretch;
    margin-left: 0;
  }

  .price-panel-actions .pdf-button {
    flex: 1 1 150px;
  }

  .price-pdf-preview {
    padding: 12px;
  }

  .price-pdf-pages {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

.team-section {
  padding: clamp(54px, 7vw, 86px) 0 clamp(56px, 8vw, 92px);
  background:
    linear-gradient(180deg, var(--canvas), #fbf6f3 100%);
  color: var(--text);
}

.team-heading {
  width: min(calc(100% - (var(--section-gutter) * 2)), 720px);
  margin: 0 auto clamp(30px, 5vw, 48px);
  text-align: center;
}

.team-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.team-heading h2 {
  margin: 0;
  color: var(--espresso-deep);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.98;
}

.team-heading h2 em {
  display: block;
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
}

.team-grid {
  width: min(calc(100% - (var(--section-gutter) * 2)), 900px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 122, 72, 0.28);
  border-radius: 8px;
  background: rgba(248, 240, 234, 0.72);
  box-shadow: 0 18px 42px rgba(46, 34, 26, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--motion-ease);
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transition:
    filter 360ms ease,
    transform 620ms var(--motion-ease);
}

.team-card-copy {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(251, 246, 244, 0.8);
}

.team-card h3 {
  margin: 0;
  color: var(--espresso-deep);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.team-role {
  margin: 8px 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-card-copy p:not(.team-role) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.team-card:hover {
  border-color: rgba(182, 122, 72, 0.62);
  box-shadow: 0 22px 52px rgba(46, 34, 26, 0.12);
  transform: translateY(-3px);
}

.team-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.reviews-section {
  position: relative;
  padding: clamp(48px, 7vw, 78px) 0 clamp(54px, 8vw, 88px);
  background:
    radial-gradient(circle at 18% 18%, rgba(182, 122, 72, 0.08), transparent 28%),
    linear-gradient(180deg, var(--canvas), #f6ece6 52%, var(--canvas));
  color: var(--text);
}

.reviews-heading {
  position: relative;
  width: min(calc(100% - (var(--section-gutter) * 2)), 760px);
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}

.reviews-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--text);
}

.reviews-heading h2 em {
  display: block;
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
}

.reviews-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.review-doodle {
  position: absolute;
  display: block;
  color: var(--copper);
  opacity: 0.98;
}

.review-doodle-left {
  left: clamp(16px, 12vw, 116px);
  top: 0;
  width: 22px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transform: rotate(-10deg);
}

.review-doodle-left::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: var(--canvas);
  transform: rotate(-22deg);
}

.review-doodle-center {
  left: 50%;
  top: -9px;
  width: 26px;
  height: 28px;
  border-right: 1.6px solid currentColor;
  border-top: 1.6px solid currentColor;
  transform: translateX(-50%) rotate(18deg);
}

.review-doodle-center::before,
.review-doodle-center::after,
.review-doodle-right::before,
.review-doodle-right::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.review-doodle-center::before {
  right: -5px;
  top: -5px;
  width: 7px;
  height: 7px;
}

.review-doodle-center::after {
  right: 15px;
  top: 17px;
  width: 13px;
  height: 1.6px;
  transform: rotate(-28deg);
}

.review-doodle-right {
  right: clamp(18px, 12vw, 118px);
  top: 7px;
  width: 24px;
  height: 24px;
  border-left: 1.5px solid currentColor;
  transform: rotate(-12deg);
}

.review-doodle-right::before {
  left: -7px;
  bottom: 1px;
  width: 8px;
  height: 8px;
}

.review-doodle-right::after {
  right: 0;
  bottom: 8px;
  width: 8px;
  height: 8px;
}

.review-carousel {
  width: min(calc(100% - (var(--section-gutter) * 2)), 840px);
  margin: clamp(32px, 5vw, 48px) auto 0;
}

.review-carousel-viewport {
  overflow-x: auto;
  padding: 3px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.review-card {
  flex: 0 0 calc((100% - 16px) / 2);
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(118px, auto) auto minmax(300px, 23vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  border: 1px solid rgba(182, 122, 72, 0.34);
  border-radius: 8px;
  background: rgba(248, 240, 234, 0.58);
  transition:
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--motion-ease);
}

.review-card:hover {
  border-color: rgba(182, 122, 72, 0.68);
  box-shadow: 0 12px 28px rgba(46, 34, 26, 0.09);
  transform: translateY(-3px);
}

.review-card blockquote {
  position: relative;
  margin: 0;
  padding: 34px 20px 0;
}

.review-card blockquote::before {
  content: "“";
  position: absolute;
  left: 20px;
  top: 10px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.28;
}

.review-card figcaption {
  padding: 10px 20px 14px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
}

.review-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 62%;
  transition:
    filter 360ms ease,
    transform 620ms var(--motion-ease);
}

.review-card:nth-child(1) img {
  object-position: center 60%;
}

.review-card:nth-child(2) img {
  object-position: center 42%;
}

.review-card:nth-child(3) img {
  object-position: center 68%;
}

.review-card:nth-child(4) img {
  object-position: center 56%;
}

.review-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.review-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.js-ready .review-controls {
  display: flex;
}

.review-control {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(182, 122, 72, 0.42);
  border-radius: 999px;
  background: rgba(248, 240, 234, 0.78);
  color: var(--text);
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--motion-ease);
}

.review-control span {
  display: block;
  margin-top: -2px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.review-control:hover {
  border-color: rgba(182, 122, 72, 0.76);
  background: var(--copper);
  color: #fff7ef;
  transform: translateY(-1px);
}

.review-control:focus-visible,
.review-dot:focus-visible {
  outline: 2px solid rgba(182, 122, 72, 0.72);
  outline-offset: 4px;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(84, 61, 45, 0.28);
  cursor: pointer;
  transition:
    background 220ms ease,
    transform 220ms ease,
    width 220ms ease;
}

.review-dot.is-active {
  width: 24px;
  background: var(--copper);
}

.site-footer {
  min-height: 0;
  background: #191817;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(230, 193, 140, 0.18);
}

.footer-inner {
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(190px, 1fr) minmax(245px, 1.25fr) minmax(170px, 0.9fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(30px, 5vw, 46px) 0;
}

.footer-brand,
.footer-column {
  min-width: 0;
  min-height: 78px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.footer-logo {
  color: var(--gold-light);
  font-size: 38px;
}

.footer-socials {
  justify-content: flex-start;
  gap: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding-left: clamp(4px, 1.5vw, 24px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.footer-column span,
.footer-column a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.footer-hours {
  padding-left: clamp(4px, 1.5vw, 24px);
  border-right: 0;
}

.footer-booking {
  width: 98px;
  height: 68px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: var(--radius-button);
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.15px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.footer-booking svg {
  width: 20px;
  height: 20px;
}

.site-footer .footer-socials a {
  border-color: rgba(230, 193, 140, 0.28);
  color: var(--gold-light);
  background: transparent;
}

.site-footer .footer-socials a:hover {
  border-color: var(--gold-light);
  color: #191817;
  background: var(--gold-light);
}

.footer-credit {
  width: min(calc(100% - (var(--section-gutter) * 2)), var(--site-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-credit a,
.footer-credit button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit button:hover {
  color: var(--gold-light);
}

.footer-credit p {
  margin: 0;
}

.footer-made {
  display: inline-flex;
  gap: 4px;
  margin-left: 10px;
  white-space: nowrap;
}

.footer-made-lab {
  color: #9b5de5;
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 80;
  width: min(440px, calc(100vw - 32px));
  color: var(--text);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  padding: 18px;
  border: 1px solid rgba(182, 122, 72, 0.36);
  border-radius: 8px;
  background: rgba(251, 246, 244, 0.96);
  box-shadow: 0 16px 42px rgba(46, 34, 26, 0.16);
  backdrop-filter: blur(16px);
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--copper-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.cookie-button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--copper);
  border-radius: var(--radius-button);
  color: var(--white);
  background: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.cookie-button:hover {
  border-color: var(--copper-deep);
  background: var(--copper-deep);
  transform: translateY(-1px);
}

.cookie-button-ghost {
  color: var(--copper);
  background: transparent;
}

.cookie-button-ghost:hover {
  color: var(--white);
}

.intro-section,
.booking-strip,
.service-grid-section,
.price-section,
.team-section,
.reviews-section,
.site-footer {
  position: relative;
}

.section-focus {
  isolation: isolate;
  animation: section-focus-pulse 1400ms var(--focus-ease) both;
}

.section-focus::after {
  content: "";
  position: absolute;
  inset: 8px max(14px, calc((100% - var(--site-max)) / 2));
  z-index: 4;
  border: 1px solid rgba(182, 122, 72, 0.72);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(230, 193, 140, 0.12),
    0 14px 38px rgba(46, 34, 26, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  animation: section-focus-ring 1400ms var(--focus-ease) both;
}

@keyframes section-focus-pulse {
  0% {
    box-shadow: inset 0 0 0 0 rgba(182, 122, 72, 0);
  }

  24% {
    box-shadow: inset 0 0 0 2px rgba(182, 122, 72, 0.72);
  }

  100% {
    box-shadow: inset 0 0 0 0 rgba(182, 122, 72, 0);
  }
}

@keyframes section-focus-ring {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }

  22% {
    opacity: 1;
    transform: scale(1);
  }

  78% {
    opacity: 0.58;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.012);
  }
}

@keyframes header-settle {
  0% {
    box-shadow: 0 0 0 rgba(46, 34, 26, 0);
    transform: translateY(-10px);
  }

  100% {
    box-shadow: 0 1px 0 rgba(182, 122, 72, 0.12);
    transform: translateY(0);
  }
}

@keyframes nav-item-in {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-arrow-drop {
  0% {
    opacity: 0;
    transform: translateY(-7px) rotate(45deg);
  }

  42% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }

  100% {
    opacity: 0;
    transform: translateY(7px) rotate(45deg);
  }
}

@keyframes hero-image-settle {
  0% {
    filter: saturate(0.94) contrast(0.98) brightness(0.86);
    transform: scale(1.035);
  }

  100% {
    filter: saturate(1.02) contrast(1) brightness(0.9);
    transform: scale(1);
  }
}

@keyframes strip-light-sweep {
  0% {
    opacity: 0;
    transform: translateX(-42%);
  }

  26% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

.js-ready .hero,
.js-ready .intro-copy,
.js-ready .category-card,
.js-ready .booking-image,
.js-ready .booking-copy,
.js-ready .service-grid-section h2,
.js-ready .service-tile,
.js-ready .price-section h2,
.js-ready .price-panel,
.js-ready .team-heading,
.js-ready .team-card,
.js-ready .reviews-heading,
.js-ready .review-card {
  --reveal-x: 0px;
  --reveal-y: 18px;
  --reveal-scale: 0.992;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--motion-duration) ease,
    transform var(--motion-duration) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-ready .intro-copy {
  --reveal-x: -18px;
  --reveal-y: 0px;
}

.js-ready .booking-copy {
  --reveal-x: 20px;
  --reveal-y: 0px;
}

.js-ready .booking-image,
.js-ready .price-panel {
  --reveal-scale: 0.985;
}

.js-ready .team-card,
.js-ready .review-card {
  --reveal-scale: 0.988;
}

.js-ready .hero.is-visible,
.js-ready .intro-copy.is-visible,
.js-ready .category-card.is-visible,
.js-ready .booking-image.is-visible,
.js-ready .booking-copy.is-visible,
.js-ready .service-grid-section h2.is-visible,
.js-ready .service-tile.is-visible,
.js-ready .price-section h2.is-visible,
.js-ready .price-panel.is-visible,
.js-ready .team-heading.is-visible,
.js-ready .team-card.is-visible,
.js-ready .reviews-heading.is-visible,
.js-ready .review-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

  .js-ready .site-header,
  .js-ready .brand,
  .js-ready .nav-links a,
  .js-ready .social-links a,
  .js-ready .hero.is-visible img,
  .booking-strip::after,
  .nav-links a.is-scrolling::before,
  .booking-strip.section-focus::after,
  .booking-strip:has(.booking-copy.is-visible)::after {
    animation: none;
  }

  .nav-links a::after,
  .review-carousel-viewport,
  .js-ready .hero,
  .js-ready .intro-copy,
  .js-ready .category-card,
  .js-ready .booking-image,
  .js-ready .booking-copy,
  .js-ready .service-grid-section h2,
  .js-ready .service-tile,
  .js-ready .price-section h2,
  .js-ready .price-panel,
  .js-ready .team-heading,
  .js-ready .team-card,
  .js-ready .reviews-heading,
  .js-ready .review-card,
  .category-card,
  .category-card img,
  .booking-image,
  .service-tile,
  .service-tile img,
  .service-tile figcaption,
  .price-panel,
  .caret,
  .pdf-button svg,
  .review-card,
  .review-card img {
    transition: none;
  }

  .js-ready .brand,
  .js-ready .nav-links a,
  .js-ready .social-links a,
  .js-ready .hero,
  .js-ready .intro-copy,
  .js-ready .category-card,
  .js-ready .booking-image,
  .js-ready .booking-copy,
  .js-ready .service-grid-section h2,
  .js-ready .service-tile,
  .js-ready .price-section h2,
  .js-ready .price-panel,
  .js-ready .team-heading,
  .js-ready .team-card,
  .js-ready .reviews-heading,
  .js-ready .review-card {
    opacity: 1;
    transform: none;
  }

  .section-focus {
    animation: none;
  }

  .review-carousel-viewport {
    scroll-behavior: auto;
  }

  .section-focus::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: 100%;
  }

  .intro-section,
  .booking-strip,
  .service-grid-section,
  .price-section,
  .team-section,
  .reviews-section,
  .site-footer {
    height: auto;
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0;
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .social-links {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 32;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vh, 22px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fbf8f5;
    box-shadow: 0 18px 42px rgba(46, 34, 26, 0.2);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translateY(10px) scale(0.992);
    transition:
      opacity 190ms ease,
      transform 240ms var(--motion-ease),
      visibility 190ms ease;
    visibility: hidden;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 66px;
    padding: 12px clamp(18px, 6vw, 32px) 4px;
    border-bottom: 0;
  }

  .mobile-menu-logo {
    color: var(--copper);
    font-family: var(--font-logo);
    font-size: clamp(32px, 8vw, 40px);
    line-height: 0.95;
  }

  .mobile-menu-close {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 0;
    color: var(--copper-deep);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    left: 9px;
    top: 21px;
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links a {
    min-height: clamp(54px, 8.8vh, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 clamp(26px, 9vw, 48px);
    border-top: 0;
    border-radius: 0;
    color: rgba(51, 45, 41, 0.88);
    font-family: var(--font-display);
    font-size: clamp(31px, 8.8vw, 46px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .nav-links a:first-of-type {
    margin-top: auto;
  }

  .nav-links a:last-of-type {
    margin-bottom: auto;
  }

  .nav-links a::before,
  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.is-active,
  .nav-links a[aria-current="location"] {
    color: var(--copper-deep);
    background: transparent;
  }

  .nav-links a.is-active,
  .nav-links a[aria-current="location"] {
    font-style: italic;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 21;
    pointer-events: none;
  }

  .hero {
    height: clamp(332px, 82vw, 500px);
  }

  .hero img {
    object-position: 48% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(46, 34, 26, 0.5), rgba(46, 34, 26, 0.16)),
      linear-gradient(180deg, rgba(46, 34, 26, 0.04), rgba(46, 34, 26, 0.5));
  }

  .hero-overlay {
    left: 24px;
    bottom: 34px;
    width: min(320px, calc(100% - 48px));
  }

  .hero-overlay p {
    margin: 0 0 14px;
    font-size: 17px;
  }

  .hero-overlay a {
    font-size: 22px;
  }

  .intro-inner,
  .booking-inner,
  .team-heading,
  .team-grid,
  .reviews-heading,
  .review-carousel,
  .footer-credit,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .intro-inner {
    display: block;
    padding: 42px 0;
  }

  .intro-copy {
    padding-top: 0;
    margin-bottom: 28px;
  }

  .category-row,
  .tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }

  .booking-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-grid-section,
  .price-section,
  .team-section,
  .reviews-section {
    padding: 40px 0;
  }

  .service-grid-section {
    padding-bottom: 24px;
  }

  .price-section {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .team-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .reviews-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .tile-grid,
  .team-grid,
  .price-panel {
    width: calc(100% - 32px);
  }

  .review-carousel {
    margin-top: 28px;
  }

  .review-track {
    gap: 12px;
  }

  .review-card {
    flex-basis: 100%;
    grid-template-rows: minmax(112px, auto) auto minmax(320px, 78vw);
  }

  .review-card blockquote {
    padding: 32px 18px 0;
  }

  .review-card blockquote::before {
    left: 18px;
    top: 9px;
  }

  .review-card figcaption {
    padding: 9px 18px 12px;
  }

  .price-panel {
    height: auto;
  }

  .price-panel-body {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 24px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .footer-brand,
  .footer-column {
    min-height: 0;
    border-right: 0;
    padding-left: 0;
  }

  .footer-booking {
    margin-left: 0;
  }

  .footer-credit {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .footer-made {
    display: flex;
    margin-top: 6px;
    margin-left: 0;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .footer-inner {
    width: min(calc(100% - 64px), var(--site-max));
    grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 28px 44px;
    padding: 34px 0;
  }

  .footer-brand,
  .footer-column {
    min-height: 0;
    border-right: 0;
    padding-left: 0;
  }

  .footer-credit {
    width: min(calc(100% - 64px), var(--site-max));
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 30px;
  }

  .site-header {
    height: 64px;
  }

  .hero {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .hero img {
    background: #e9d3c2;
    object-fit: contain;
    object-position: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(46, 34, 26, 0.62), rgba(46, 34, 26, 0.2) 76%),
      linear-gradient(180deg, rgba(46, 34, 26, 0.04), rgba(46, 34, 26, 0.55));
  }

  .hero-overlay {
    left: 20px;
    bottom: 36px;
    width: min(292px, calc(100% - 40px));
  }

  .hero-overlay span {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .hero-overlay p {
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
  }

  .hero-overlay a {
    min-height: 34px;
    font-size: 20px;
    line-height: 1.1;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .intro-copy h1 {
    font-size: 42px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-heading h2 {
    font-size: 42px;
  }

  .reviews-heading h2 {
    font-size: 38px;
  }

  .review-doodle-left {
    left: 12px;
  }

  .review-doodle-right {
    right: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-card img,
  .service-tile img {
    height: auto;
    aspect-ratio: 205 / 132;
  }

  .service-tile figcaption {
    font-size: 15px;
    padding: 10px 0 0;
  }

  .price-panel-body {
    padding: 20px;
  }

  .pdf-button {
    width: 100%;
  }

  .cookie-consent-inner {
    padding: 16px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}
