/*
  KiwiTile site chrome — cleaned desktop header, menu, brand, and enquiry sheet.
  Desktop scaling is locked from 1280×720 to 1920×1080.
  Load before page-specific stylesheets.
*/

/* ===== FOUNDATION VARIABLES ===== */
:root {
  /* Header / brand: 1280 baseline → 1920 maximum */
  --kt-header-height: clamp(70px, 5.46875vw, 105px);
  --kt-header-pad-left: clamp(24px, 1.875vw, 36px);
  --kt-header-pad-right: clamp(18px, 1.40625vw, 27px);
  --kt-header-logo-size: clamp(82px, 6.40625vw, 123px);
  --kt-header-logo-disc-size: calc(var(--kt-header-logo-size) * 0.632);
  --kt-header-logo-edge-gap: clamp(16px, 1.25vw, 24px);
  --kt-header-logo-nudge-x: clamp(4px, 0.3125vw, 6px);
  --kt-header-logo-nudge-y: clamp(3px, 0.234375vw, 4.5px);

  /* Menu geometry: 1280 baseline → 1920 maximum */
  --menu-w: clamp(376px, 29.375vw, 564px);
  --menu-pad-x: clamp(20px, 1.5625vw, 30px);
  --menu-pad-top: clamp(22px, 1.71875vw, 33px);
  --menu-pad-bottom: clamp(20px, 1.5625vw, 30px);
  --menu-nav-gap: clamp(10px, 0.78125vw, 15px);
  --menu-top-h: clamp(44px, 3.4375vw, 66px);
  --menu-top-mb: clamp(2px, 0.15625vw, 3px);
  --menu-enquire-mb: clamp(18px, 1.40625vw, 27px);
  --menu-gallery-mt: clamp(18px, 1.40625vw, 27px);
  --menu-foot-pt: clamp(20px, 1.5625vw, 30px);
  --menu-footnote-mt: clamp(10px, 0.78125vw, 15px);

  /* Menu component sizing */
  --menu-group-pad: clamp(9px, 0.703125vw, 13.5px);
  --menu-group-radius: clamp(16px, 1.25vw, 24px);
  --menu-link-radius: clamp(11px, 0.859375vw, 16.5px);
  --menu-link-gap: clamp(14px, 1.09375vw, 21px);
  --menu-link-stack-gap: clamp(6px, 0.46875vw, 9px);
  --menu-link-pad-y: clamp(12px, 0.9375vw, 18px);
  --menu-link-pad-right: clamp(28px, 2.1875vw, 42px);
  --menu-link-pad-left: clamp(14px, 1.09375vw, 21px);
  --menu-link-font-size: clamp(14.5px, 1.1328125vw, 21.75px);
  --menu-label-font-size: clamp(9px, 0.703125vw, 13.5px);
  --menu-label-mb: clamp(10px, 0.78125vw, 15px);
  --menu-label-rule-w: clamp(18px, 1.40625vw, 27px);
  --menu-label-rule-gap: clamp(8px, 0.625vw, 12px);
  --menu-active-dot-size: clamp(6px, 0.46875vw, 9px);
  --menu-active-dot-right: clamp(14px, 1.09375vw, 21px);
  --menu-footnote-font-size: clamp(9px, 0.703125vw, 13.5px);

  /* Brand sizing */
  --brand-font-size: clamp(28px, 2.1875vw, 42px);
  --brand-pivot-w: clamp(220px, 17.1875vw, 330px);
  --brand-pivot-h: clamp(34px, 2.65625vw, 51px);

  /* Menu appearance */
  --kt-europe-copy-dark: linear-gradient(113deg, rgba(42, 32, 23, 0.96), rgba(16, 13, 10, 0.98));
  --menu-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --menu-line: rgba(255, 255, 255, 0.08);
  --menu-text: rgba(255, 255, 255, 0.88);
  --menu-shadow: -30px 0 90px rgba(0, 0, 0, 0.55);
  --overview-tint: rgba(176, 148, 108, 0.24);
  --overview-stroke: rgba(168, 146, 116, 0.12);
  --overview-hover: rgba(172, 150, 118, 0.28);
  --overview-active: rgba(186, 168, 138, 0.1);
  --overview-glass: linear-gradient(180deg, rgba(108, 98, 86, 0.16), rgba(58, 52, 46, 0.2));
  --enquire-stroke: rgba(16, 9, 5, 1);
  --enquire-fill-1: rgba(200, 160, 95, 0.42);
  --enquire-fill-2: rgba(200, 160, 95, 0.22);
  --enquire-base: rgba(28, 20, 12, 0.78);
  --enquire-hover-1: rgba(200, 160, 95, 0.5);
  --enquire-hover-2: rgba(200, 160, 95, 0.3);
  --enquire-hover-base: rgba(32, 22, 14, 0.84);
  --gallery-fill-1: rgba(222, 150, 68, 0.16);
  --gallery-fill-2: rgba(222, 150, 68, 0.05);
  --gallery-base: rgba(14, 10, 8, 0.84);
  --gallery-stroke: rgba(200, 160, 95, 0.52);
  --gallery-hover-1: rgba(222, 150, 68, 0.22);
  --gallery-hover-2: rgba(222, 150, 68, 0.08);
  --gallery-hover-base: rgba(18, 12, 8, 0.9);
  --menu-stack-backdrop: 2147481000;
  --menu-stack-panel: 2147481001;
  --menu-stack-header: 2147481002;
}

/* ===== HEADER / BRAND ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--kt-header-height);
  padding: 0 var(--kt-header-pad-right) 0 var(--kt-header-pad-left);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 9012;
  pointer-events: none;
}

.header-left,
.header-right {
  pointer-events: auto;
}

.header-left {
  position: relative;
  display: flex;
  align-items: center;
}

.header-right {
  position: absolute;
  top: 0;
  right: var(--kt-header-logo-edge-gap);
  height: var(--kt-header-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

html body .header .logo-button#ktMenuToggle {
  position: relative;
  z-index: 2;
  width: var(--kt-header-logo-size);
  height: var(--kt-header-logo-size);
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 200ms ease;
}

html body .header .logo-button#ktMenuToggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: var(--kt-header-logo-disc-size);
  height: var(--kt-header-logo-disc-size);
  border-radius: 50%;
  background: var(--kt-europe-copy-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) translate3d(var(--kt-header-logo-nudge-x), var(--kt-header-logo-nudge-y), 0);
  pointer-events: none;
}

html body .header .logo-button#ktMenuToggle .header-logo {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  outline: none;
  transform: translate3d(var(--kt-header-logo-nudge-x), var(--kt-header-logo-nudge-y), 0);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, filter;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform 180ms ease, filter 180ms ease;
}

html body .header .logo-button#ktMenuToggle:focus,
html body .header .logo-button#ktMenuToggle:focus-visible,
html body .header .logo-button#ktMenuToggle:active,
html body .header .logo-button#ktMenuToggle:focus:active {
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

html body .header .logo-button#ktMenuToggle[aria-expanded="true"] {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42), 0 0 18px rgba(228, 160, 85, 0.18);
}

body.menu-open .header {
  z-index: var(--menu-stack-header);
}

/* ===== MENU PANEL ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--menu-stack-backdrop);
  background: rgba(12, 9, 6, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--menu-ease);
}

body.menu-open .menu-backdrop {
  opacity: 1;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--menu-stack-panel);
  width: var(--menu-w);
  height: 100svh;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--menu-shadow);
  transform: translate3d(108%, 0, 0) scaleX(0.982);
  transform-origin: right center;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 460ms cubic-bezier(0.18, 0.82, 0.22, 1), visibility 0s linear 460ms;
}

.menu-panel::before,
.menu-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu-panel::before {
  opacity: 1;
}

.menu-panel::after {
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.3), rgba(10, 8, 6, 0.68)),
    linear-gradient(90deg, rgba(255, 244, 228, 0.014), rgba(255, 255, 255, 0.006)),
    radial-gradient(circle at 0% 16%, rgba(198, 139, 58, 0.04), transparent 44%);
}

.menu-panel > * {
  position: relative;
  z-index: 1;
}

body.menu-open .menu-panel {
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scaleX(1);
  transition: transform 460ms cubic-bezier(0.18, 0.82, 0.22, 1), visibility 0s;
}

body.menu-open .menu-panel::before {
  background: url("../images/002-dt-stone.webp") center / cover no-repeat;
  opacity: 0.37;
}

body.menu-open .menu-panel::after {
  animation: ktMenuPanelWarmth 820ms cubic-bezier(0.18, 0.82, 0.22, 1) 80ms both;
}

.menu-nav {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: var(--menu-pad-top) var(--menu-pad-x) var(--menu-pad-bottom);
  display: flex;
  flex-direction: column;
  gap: var(--menu-nav-gap);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

/* Keep menu items full size so short viewports can scroll the list */
.menu-nav > * {
  flex-shrink: 0;
}

.menu-nav::-webkit-scrollbar { width: 6px; }
.menu-nav::-webkit-scrollbar-track { background: transparent; }
.menu-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.menu-top {
  flex: 0 0 auto;
  height: var(--menu-top-h);
  margin-bottom: var(--menu-top-mb);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.menu-top,
.menu-enquire-wrap,
.menu-gallery-wrap,
.menu-group,
.menu-foot-wrap {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0ms;
}

.menu-enquire-wrap {
  flex: 0 0 auto;
  margin-bottom: var(--menu-enquire-mb);
}

.menu-gallery-wrap {
  flex: 0 0 auto;
  margin-top: var(--menu-gallery-mt);
}

.menu-foot-wrap {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: var(--menu-foot-pt);
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--menu-link-gap);
  overflow: hidden;
  white-space: nowrap;
  padding: var(--menu-link-pad-y) var(--menu-link-pad-right) var(--menu-link-pad-y) var(--menu-link-pad-left);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--menu-link-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.009));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.012);
  color: var(--menu-text);
  font-family: var(--font-sans);
  font-size: var(--menu-link-font-size);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-38px, 0, 0) scaleX(0.62);
  transform-origin: left center;
  filter: blur(2.5px);
  transition:
    opacity 300ms ease,
    transform 640ms cubic-bezier(0.14, 0.92, 0.18, 1),
    filter 460ms ease,
    background 220ms var(--menu-ease),
    border-color 220ms var(--menu-ease),
    box-shadow 220ms var(--menu-ease),
    color 220ms var(--menu-ease);
}

.menu-group .menu-link + .menu-link {
  margin-top: var(--menu-link-stack-gap);
}

.menu-link--enquire {
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 244, 220, 0.96);
  border: 1.5px solid var(--enquire-stroke);
  background: linear-gradient(180deg, var(--enquire-fill-1), var(--enquire-fill-2)), var(--enquire-base);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 165, 0.12),
    inset 0 0 0 1px rgba(200, 160, 95, 0.14),
    0 0 0 1px rgba(12, 7, 4, 0.92),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.menu-link--gallery,
.menu-link--standalone {
  color: rgba(255, 244, 220, 0.94);
  border-color: var(--gallery-stroke);
  background: linear-gradient(180deg, var(--gallery-fill-1), var(--gallery-fill-2)), var(--gallery-base);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 165, 0.08),
    inset 0 0 0 1px rgba(200, 160, 95, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.menu-link .meta {
  display: inline-flex;
  align-items: center;
  margin-left: clamp(6px, 0.46875vw, 9px);
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9em;
  letter-spacing: 0.08em;
  text-transform: none;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, max-width 0.25s ease;
}

body.menu-open .menu-link {
  opacity: 1;
  transform: none;
  filter: none;
}

.menu-link:hover {
  transform: translate3d(-2px, 0, 0);
}

.menu-group .menu-link:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), var(--group-hover, rgba(255, 255, 255, 0.03)));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.026), inset 0 0 0 1px rgba(255, 255, 255, 0.012);
}

.menu-link--enquire:hover {
  color: rgba(255, 248, 232, 0.98);
  background: linear-gradient(180deg, var(--enquire-hover-1), var(--enquire-hover-2)), var(--enquire-hover-base);
}

.menu-link--gallery:hover,
.menu-link--standalone:hover {
  color: rgba(255, 248, 232, 0.98);
  background: linear-gradient(180deg, var(--gallery-hover-1), var(--gallery-hover-2)), var(--gallery-hover-base);
}

.menu-link:hover .meta {
  max-width: 360px;
  opacity: 0.65;
  transform: translateX(0);
}

.menu-link:focus-visible {
  outline: none;
  border-color: rgba(214, 171, 102, 0.4);
  box-shadow: inset 0 0 0 1px rgba(214, 171, 102, 0.14), 0 0 0 2px rgba(214, 171, 102, 0.14);
}

.menu-link.is-active {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), var(--group-active, rgba(255, 255, 255, 0.05)));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018), 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.menu-link.is-active::before {
  content: "";
  position: absolute;
  right: var(--menu-active-dot-right);
  top: 50%;
  width: var(--menu-active-dot-size);
  height: var(--menu-active-dot-size);
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.6);
  transform: translateY(-50%);
  pointer-events: none;
}

.menu-group {
  position: relative;
  flex: 0 0 auto;
  padding: var(--menu-group-pad);
  overflow: hidden;
  border: 1px solid var(--group-stroke, var(--menu-line));
  border-radius: var(--menu-group-radius);
  background: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -1px 0 rgba(255, 255, 255, 0.02), 0 10px 26px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  clip-path: inset(0 100% 0 0 round var(--menu-group-radius));
}

.menu-group::before,
.menu-group::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.menu-group::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.menu-group::after {
  background: radial-gradient(120% 90% at 0% 0%, var(--group-tint, rgba(255, 255, 255, 0.04)), transparent 58%);
  opacity: 0.9;
}

.menu-group > * {
  position: relative;
  z-index: 1;
}

.menu-group--overview {
  --group-tint: var(--overview-tint);
  --group-stroke: var(--overview-stroke);
  --group-hover: var(--overview-hover);
  --group-active: var(--overview-active);
  background: var(--overview-glass);
}

.menu-group--overview::before {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.03), rgba(255, 255, 255, 0.01));
}

body.menu-open .menu-group {
  clip-path: inset(0 0 0 0 round var(--menu-group-radius));
  transition:
    opacity 300ms ease,
    transform 620ms cubic-bezier(0.14, 0.9, 0.18, 1),
    filter 460ms ease,
    clip-path 690ms cubic-bezier(0.14, 0.9, 0.18, 1);
}

.menu-group__label {
  margin: 0 0 var(--menu-label-mb);
  padding: 0;
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-sans);
  font-size: var(--menu-label-font-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.menu-group__label::before,
.menu-group__label::after {
  content: "";
  width: var(--menu-label-rule-w);
  height: 1px;
  margin: 0 var(--menu-label-rule-gap);
  display: inline-block;
  vertical-align: middle;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.menu-foot {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0.82;
}

.menu-footnote {
  margin-top: var(--menu-footnote-mt);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: var(--menu-footnote-font-size);
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

/* Mobile landscape — short panel; full menu must scroll inside */
@media (max-width: 900px) and (orientation: landscape) {
  .menu-panel {
    height: 100dvh;
    max-height: 100dvh;
  }

  .menu-nav {
    height: 100%;
    max-height: 100%;
    padding-bottom: calc(var(--menu-pad-bottom) + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
}

/* ===== BRAND ANIMATION ===== */
.brand-text {
  display: inline-block;
  color: inherit;
  font-family: var(--font-serif);
  font-size: var(--brand-font-size);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45), 0 -1px 0 rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  filter: drop-shadow(0 0 4px rgba(255, 245, 210, 0.25));
}

.brand-pivot {
  position: relative;
  width: var(--brand-pivot-w);
  height: var(--brand-pivot-h);
  display: block;
  text-decoration: none;
  transform-origin: left center;
  transition: width 900ms cubic-bezier(0.7, 0, 0.3, 1), height 900ms cubic-bezier(0.7, 0, 0.3, 1), transform 900ms cubic-bezier(0.7, 0, 0.3, 1);
}

.brand-letter {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-serif);
  font-size: var(--brand-font-size);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 3px 10px rgba(0, 0, 0, 0.28);
  transition: transform 900ms cubic-bezier(0.7, 0, 0.3, 1), opacity 700ms ease;
}

.brand-bronze {
  color: #e5c477;
  background: none;
  -webkit-text-fill-color: #e5c477;
  -webkit-text-stroke: 0.2px #e5c477;
  text-shadow: 0 0 8px rgba(229, 196, 119, 0.18);
  filter: none;
}

.brand-silver {
  color: #c9c6bd;
  -webkit-text-stroke: 0.35px rgba(20, 10, 4, 0.15);
  filter: brightness(1.06) contrast(1.04);
}

.brand-letter:nth-child(1) { transform: translate(0, 0); }
.brand-letter:nth-child(2) { transform: translate(clamp(24px, 1.875vw, 36px), 0); }
.brand-letter:nth-child(3) { transform: translate(clamp(36px, 2.8125vw, 54px), 0); }
.brand-letter:nth-child(4) { transform: translate(clamp(68px, 5.3125vw, 102px), 0); }
.brand-letter:nth-child(5) { transform: translate(clamp(83px, 6.484375vw, 124.5px), 0); }
.brand-letter:nth-child(6) { transform: translate(clamp(104px, 8.125vw, 156px), 0); }
.brand-letter:nth-child(7) { transform: translate(clamp(118px, 9.21875vw, 177px), 0); }
.brand-letter:nth-child(8) { transform: translate(clamp(139px, 10.859375vw, 208.5px), 0); }

body.kt-brand-vertical .brand-pivot {
  width: clamp(34px, 2.65625vw, 51px);
  height: clamp(220px, 17.1875vw, 330px);
  opacity: 0.7;
  transform: translate(clamp(-25.5px, -1.328125vw, -17px), clamp(60px, 4.6875vw, 90px)) scale(0.8);
}

body.kt-brand-vertical .brand-letter:nth-child(1) { transform: translate(0, 0); }
body.kt-brand-vertical .brand-letter:nth-child(2) { transform: translate(clamp(4px, 0.3125vw, 6px), clamp(24px, 1.875vw, 36px)); }
body.kt-brand-vertical .brand-letter:nth-child(3) { transform: translate(clamp(-3.75px, -0.1953125vw, -2.5px), clamp(48px, 3.75vw, 72px)); }
body.kt-brand-vertical .brand-letter:nth-child(4) { transform: translate(clamp(4px, 0.3125vw, 6px), clamp(72px, 5.625vw, 108px)); }
body.kt-brand-vertical .brand-letter:nth-child(5) { transform: translate(0, clamp(96px, 7.5vw, 144px)); }
body.kt-brand-vertical .brand-letter:nth-child(6) { transform: translate(clamp(4px, 0.3125vw, 6px), clamp(120px, 9.375vw, 180px)); }
body.kt-brand-vertical .brand-letter:nth-child(7) { transform: translate(clamp(2px, 0.15625vw, 3px), clamp(144px, 11.25vw, 216px)); }
body.kt-brand-vertical .brand-letter:nth-child(8) { transform: translate(clamp(2px, 0.15625vw, 3px), clamp(168px, 13.125vw, 252px)); }

.brand-letter:nth-child(2) { transition-delay: 20ms; }
.brand-letter:nth-child(3) { transition-delay: 40ms; }
.brand-letter:nth-child(4) { transition-delay: 60ms; }
.brand-letter:nth-child(5) { transition-delay: 80ms; }
.brand-letter:nth-child(6) { transition-delay: 100ms; }
.brand-letter:nth-child(7) { transition-delay: 120ms; }
.brand-letter:nth-child(8) { transition-delay: 140ms; }

/* ===== ENQUIRY SHEET ===== */
.kt-enquiry-overlay {
  position: fixed;
  inset: 0;
  /* Above primary-service modal (99999) so contact is never buried under it. */
  z-index: 100000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 980ms cubic-bezier(0.16, 1, 0.28, 1);
}
body.enquiry-sheet-open .kt-enquiry-overlay {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 980ms;
  transition-delay: 60ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.28, 1);
}
body.enquiry-sheet-closing .kt-enquiry-overlay {
  opacity: 0;
  pointer-events: none;
  transition-duration: 1040ms;
  transition-delay: 480ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.18, 1);
}
.kt-enquiry-sheet {
  --kt-enquiry-graphite: 11, 16, 20;
  --kt-enquiry-graphite-deep: 5, 8, 11;
  --kt-enquiry-blue: 10, 29, 43;
  --kt-enquiry-teal: 65, 190, 179;
  --kt-enquiry-bronze: 224, 177, 105;
  --kt-enquiry-sheet-shadow: 0 -34px 110px rgba(0, 0, 0, 0.64),
    0 24px 92px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.055) inset,
    0 0 0 2px rgba(var(--kt-enquiry-bronze), 0.08),
    0 0 62px rgba(var(--kt-enquiry-teal), 0.08),
    0 0 100px rgba(194, 135, 55, 0.16),
    inset 0 1px 0 rgba(255, 236, 200, 0.13);
  position: fixed;
  left: 50%;
  right: auto;
  bottom: clamp(48px, 3.75vw, 72px);
  width: min(
    clamp(500px, 39.0625vw, 750px),
    calc(100vw - clamp(24px, 1.875vw, 36px))
  );
  /* Above primary-service modal (99999) so contact is never buried under it. */
  z-index: 100001;
  padding: 0;
  border: 1px solid rgba(var(--kt-enquiry-bronze), 0.54);
  border-radius: clamp(24px, 1.875vw, 36px);
  background:
    radial-gradient(ellipse at 12% 2%, rgba(var(--kt-enquiry-teal), 0.1), transparent 32%),
    radial-gradient(ellipse at 86% 10%, rgba(34, 75, 100, 0.22), transparent 42%),
    radial-gradient(ellipse at 50% -18%, rgba(var(--kt-enquiry-bronze), 0.18), transparent 56%),
    linear-gradient(155deg, rgba(20, 28, 35, 0.99) 0%, rgba(var(--kt-enquiry-graphite), 0.99) 48%, rgba(var(--kt-enquiry-graphite-deep), 1) 100%);
  box-shadow: var(--kt-enquiry-sheet-shadow);
  isolation: isolate;
  overflow: hidden;
  transform: translateX(-50%) translateY(calc(100% + clamp(96px, 7.5vw, 144px))) scale(0.92);
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.28, 1),
    filter 620ms ease,
    box-shadow 820ms ease;
}
.kt-enquiry-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--kt-enquiry-teal), 0.22), transparent 15%, transparent 85%, rgba(var(--kt-enquiry-teal), 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%, rgba(0, 0, 0, 0.24));
  opacity: 0.46;
  mix-blend-mode: screen;
}
.kt-enquiry-sheet::after {
  content: "";
  position: absolute;
  inset: -24% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 32%,
    rgba(84, 219, 205, 0.06) 39%,
    rgba(255, 241, 198, 0.28) 47%,
    rgba(186, 124, 43, 0.14) 54%,
    transparent 66%
  );
  opacity: 0;
  transform: translateX(-42%) skewX(-14deg);
}
body.enquiry-sheet-open .kt-enquiry-sheet {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  box-shadow: 0 -36px 110px rgba(0, 0, 0, 0.62),
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 0 2px rgba(var(--kt-enquiry-bronze), 0.1),
    0 0 82px rgba(var(--kt-enquiry-teal), 0.12),
    0 0 118px rgba(194, 135, 55, 0.2),
    inset 0 1px 0 rgba(255, 236, 200, 0.14);
}
body.enquiry-sheet-open .kt-enquiry-sheet::after {
  animation: ktEnquiryPanelSheen 1180ms cubic-bezier(0.19, 1, 0.22, 1) 320ms forwards;
}
body.enquiry-sheet-closing .kt-enquiry-sheet {
  transform: translateX(-50%) translateY(calc(100% + clamp(96px, 7.5vw, 144px))) scale(0.92);
  opacity: 1;
  filter: blur(10px);
  pointer-events: none;
  transition-delay: 480ms;
  box-shadow: var(--kt-enquiry-sheet-shadow);
}
body.enquiry-sheet-closing .kt-enquiry-sheet::after {
  animation: ktEnquiryPanelSheenOut 980ms cubic-bezier(0.19, 1, 0.22, 1) 180ms forwards;
}
.kt-enquiry-sheet__chrome {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
.kt-enquiry-sheet__chrome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 216, 203, 0.52), rgba(255, 226, 165, 0.86), rgba(72, 216, 203, 0.46), transparent);
  opacity: 0.85;
  box-shadow: 0 0 22px rgba(72, 216, 203, 0.18),
    0 0 18px rgba(224, 177, 105, 0.2);
}
.kt-enquiry-sheet__chrome::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 0.78125vw, 15px);
  border: 1px solid rgba(var(--kt-enquiry-bronze), 0.22);
  border-radius: clamp(16px, 1.25vw, 24px);
  background:
    linear-gradient(90deg, rgba(66, 205, 193, 0.22), transparent 16%, transparent 84%, rgba(66, 205, 193, 0.18)) border-box;
  box-shadow: inset 0 0 42px rgba(var(--kt-enquiry-teal), 0.045),
    inset 0 0 52px rgba(224, 177, 105, 0.045),
    inset 0 1px 0 rgba(255, 236, 200, 0.07);
}
body.enquiry-sheet-open .kt-enquiry-sheet__chrome::after {
  animation: ktEnquiryFramePulse 920ms cubic-bezier(0.19, 1, 0.22, 1) 260ms forwards;
}
body.enquiry-sheet-closing .kt-enquiry-sheet__chrome::after {
  animation: ktEnquiryFramePulseOut 760ms cubic-bezier(0.19, 1, 0.22, 1) 120ms forwards;
}
.kt-enquiry-sheet__content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 2.65625vw, 51px) clamp(26px, 2.03125vw, 39px) clamp(26px, 2.03125vw, 39px);
}
.kt-enquiry-sheet__kicker,
.kt-enquiry-sheet__title,
.kt-enquiry-sheet__copy,
.kt-enquiry-sheet__actions,
.kt-enquiry-sheet__close {
  opacity: 1;
  transform: translateY(clamp(22px, 1.71875vw, 33px));
  filter: blur(8px);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.28, 1),
    filter 560ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}
.kt-enquiry-sheet__close {
  position: absolute;
  top: clamp(14px, 1.09375vw, 21px);
  right: clamp(14px, 1.09375vw, 21px);
  z-index: 2;
  width: clamp(38px, 2.96875vw, 57px);
  height: clamp(38px, 2.96875vw, 57px);
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--kt-enquiry-bronze), 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 115%, rgba(var(--kt-enquiry-teal), 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 245, 219, 0.1), transparent 42%),
    rgba(10, 15, 19, 0.84);
  color: rgba(245, 238, 226, 0.82);
  font-size: clamp(1.55rem, 1.9375vw, 2.325rem);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(var(--kt-enquiry-teal), 0.08),
    inset 0 1px 0 rgba(255, 236, 200, 0.1);
}
body.enquiry-sheet-open .kt-enquiry-sheet__close,
body.enquiry-sheet-open .kt-enquiry-sheet__kicker,
body.enquiry-sheet-open .kt-enquiry-sheet__title,
body.enquiry-sheet-open .kt-enquiry-sheet__copy,
body.enquiry-sheet-open .kt-enquiry-sheet__actions {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
body.enquiry-sheet-open .kt-enquiry-sheet__close { transition-delay: 180ms; }
body.enquiry-sheet-open .kt-enquiry-sheet__kicker { transition-delay: 260ms; }
body.enquiry-sheet-open .kt-enquiry-sheet__title { transition-delay: 360ms; }
body.enquiry-sheet-open .kt-enquiry-sheet__copy { transition-delay: 460ms; }
body.enquiry-sheet-open .kt-enquiry-sheet__actions { transition-delay: 560ms; }
body.enquiry-sheet-closing .kt-enquiry-sheet__close,
body.enquiry-sheet-closing .kt-enquiry-sheet__kicker,
body.enquiry-sheet-closing .kt-enquiry-sheet__title,
body.enquiry-sheet-closing .kt-enquiry-sheet__copy,
body.enquiry-sheet-closing .kt-enquiry-sheet__actions {
  opacity: 1;
  transform: translateY(clamp(18px, 1.40625vw, 27px));
  filter: blur(8px);
}
body.enquiry-sheet-closing .kt-enquiry-sheet__close { transition-delay: 400ms; }
body.enquiry-sheet-closing .kt-enquiry-sheet__kicker { transition-delay: 300ms; }
body.enquiry-sheet-closing .kt-enquiry-sheet__title { transition-delay: 200ms; }
body.enquiry-sheet-closing .kt-enquiry-sheet__copy { transition-delay: 100ms; }
body.enquiry-sheet-closing .kt-enquiry-sheet__actions { transition-delay: 0ms; }
.kt-enquiry-sheet__close:hover {
  border-color: rgba(239, 190, 118, 0.62);
  color: rgba(255, 244, 224, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38),
      0 0 24px rgba(var(--kt-enquiry-teal), 0.16),
      0 0 24px rgba(194, 135, 55, 0.16),
      inset 0 1px 0 rgba(255, 236, 200, 0.12);
}
.kt-enquiry-sheet__close:focus-visible {
  outline: clamp(2px, 0.15625vw, 3px) solid rgba(224, 177, 105, 0.72);
  outline-offset: clamp(3px, 0.234375vw, 4.5px);
}
.kt-enquiry-sheet__kicker {
  margin: 0 0 clamp(10px, 0.78125vw, 15px);
  color: rgba(224, 177, 105, 1);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(var(--kt-enquiry-teal), 0.12);
}
.kt-enquiry-sheet__title {
  margin: 0 0 clamp(14px, 1.09375vw, 21px);
  color: #f5eee2;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(var(--kt-enquiry-teal), 0.08);
}
.kt-enquiry-sheet__title-gold {
  color: rgba(var(--kt-enquiry-bronze), 1);
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.46),
    0 0 24px rgba(194, 135, 55, 0.18);
}
.kt-enquiry-sheet__copy {
  margin: 0 0 clamp(22px, 1.71875vw, 33px);
  color: rgba(245, 238, 226, 0.78);
  font-size: clamp(1.5rem, 1.875vw, 2.25rem);
  line-height: 1.55;
}
.kt-enquiry-sheet__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 0.9375vw, 18px);
}
.kt-enquiry-sheet__actions a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(9px, 0.703125vw, 13.5px);
  min-height: clamp(48px, 3.75vw, 72px);
  padding: clamp(12px, 0.9375vw, 18px) clamp(16px, 1.25vw, 24px);
  border: 1px solid rgba(232, 198, 132, 0.66);
  border-radius: clamp(12px, 0.9375vw, 18px);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(var(--kt-enquiry-teal), 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 245, 219, 0.09), transparent 36%),
    linear-gradient(135deg, rgba(20, 29, 34, 0.96), rgba(6, 9, 11, 0.86));
  backdrop-filter: blur(10px) saturate(1.18);
  -webkit-backdrop-filter: blur(10px) saturate(1.18);
  color: rgba(var(--kt-enquiry-bronze), 1);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.375vw, 1.65rem);
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.16),
    0 4px 12px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(194, 135, 55, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 20px rgba(var(--kt-enquiry-teal), 0.08),
    0 0 24px rgba(194, 135, 55, 0.12),
    inset 0 1px 0 rgba(255, 250, 230, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.52);
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}
.kt-enquiry-sheet__icon {
  position: relative;
  z-index: 3;
  width: clamp(22px, 1.71875vw, 33px);
  height: clamp(22px, 1.71875vw, 33px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgb(76 218 205);
  filter: drop-shadow(0 0 10px rgba(var(--kt-enquiry-teal), 0.36));
}
.kt-enquiry-sheet__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.06);
}
.kt-enquiry-sheet__actions a::before,
.kt-enquiry-sheet__actions a::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.kt-enquiry-sheet__actions a::before {
  inset: -40% -72%;
  z-index: 1;
  background: linear-gradient(
    112deg,
    transparent 32%,
    rgba(84, 219, 205, 0.08) 39%,
    rgba(255, 241, 198, 0.5) 48%,
    rgba(186, 124, 43, 0.18) 54%,
    transparent 66%
  );
  opacity: 0;
  transform: translateX(-38%) skewX(-14deg);
}
.kt-enquiry-sheet__actions a::after {
  inset: clamp(4px, 0.3125vw, 6px);
  z-index: 2;
  border: 1px solid rgba(255, 226, 165, 0.22);
  border-radius: clamp(8px, 0.625vw, 12px);
  opacity: 0.68;
  box-shadow: inset 0 0 16px rgba(255, 226, 165, 0.055),
    0 0 14px rgba(var(--kt-enquiry-teal), 0.075),
    0 0 16px rgba(187, 126, 40, 0.09);
  transition: opacity 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}
.kt-enquiry-sheet__actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 190, 118, 0.78);
  background:
      radial-gradient(ellipse at 50% 120%, rgba(var(--kt-enquiry-teal), 0.2), transparent 62%),
      linear-gradient(180deg, rgba(255, 245, 219, 0.13), transparent 36%),
      linear-gradient(135deg, rgba(24, 36, 42, 0.98), rgba(8, 12, 14, 0.9));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.44),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 34px rgba(var(--kt-enquiry-teal), 0.16),
      0 0 40px rgba(194, 135, 55, 0.22),
      inset 0 1px 0 rgba(255, 250, 230, 0.28),
      inset 0 -1px 0 rgba(0, 0, 0, 0.52);
}
.kt-enquiry-sheet__actions a:hover::before {
  animation: ktEnquiryBtnSheen 900ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.kt-enquiry-sheet__actions a:hover::after {
  opacity: 1;
  border-color: rgba(255, 226, 165, 0.4);
  box-shadow: inset 0 0 20px rgba(255, 226, 165, 0.08),
      0 0 24px rgba(var(--kt-enquiry-teal), 0.14),
      0 0 22px rgba(187, 126, 40, 0.14);
}
.kt-enquiry-sheet__actions a:focus-visible {
  outline: clamp(2px, 0.15625vw, 3px) solid rgba(224, 177, 105, 0.72);
  outline-offset: clamp(3px, 0.234375vw, 4.5px);
}
.kt-enquiry-sheet__phone {
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
  .kt-enquiry-overlay,
  .kt-enquiry-sheet,
  .kt-enquiry-sheet__chrome::after,
  .kt-enquiry-sheet::after,
  .kt-enquiry-sheet__kicker,
  .kt-enquiry-sheet__title,
  .kt-enquiry-sheet__copy,
  .kt-enquiry-sheet__actions,
  .kt-enquiry-sheet__close,
  .kt-enquiry-sheet__actions a::before {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    filter: none !important;
  }
  .kt-enquiry-sheet,
  body.enquiry-sheet-closing .kt-enquiry-sheet {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  body:not(.enquiry-sheet-open):not(.enquiry-sheet-closing) .kt-enquiry-sheet {
    opacity: 0;
    pointer-events: none;
  }
  body.enquiry-sheet-open .kt-enquiry-sheet__kicker,
  body.enquiry-sheet-open .kt-enquiry-sheet__title,
  body.enquiry-sheet-open .kt-enquiry-sheet__copy,
  body.enquiry-sheet-open .kt-enquiry-sheet__actions,
  body.enquiry-sheet-open .kt-enquiry-sheet__close {
    opacity: 1;
    transform: none;
  }
}

/* ===== UPGRADED CONTACT MODAL ===== */
body.enquiry-sheet-open,
body.enquiry-sheet-closing { overflow: hidden; }

.kt-enquiry-overlay {
  background: rgba(0, 0, 0, 0.79);
  backdrop-filter: blur(8px) saturate(0.62);
  -webkit-backdrop-filter: blur(8px) saturate(0.62);
  visibility: hidden;
  transition: opacity 1ms linear, visibility 0s linear 1380ms;
}
body.enquiry-sheet-open .kt-enquiry-overlay {
  visibility: visible;
  transition: opacity 1ms linear, visibility 0s linear 0s;
}
body.enquiry-sheet-closing .kt-enquiry-overlay {
  opacity: 1;
  visibility: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: none;
}

.kt-enquiry-sheet.kt-contact-modal {
  --kt-contact-ivory: #f0eadf;
  --kt-contact-soft: rgba(240, 234, 223, 0.72);
  --kt-contact-quiet: rgba(240, 234, 223, 0.44);
  --kt-contact-gold: #d9aa60;
  --kt-contact-gold-soft: rgba(217, 170, 96, 0.42);
  --kt-contact-teal: #39c0b6;
  top: 50%;
  right: auto;
  bottom: auto;
  width: min(760px, calc(100vw - 42px));
  padding: 16px;
  border: 1px solid rgba(217, 170, 96, 0.74);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(217, 170, 96, 0.14), transparent 18%, transparent 78%, rgba(57, 192, 182, 0.11)),
    #0a1614;
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.8),
    0 0 0 4px rgba(217, 170, 96, 0.075),
    inset 0 1px rgba(255, 242, 213, 0.18);
  opacity: 1;
  visibility: hidden;
  filter: blur(10px);
  transform: translate(-50%, calc(-50% + 100% + clamp(96px, 7.5vw, 144px))) scale(0.92);
  will-change: transform, filter;
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.28, 1),
    filter 620ms ease,
    box-shadow 820ms ease,
    visibility 0s linear 1380ms;
}
.kt-enquiry-sheet.kt-contact-modal::before { display: none; }
.kt-enquiry-sheet.kt-contact-modal::after {
  display: block;
  background: linear-gradient(
    112deg,
    transparent 32%,
    rgba(84, 219, 205, 0.04) 39%,
    rgba(255, 241, 198, 0.22) 47%,
    rgba(186, 124, 43, 0.12) 54%,
    transparent 66%
  );
}
body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.28, 1),
    filter 620ms ease,
    box-shadow 820ms ease,
    visibility 0s linear 0s;
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.8),
    0 0 0 4px rgba(217, 170, 96, 0.075),
    inset 0 1px rgba(255, 242, 213, 0.18);
}
body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal::after {
  animation: ktContactPanelSheen 1180ms cubic-bezier(0.19, 1, 0.22, 1) 320ms forwards;
}
body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal {
  opacity: 1;
  visibility: visible;
  filter: blur(10px);
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 100% + clamp(96px, 7.5vw, 144px))) scale(0.92);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.28, 1) 480ms,
    filter 620ms ease 480ms,
    box-shadow 820ms ease 480ms,
    visibility 0s linear 1380ms;
}
body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal::after {
  animation: ktContactPanelSheenOut 980ms cubic-bezier(0.19, 1, 0.22, 1) 180ms forwards;
}

.kt-contact-shell {
  position: relative;
  overflow: hidden;
  padding: 40px 40px 30px;
  border: 1px solid rgba(217, 170, 96, 0.38);
  border-radius: 27px;
  background:
    radial-gradient(circle at 3% 0%, rgba(57, 192, 182, 0.29), transparent 35%),
    radial-gradient(circle at 92% 12%, rgba(57, 192, 182, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(127deg, #132421 0%, #091310 48%, #0b1c19 100%);
  background-size: auto, auto, 82px 100%, 100% 82px, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -28px 70px rgba(0, 0, 0, 0.22);
}
.kt-contact-shell::before {
  content: "KT";
  position: absolute;
  right: 28px;
  bottom: 84px;
  color: rgba(217, 170, 96, 0.028);
  font: 500 184px/0.7 var(--font-serif, Georgia, serif);
  letter-spacing: -0.09em;
  pointer-events: none;
}
.kt-contact-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 170, 96, 0.1);
  border-radius: 20px;
  pointer-events: none;
}
.kt-contact-shell > .kt-contact-close,
.kt-contact-shell > .kt-contact-kicker,
.kt-contact-shell > .kt-contact-title,
.kt-contact-shell > .kt-contact-copy,
.kt-contact-shell > .kt-contact-brief,
.kt-contact-shell > .kt-contact-actions,
.kt-contact-shell > .kt-contact-foot {
  opacity: 1;
  filter: blur(8px);
  transform: translateY(clamp(22px, 1.72vw, 33px));
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.28, 1),
    filter 560ms ease;
}
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-close,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-kicker,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-title,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-copy,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-brief,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-actions,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-foot {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-close,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-kicker,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-title { transition-delay: 180ms; }
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-copy,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-brief,
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-actions { transition-delay: 340ms; }
body.enquiry-sheet-open .kt-contact-shell > .kt-contact-foot { transition-delay: 560ms; }
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-close,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-kicker,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-title,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-copy,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-brief,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-actions,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-foot {
  opacity: 1;
  filter: blur(8px);
  transform: translateY(clamp(18px, 1.41vw, 27px));
}
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-close,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-kicker,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-title { transition-delay: 400ms; }
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-copy,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-brief,
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-actions { transition-delay: 180ms; }
body.enquiry-sheet-closing .kt-contact-shell > .kt-contact-foot { transition-delay: 0ms; }
.kt-contact-close {
  position: absolute;
  top: 21px;
  right: 21px;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(217, 170, 96, 0.62);
  border-radius: 50%;
  background: rgba(5, 14, 12, 0.74);
  color: rgba(240, 234, 223, 0.88);
  font: 300 32px/1 Arial, sans-serif;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.kt-contact-close:hover {
  border-color: var(--kt-contact-gold);
  background: #10231f;
  transform: rotate(4deg);
}
.kt-contact-kicker {
  margin: 0 84px 21px 0;
  color: var(--kt-contact-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}
.kt-contact-kicker::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 1px;
  margin: 0 0 4px 17px;
  background: linear-gradient(90deg, rgba(217, 170, 96, 0.75), transparent);
}
.kt-contact-title {
  max-width: 650px;
  margin: 0;
  color: var(--kt-contact-ivory);
  font: 500 clamp(48px, 6.1vw, 69px)/0.96 var(--font-serif, Georgia, serif);
  letter-spacing: -0.035em;
}
.kt-contact-title span {
  color: var(--kt-contact-gold);
  text-shadow: 0 0 24px rgba(217, 170, 96, 0.1);
}
.kt-contact-copy {
  max-width: 560px;
  margin: 24px 0 28px;
  color: var(--kt-contact-soft);
  font-size: 18px;
  line-height: 1.55;
}
.kt-contact-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
  border-top: 1px solid rgba(217, 170, 96, 0.25);
  border-bottom: 1px solid rgba(217, 170, 96, 0.25);
}
.kt-contact-brief span {
  padding: 12px 15px 11px;
  color: rgba(240, 234, 223, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
.kt-contact-brief span + span { border-left: 1px solid rgba(217, 170, 96, 0.18); }
.kt-contact-brief span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  border-radius: 50%;
  background: var(--kt-contact-teal);
  box-shadow: 0 0 10px rgba(57, 192, 182, 0.6);
}
.kt-contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kt-contact-action {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 13px 18px;
  border: 1px solid rgba(217, 170, 96, 0.7);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%), rgba(3, 12, 11, 0.72);
  box-shadow: inset 0 0 0 7px rgba(217, 170, 96, 0.045), 0 9px 22px rgba(0, 0, 0, 0.22);
  color: inherit;
  text-decoration: none;
  transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
}
.kt-contact-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(57, 192, 182, 0.14), transparent 68%);
  opacity: 0;
  transition: opacity 240ms ease;
}
.kt-contact-action:hover {
  border-color: var(--kt-contact-gold);
  background-color: rgba(10, 28, 25, 0.9);
  transform: translateY(-2px);
}
.kt-contact-action:hover::before { opacity: 1; }
.kt-contact-action--phone { grid-column: 1 / -1; min-height: 66px; }
.kt-contact-action__icon,
.kt-contact-action__copy,
.kt-contact-action__arrow { position: relative; }
.kt-contact-action__icon { color: var(--kt-contact-teal); }
.kt-contact-action__icon svg { display: block; width: 29px; }
.kt-contact-action__copy { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.kt-contact-action__name {
  color: var(--kt-contact-gold);
  font: 600 24px/1 var(--font-serif, Georgia, serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kt-contact-action__detail {
  overflow: hidden;
  color: var(--kt-contact-quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}
.kt-contact-action__arrow { color: rgba(217, 170, 96, 0.72); font-size: 20px; transition: transform 200ms ease; }
.kt-contact-action:hover .kt-contact-action__arrow { transform: translateX(4px); }
.kt-contact-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 2px 0;
  color: rgba(217, 170, 96, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.kt-contact-foot::before { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(217, 170, 96, 0.4), transparent); }
.kt-contact-foot span { order: -1; }
.kt-contact-modal :focus-visible { outline: 2px solid var(--kt-contact-gold); outline-offset: 4px; }

@media (max-width: 620px) {
  .kt-enquiry-sheet.kt-contact-modal {
    box-sizing: border-box;
    top: 14px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 28px);
    padding: 9px;
    border-radius: 27px;
    overflow-y: auto;
    transform: translate(-50%, calc(100% + 96px)) scale(0.92);
  }
  body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal { transform: translate(-50%, 0) scale(1); }
  body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal { transform: translate(-50%, calc(100% + 96px)) scale(0.92); }
  .kt-contact-shell { padding: 34px 22px 24px; border-radius: 20px; }
  .kt-contact-close { top: 16px; right: 16px; width: 48px; height: 48px; }
  .kt-contact-kicker { margin-right: 55px; font-size: 10px; }
  .kt-contact-kicker::after { width: 34px; margin-left: 10px; }
  .kt-contact-title { font-size: clamp(42px, 13vw, 58px); }
  .kt-contact-copy { margin: 19px 0 22px; font-size: 16px; }
  .kt-contact-brief span { padding-inline: 5px; font-size: 7px; letter-spacing: 0.1em; }
  .kt-contact-brief span::before { display: none; }
  .kt-contact-actions { grid-template-columns: 1fr; }
  .kt-contact-action--phone { grid-column: auto; }
  .kt-contact-foot { align-items: flex-start; line-height: 1.5; }
}

@media (orientation: landscape) and (max-width: 1000px) and (max-height: 700px) {
  .kt-enquiry-sheet.kt-contact-modal {
    top: 50%;
    width: min(820px, calc(100vw - 24px));
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 16px);
    padding: 9px;
    border-radius: 26px;
    overflow: hidden;
    transform: translate(-50%, calc(-50% + 100% + 96px)) scale(0.92);
  }
  body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal {
    transform: translate(-50%, -50%) scale(1);
  }
  body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal {
    transform: translate(-50%, calc(-50% + 100% + 96px)) scale(0.92);
  }
  .kt-contact-shell {
    box-sizing: border-box;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-content: space-between;
    column-gap: 24px;
    row-gap: clamp(4px, 1.4dvh, 8px);
    padding: clamp(15px, 5dvh, 28px) 28px clamp(12px, 3.5dvh, 20px);
    border-radius: 19px;
  }
  .kt-contact-shell::after { inset: 7px; border-radius: 14px; }
  .kt-contact-shell::before { right: 18px; bottom: 44px; font-size: 100px; }
  .kt-contact-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .kt-contact-kicker {
    grid-column: 1 / -1;
    margin: 0 48px 0 0;
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .kt-contact-kicker::after { width: 30px; margin-left: 9px; }
  .kt-contact-title {
    grid-column: 1;
    align-self: center;
    max-width: none;
    font-size: clamp(33px, 5vw, 42px);
    line-height: 0.94;
  }
  .kt-contact-copy {
    grid-column: 2;
    align-self: center;
    max-width: none;
    margin: 0;
    font-size: 16px;
    line-height: 1.38;
  }
  .kt-contact-brief { grid-column: 1 / -1; margin-bottom: 0; }
  .kt-contact-brief span {
    padding: clamp(5px, 1.6dvh, 9px) 6px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.07em;
  }
  .kt-contact-brief span::before { width: 3px; height: 3px; margin-right: 5px; }
  .kt-contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .kt-contact-action,
  .kt-contact-action--phone {
    grid-column: auto;
    min-height: clamp(56px, 15dvh, 64px);
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 8px;
    padding: clamp(6px, 1.8dvh, 9px) 12px;
    border-radius: 13px;
  }
  .kt-contact-action__icon svg { width: 22px; }
  .kt-contact-action__copy { gap: 2px; }
  .kt-contact-action__name { font-size: 19px; letter-spacing: 0.035em; }
  .kt-contact-action__detail {
    overflow: visible;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.025em;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .kt-contact-action__arrow { display: none; }
  .kt-contact-foot {
    grid-column: 1 / -1;
    align-items: center;
    margin: 0 2px;
    font-size: 9.5px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kt-enquiry-sheet.kt-contact-modal,
  body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal,
  body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal {
    transform: translate(-50%, -50%) scale(1);
  }
  .kt-enquiry-overlay,
  .kt-enquiry-sheet.kt-contact-modal,
  .kt-contact-shell > .kt-contact-close,
  .kt-contact-shell > .kt-contact-kicker,
  .kt-contact-shell > .kt-contact-title,
  .kt-contact-shell > .kt-contact-copy,
  .kt-contact-shell > .kt-contact-brief,
  .kt-contact-shell > .kt-contact-actions,
  .kt-contact-shell > .kt-contact-foot {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-delay: 0ms !important;
    animation-delay: 0ms !important;
  }
}
@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .kt-enquiry-sheet.kt-contact-modal,
  body.enquiry-sheet-open .kt-enquiry-sheet.kt-contact-modal,
  body.enquiry-sheet-closing .kt-enquiry-sheet.kt-contact-modal { transform: translate(-50%, 0) scale(1); }
}

@keyframes ktContactPanelSheen {
  0% { opacity: 0; transform: translateX(-42%) skewX(-14deg); }
  18% { opacity: 1; }
  72% { opacity: 0.72; }
  100% { opacity: 0; transform: translateX(42%) skewX(-14deg); }
}
@keyframes ktContactPanelSheenOut {
  0% { opacity: 0; transform: translateX(42%) skewX(-14deg); }
  24% { opacity: 0.62; }
  100% { opacity: 0; transform: translateX(-42%) skewX(-14deg); }
}

/* ===== KEYFRAMES USED BY DESKTOP RULES ===== */
@keyframes ktMenuPanelWarmth {
  0% { background: linear-gradient(180deg, rgba(7, 8, 10, 0.38), rgba(7, 8, 10, 0.78)), linear-gradient(90deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.003)), radial-gradient(circle at -8% 16%, rgba(198, 139, 58, 0), transparent 42%); }
  46% { background: linear-gradient(180deg, rgba(7, 8, 10, 0.29), rgba(7, 8, 10, 0.68)), linear-gradient(90deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.007)), radial-gradient(circle at 0% 16%, rgba(198, 139, 58, 0.15), transparent 47%); }
  100% { background: linear-gradient(180deg, rgba(7, 8, 10, 0.32), rgba(7, 8, 10, 0.72)), linear-gradient(90deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.005)), radial-gradient(circle at 0% 16%, rgba(198, 139, 58, 0.055), transparent 44%); }
}
@keyframes ktEnquiryBtnSheen {
  0%    { opacity: 0; transform: translateX(-38%) skewX(-14deg); }
  28%  { opacity: 0.78; }
  76%  { opacity: 0.48; }
  100% { opacity: 0; transform: translateX(40%) skewX(-14deg); }
}
@keyframes ktEnquiryFramePulse {
  0%    { border-color: rgba(224, 177, 105, 0.08); box-shadow: inset 0 0 24px rgba(224, 177, 105, 0.02), inset 0 1px 0 rgba(255, 236, 200, 0.03); }
  45%  { border-color: rgba(224, 177, 105, 0.3);  box-shadow: inset 0 0 52px rgba(224, 177, 105, 0.09), inset 0 1px 0 rgba(255, 236, 200, 0.11); }
  100% { border-color: rgba(224, 177, 105, 0.14); box-shadow: inset 0 0 40px rgba(224, 177, 105, 0.04), inset 0 1px 0 rgba(255, 236, 200, 0.05); }
}
@keyframes ktEnquiryPanelSheen {
  0%    { opacity: 0; transform: translateX(-42%) skewX(-14deg); }
  24%  { opacity: 0.85; }
  72%  { opacity: 0.42; }
  100% { opacity: 0; transform: translateX(42%) skewX(-14deg); }
}
@keyframes ktEnquiryPanelSheenOut {
  0%    { opacity: 0; transform: translateX(42%) skewX(-14deg); }
  24%  { opacity: 0.72; }
  72%  { opacity: 0.36; }
  100% { opacity: 0; transform: translateX(-42%) skewX(-14deg); }
}
@keyframes ktEnquiryFramePulseOut {
  0%    { border-color: rgba(224, 177, 105, 0.14); box-shadow: inset 0 0 40px rgba(224, 177, 105, 0.04), inset 0 1px 0 rgba(255, 236, 200, 0.05); }
  100% { border-color: rgba(224, 177, 105, 0.05); box-shadow: inset 0 0 18px rgba(224, 177, 105, 0.01), inset 0 1px 0 rgba(255, 236, 200, 0.02); }
}
