:root {
  --ink: #173e32;
  --ink-soft: #e7eee8;
  --espresso: #dce6dd;
  --ivory: #f5f1e9;
  --paper: #fcfaf6;
  --stone: #d8d0c6;
  --taupe: #867a6d;
  --champagne: #b59a70;
  --line: rgba(23, 62, 50, 0.16);
  --line-light: rgba(23, 62, 50, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --page: min(88vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.2vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 280ms ease, color 280ms ease, background 280ms ease, border-color 280ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 72px;
  color: var(--ink);
  background: rgba(242, 238, 231, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  position: relative;
  z-index: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  width: 31px;
  height: 31px;
  object-fit: contain;
  transition: filter 240ms ease;
}

.brand-wordmark {
  width: 96px;
  height: auto;
  transition: filter 240ms ease;
}

.site-header:not(.scrolled):not(.menu-active) .brand-symbol,
.site-header:not(.scrolled):not(.menu-active) .brand-wordmark {
  filter: invert(1) grayscale(1) brightness(3);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 48px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav a span {
  font-family: var(--serif);
  font-size: 11px;
  opacity: 0.55;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  transition: right 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  right: 0;
}

.header-actions {
  position: relative;
  z-index: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-booking {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0 9px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 17, 15, 0.98) 0%, rgba(24, 21, 19, 0.91) 34%, rgba(24, 21, 19, 0.28) 61%, rgba(17, 15, 13, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 16, 14, 0.58) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 39%;
  overflow: hidden;
  background: #d7d9d7;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.72) contrast(1.03);
  transform: scale(1.018);
}

.hero-image-tone {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(117, 91, 69, 0.08), rgba(25, 22, 19, 0.16));
  mix-blend-mode: multiply;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 6vw;
  width: min(590px, 46vw);
  transform: translateY(-58%);
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 5.25vw, 6.1rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: #dbc9b1;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-description {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button-ivory {
  color: var(--ink);
  background: var(--paper);
}

.button-ivory:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.line-link {
  position: relative;
  display: inline-flex;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.55);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.line-link-light {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.hero-signature {
  position: absolute;
  z-index: 4;
  top: 108px;
  right: 4.5vw;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.hero-categories {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 142px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4.2vw;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 21, 19, 0.79);
  backdrop-filter: blur(16px);
}

.hero-categories a {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 0 clamp(16px, 2.2vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 220ms ease, background 220ms ease;
}

.hero-categories a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-categories a:hover {
  color: var(--ink);
  background: var(--ivory);
}

.hero-categories > a > span {
  align-self: start;
  margin-top: 34px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 12px;
}

.hero-categories div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-categories strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero-categories small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color 220ms ease;
}

.hero-categories a:hover small {
  color: rgba(26, 24, 22, 0.65);
}

.hero-categories i {
  font-size: 19px;
  font-style: normal;
  transition: transform 220ms ease;
}

.hero-categories a:hover i {
  transform: translate(4px, 4px);
}

.chapter {
  position: relative;
  max-width: none;
  padding: clamp(100px, 10vw, 166px) 6vw;
  scroll-margin-top: 72px;
}

.chapter-heading > p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.chapter-heading > p span {
  color: var(--champagne);
}

.chapter-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 5.1rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.065em;
}

.chapter-heading-light > p {
  color: rgba(255, 255, 255, 0.49);
}

.chapter-heading-light h2 {
  color: #fff;
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 155, 115, 0.12), transparent 25%),
    var(--ivory);
}

.about::after {
  content: "OWOOLY";
  position: absolute;
  right: -0.05em;
  bottom: -0.28em;
  color: rgba(26, 24, 22, 0.035);
  font-family: var(--serif);
  font-size: clamp(8rem, 21vw, 22rem);
  line-height: 1;
  pointer-events: none;
}

.about .chapter-heading {
  width: var(--page);
  margin: 0 auto;
}

.about-editorial {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  margin: clamp(70px, 8vw, 120px) auto 0;
}

.about-quote {
  position: relative;
  padding-left: clamp(40px, 5vw, 80px);
}

.about-quote > span {
  position: absolute;
  top: -42px;
  left: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.about-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3.4rem);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.about-copy > p {
  margin: 0 0 32px;
  color: #625b55;
  font-size: 16px;
  line-height: 2;
}

.principles {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(80px, 9vw, 140px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 34px clamp(22px, 2.8vw, 46px);
  border-right: 1px solid var(--line);
}

.principles article:first-child {
  padding-left: 0;
}

.principles article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles article > span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 13px;
}

.principles h3 {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 650;
}

.principles p {
  margin: 0;
  color: #6f6760;
  font-size: 14px;
  line-height: 1.75;
}

.chapter-dark {
  color: #fff;
  background:
    radial-gradient(circle at 5% 8%, rgba(185, 155, 115, 0.13), transparent 23%),
    var(--ink-soft);
}

.prices {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.75fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: start;
}

.price-intro {
  position: sticky;
  top: 115px;
}

.price-intro .chapter-heading h2 {
  font-size: clamp(2.4rem, 3.7vw, 4.4rem);
}

.price-intro-copy {
  max-width: 330px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.9;
}

.price-shell {
  min-width: 0;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}

.price-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}

.price-tabs button {
  min-height: 78px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.58);
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.price-tabs button:last-child {
  border-bottom: 0;
}

.price-tabs button > span {
  color: var(--champagne);
  font-size: 11px;
}

.price-tabs button small {
  grid-column: 2;
  color: inherit;
  font-family: var(--sans);
  font-size: 12px;
  opacity: 0.64;
}

.price-tabs button:hover,
.price-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--ivory);
}

.price-panels {
  min-width: 0;
}

.price-panel {
  max-height: 650px;
  overflow-y: auto;
  padding: clamp(28px, 3vw, 48px);
  scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
  scrollbar-width: thin;
}

.price-panel[hidden] {
  display: none;
}

.price-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-light);
}

.price-panel-heading span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.price-panel-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.price-panel-heading > p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  white-space: nowrap;
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 4vw, 70px);
  padding-top: 9px;
}

.price-groups-single {
  grid-template-columns: 1fr;
}

.price-group h4 {
  margin: 24px 0 8px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.price-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.price-row > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.price-row strong,
.price-row > b {
  font-size: 14px;
  font-weight: 560;
}

.price-row > b {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.price-row small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.price-addon {
  color: rgba(255, 255, 255, 0.55);
}

.price-addon span,
.price-addon b {
  font-size: 13px;
}

.price-note,
.length-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.length-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 34px;
}

.length-grid article {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.length-grid span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.length-grid strong {
  margin-top: 13px;
  font-size: 15px;
}

.length-grid b {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.length-grid i {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: var(--length);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  opacity: 0.7;
}

.designers {
  background: var(--paper);
}

.designers-top {
  width: var(--page);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto clamp(54px, 6vw, 86px);
}

.designers-top > p {
  max-width: 360px;
  margin: 0 0 10px;
  color: #746b63;
  font-size: 14px;
  line-height: 1.8;
}

.designer-gallery {
  width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.designer-tile {
  position: relative;
  aspect-ratio: 0.73;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #d8d9d6;
  text-align: left;
  cursor: pointer;
}

.designer-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 17, 15, 0.9) 0%, rgba(19, 17, 15, 0.24) 42%, rgba(19, 17, 15, 0.03) 72%);
  transition: background 320ms ease;
}

.designer-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.55) contrast(1.02);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 400ms ease;
}

.designer-tile:hover img,
.designer-tile:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.78) contrast(1.02);
}

.designer-tile:hover::after,
.designer-tile:focus-visible::after {
  background: linear-gradient(0deg, rgba(19, 17, 15, 0.94) 0%, rgba(19, 17, 15, 0.2) 48%, transparent 76%);
}

.designer-tile-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: 12px;
}

.designer-tile-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
  display: flex;
  flex-direction: column;
}

.designer-tile-copy small {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.designer-tile-copy strong {
  margin-top: 6px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 470;
  letter-spacing: -0.04em;
}

.designer-tile-copy strong em {
  margin-left: 3px;
  font-size: 13px;
  font-style: normal;
  font-weight: 450;
  opacity: 0.62;
}

.designer-tile-copy > i {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.designer-tile-arrow {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 18px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 15px;
  transition: color 200ms ease, background 200ms ease;
}

.designer-tile:hover .designer-tile-arrow,
.designer-tile:focus-visible .designer-tile-arrow {
  color: var(--ink);
  background: #fff;
}

.schedule-note {
  width: var(--page);
  margin: 22px auto 0;
  color: #887f77;
  font-size: 12px;
  text-align: right;
}

.designer-dialog {
  width: min(1080px, 92vw);
  height: min(760px, 88vh);
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}

.designer-dialog[open] {
  display: grid;
  grid-template-columns: 43% 57%;
}

.designer-dialog::backdrop {
  background: rgba(18, 16, 14, 0.78);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.87);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.dialog-image {
  min-height: 0;
  background: #d5d8d6;
}

.dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.68);
}

.dialog-content {
  overflow-y: auto;
  padding: clamp(45px, 5vw, 82px);
}

.dialog-role {
  margin: 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.dialog-content h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 350;
  letter-spacing: -0.06em;
}

.dialog-content h2 span {
  margin-left: 5px;
  color: var(--taupe);
  font-size: 16px;
  font-weight: 500;
}

.dialog-award {
  margin: 28px 0 0;
  font-size: 16px;
  font-weight: 650;
}

.dialog-specialty {
  margin: 7px 0 0;
  color: #7c6a5a;
  font-family: var(--serif);
  font-size: 18px;
}

.dialog-bio {
  margin: 28px 0 0;
  color: #625b55;
  font-size: 15px;
  line-height: 1.95;
}

.dialog-schedule {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  margin-top: 28px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-schedule span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 650;
}

.dialog-schedule p {
  margin: 0;
  font-size: 14px;
}

.dialog-content details {
  border-bottom: 1px solid var(--line);
}

.dialog-content summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

.dialog-content summary::-webkit-details-marker {
  display: none;
}

.dialog-content details[open] summary span {
  transform: rotate(45deg);
}

.dialog-content ul {
  margin: 0;
  padding: 0 0 24px 18px;
  color: #726a63;
  font-size: 13px;
  line-height: 1.9;
}

.dialog-booking {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 20px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.visit {
  min-height: 90svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: #fff;
  background: var(--ink);
}

.visit-main,
.visit-details {
  padding: clamp(95px, 9vw, 150px) clamp(35px, 6vw, 100px);
}

.visit-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 155, 115, 0.14), transparent 24%),
    var(--espresso);
}

.visit-main .chapter-heading h2 {
  font-size: clamp(2.5rem, 4.3vw, 5rem);
}

.visit-address {
  margin-top: clamp(70px, 10vh, 140px);
}

.visit-address > span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.visit-address > p {
  margin: 15px 0 5px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 350;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.visit-address > small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.visit-details {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  color: var(--ink);
  background: var(--ivory);
}

.visit-details > article {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.visit-details > article > p:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #6f655d;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.visit-details > article > p:first-child span {
  color: var(--champagne);
}

.visit-details dl {
  margin: 0;
}

.visit-details dl > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.visit-details dt,
.visit-details dd {
  margin: 0;
  font-size: 15px;
}

.visit-details dd {
  font-family: var(--serif);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.visit-details article > small {
  display: block;
  margin-top: 14px;
  color: #847b73;
  font-size: 12px;
}

.parking-copy {
  display: grid;
  gap: 7px;
}

.parking-copy p {
  margin: 0;
  color: #625b55;
  font-size: 14px;
}

.parking-copy strong {
  margin-right: 9px;
  color: var(--ink);
}

.contact-card > a {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  letter-spacing: -0.025em;
}

.contact-card small {
  margin-top: 0 !important;
}

.visit-booking {
  align-self: end;
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 24px 28px;
  color: #fff;
  background: var(--ink);
  transition: background 220ms ease;
}

.visit-booking:hover {
  background: #433930;
}

.visit-booking span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.visit-booking strong {
  grid-row: 2;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.visit-booking i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 24px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 52px 5vw;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #151311;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img:first-child {
  width: 29px;
  filter: invert(1) brightness(2);
}

.footer-brand img:last-child {
  width: 88px;
  filter: invert(1) brightness(2);
}

.site-footer > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.footer-meta {
  justify-self: end;
  display: flex;
  gap: 28px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.mobile-action-bar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  padding: 13px 18px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav a span {
    display: none;
  }

  .hero-copy {
    left: 5vw;
  }

  .prices {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 45px;
  }

  .price-shell {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .price-tabs button {
    padding: 12px;
  }

  .price-groups {
    gap: 0 28px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .site-header.scrolled,
  .site-header.menu-active {
    height: 68px;
  }

  .brand-symbol {
    width: 27px;
    height: 27px;
  }

  .brand-wordmark {
    width: 80px;
  }

  .desktop-nav,
  .header-booking {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 1;
    inset: 68px 0 0;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 120px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav > p {
    margin: 0 0 18px;
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-nav > a:not(.mobile-nav-booking) {
    min-height: 82px;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav > a span {
    color: var(--champagne);
    font-family: var(--serif);
    font-size: 12px;
  }

  .mobile-nav > a strong {
    font-size: 23px;
    font-weight: 450;
  }

  .mobile-nav > a small {
    color: var(--taupe);
    font-family: var(--serif);
    font-size: 13px;
  }

  .mobile-nav-booking {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding: 0 18px;
    color: #fff;
    background: var(--ink);
    font-size: 14px;
    font-weight: 650;
  }

  .hero {
    min-height: 820px;
    height: 100svh;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(18, 16, 14, 0.96) 0%, rgba(18, 16, 14, 0.44) 58%, rgba(18, 16, 14, 0.28) 100%);
  }

  .hero-image {
    inset: 0;
  }

  .hero-image img {
    object-position: 57% 16%;
  }

  .hero-copy {
    top: auto;
    right: 22px;
    bottom: 245px;
    left: 22px;
    width: auto;
    transform: none;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 10.5vw, 4.4rem);
    line-height: 1.12;
  }

  .hero-description {
    max-width: 530px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-signature {
    display: none;
  }

  .hero-categories {
    height: 220px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .hero-categories a {
    min-height: 110px;
    grid-template-columns: 25px 1fr auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-categories a:first-child {
    border-left: 0;
  }

  .hero-categories > a > span {
    margin-top: 25px;
  }

  .hero-categories strong {
    font-size: 1.45rem;
  }

  .chapter {
    padding: 100px 22px;
  }

  .chapter-heading h2 {
    font-size: clamp(2.45rem, 8vw, 4rem);
  }

  .about .chapter-heading,
  .about-editorial,
  .principles,
  .designers-top,
  .designer-gallery,
  .schedule-note {
    width: 100%;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 70px;
  }

  .about-copy {
    max-width: 620px;
    margin-left: auto;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .principles article,
  .principles article:first-child,
  .principles article:last-child {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .prices {
    min-height: 0;
    display: block;
  }

  .price-intro {
    position: static;
  }

  .price-intro-copy {
    margin-top: 24px;
  }

  .price-shell {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .price-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .price-tabs button,
  .price-tabs button:last-child {
    min-height: 70px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .price-tabs button:nth-child(3n) {
    border-right: 0;
  }

  .price-panel {
    max-height: none;
  }

  .designer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .designer-tile-copy strong {
    font-size: 1.7rem;
  }

  .designer-dialog[open] {
    grid-template-columns: 40% 60%;
  }

  .dialog-content {
    padding: 52px 36px;
  }

  .visit {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .visit-main,
  .visit-details {
    padding: 95px 7vw;
  }

  .visit-details {
    min-height: 760px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-copy {
    bottom: 238px;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    gap: 18px;
  }

  .button {
    min-height: 50px;
    gap: 26px;
    padding: 0 17px;
  }

  .hero-actions .line-link {
    align-self: center;
    font-size: 12px;
  }

  .hero-categories a {
    grid-template-columns: 21px 1fr auto;
    gap: 8px;
    padding: 0 14px;
  }

  .hero-categories strong {
    font-size: 1.22rem;
  }

  .hero-categories small {
    font-size: 11px;
  }

  .hero-categories i {
    font-size: 15px;
  }

  .chapter {
    padding: 88px 20px;
  }

  .chapter-heading > p {
    margin-bottom: 19px;
    font-size: 11px;
  }

  .chapter-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .about-quote {
    padding-left: 26px;
  }

  .about-quote > span {
    top: -28px;
    font-size: 5rem;
  }

  .about-quote p {
    font-size: 1.65rem;
  }

  .about-copy > p {
    font-size: 15px;
  }

  .price-tabs button {
    grid-template-columns: 18px 1fr;
    padding: 9px;
    font-size: 15px;
  }

  .price-tabs button small {
    font-size: 10px;
  }

  .price-panel {
    padding: 25px 18px 30px;
  }

  .price-panel-heading {
    gap: 12px;
  }

  .price-panel-heading h3 {
    font-size: 1.15rem;
  }

  .price-groups {
    grid-template-columns: 1fr;
  }

  .price-group + .price-group {
    margin-top: 22px;
  }

  .length-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .length-grid article {
    min-height: 220px;
  }

  .designers-top {
    display: block;
    margin-bottom: 42px;
  }

  .designers-top > p {
    margin-top: 24px;
  }

  .designer-tile {
    aspect-ratio: 0.69;
  }

  .designer-tile-number {
    top: 13px;
    left: 13px;
  }

  .designer-tile-arrow {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .designer-tile-copy {
    right: 13px;
    bottom: 15px;
    left: 13px;
  }

  .designer-tile-copy small {
    font-size: 9px;
  }

  .designer-tile-copy strong {
    font-size: 1.35rem;
  }

  .designer-tile-copy strong em {
    display: block;
    margin: 1px 0 0;
    font-size: 10px;
  }

  .designer-tile-copy > i {
    display: none;
  }

  .schedule-note {
    line-height: 1.65;
    text-align: left;
  }

  .designer-dialog {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    border: 0;
  }

  .designer-dialog[open] {
    display: block;
    overflow-y: auto;
  }

  .dialog-image {
    height: 43vh;
  }

  .dialog-content {
    overflow: visible;
    padding: 38px 22px 60px;
  }

  .dialog-close {
    position: fixed;
    top: 14px;
    right: 14px;
  }

  .visit-main,
  .visit-details {
    padding: 82px 22px;
  }

  .visit-address {
    margin-top: 72px;
  }

  .visit-actions {
    gap: 20px;
  }

  .visit-details {
    min-height: 690px;
  }

  .site-footer {
    display: block;
    padding: 48px 22px;
  }

  .footer-meta {
    justify-content: space-between;
    margin-top: 28px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 7px;
    background: rgba(24, 21, 19, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-action-bar a:last-child {
    color: var(--ink);
    background: var(--paper);
  }

  .toast {
    right: 14px;
    bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Brand refresh: warm ivory, deep green, generous negative space */
html,
body {
  background: var(--ivory);
}

.site-header {
  color: var(--ink);
  border-bottom-color: rgba(23, 62, 50, 0.13);
  background: rgba(245, 241, 233, 0.72);
  backdrop-filter: blur(12px);
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(245, 241, 233, 0.94);
  border-bottom-color: var(--line);
}

.site-header:not(.scrolled):not(.menu-active) .brand-symbol,
.site-header:not(.scrolled):not(.menu-active) .brand-wordmark {
  filter: none;
}

.hero {
  color: var(--ink);
  background: var(--ivory);
}

.hero::before {
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(245, 241, 233, 0.98) 39%, rgba(245, 241, 233, 0.7) 51%, rgba(245, 241, 233, 0) 70%);
}

.hero::after {
  opacity: 0.08;
  background-image: radial-gradient(rgba(23, 62, 50, 0.22) 0.55px, transparent 0.55px);
  mix-blend-mode: multiply;
}

.hero-image {
  inset: 0 0 0 45%;
  background: #eadfce;
}

.hero-image img {
  object-position: 92% 50%;
  filter: none;
  transform: none;
}

.hero-copy {
  width: min(590px, 42vw);
  transform: translateY(-54%);
}

.hero-wordmark {
  width: clamp(190px, 17vw, 265px);
  margin-bottom: 30px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--champagne);
  font-size: 12px;
}

.hero h1 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.25vw, 3.75rem);
  font-weight: 410;
  line-height: 1.38;
  letter-spacing: -0.055em;
}

.hero-description {
  color: #607068;
  line-height: 1.9;
}

.button-green {
  color: #fff;
  background: var(--ink);
}

.button-green:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.hero-signature {
  padding: 13px 16px;
  color: rgba(23, 62, 50, 0.72);
  border: 1px solid rgba(23, 62, 50, 0.15);
  background: rgba(252, 250, 246, 0.7);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.hero-categories {
  grid-template-columns: repeat(5, 1fr);
  color: var(--ink);
  border-top-color: var(--line);
  background: rgba(252, 250, 246, 0.91);
  backdrop-filter: blur(18px);
}

.hero-categories a,
.hero-categories a:first-child {
  border-color: var(--line);
}

.hero-categories a:hover {
  color: #fff;
  background: var(--ink);
}

.hero-categories strong {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.hero-categories small {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.hero-categories a:hover small {
  color: rgba(255, 255, 255, 0.67);
}

.about {
  background: radial-gradient(circle at 82% 12%, rgba(23, 62, 50, 0.08), transparent 27%), var(--paper);
}

.about::after {
  color: rgba(23, 62, 50, 0.035);
}

.principles {
  grid-template-columns: repeat(4, 1fr);
}

.principles article {
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding-right: clamp(18px, 2.2vw, 34px);
  padding-left: clamp(18px, 2.2vw, 34px);
}

.principles h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 550;
}

.principles p {
  color: #68736d;
}

.chapter-dark {
  color: var(--ink);
  background: radial-gradient(circle at 5% 8%, rgba(181, 154, 112, 0.13), transparent 23%), var(--ink-soft);
}

.chapter-heading-light > p {
  color: #748078;
}

.chapter-heading-light h2 {
  color: var(--ink);
}

.price-intro-copy {
  color: #6f7b74;
}

.price-shell {
  border-color: var(--line);
  background: rgba(252, 250, 246, 0.5);
}

.price-tabs {
  border-right-color: var(--line);
}

.price-tabs button {
  color: #66746c;
  border-bottom-color: var(--line);
}

.price-tabs button:hover,
.price-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
}

.price-panel-heading {
  border-bottom-color: var(--line);
}

.price-panel-heading h3,
.price-row strong,
.price-row > b {
  color: var(--ink);
}

.price-panel-heading > p,
.price-row small,
.price-note,
.length-note {
  color: #7b867f;
}

.price-row {
  border-bottom-color: rgba(23, 62, 50, 0.12);
}

.price-addon,
.price-addon b {
  color: #738078;
}

.length-grid article {
  border-color: rgba(23, 62, 50, 0.14);
  background: rgba(255, 255, 255, 0.34);
}

.length-grid i {
  border-color: rgba(23, 62, 50, 0.5);
}

.length-grid b {
  color: #77837b;
}

.length-sheet {
  width: min(100%, 620px);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 62, 50, 0.12);
  background: #f5f1ec;
}

.length-sheet img {
  width: 100%;
  height: auto;
}

.designers {
  background: #f8f5ef;
}

.products {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(181, 154, 112, 0.18), transparent 25%),
    var(--ivory);
}

.products::after {
  content: "PRODUCTS";
  position: absolute;
  right: -0.04em;
  bottom: -0.23em;
  color: rgba(23, 62, 50, 0.035);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.products-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(55px, 6vw, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-status {
  padding-left: clamp(26px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.products-status > span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.products-status p {
  margin: 23px 0 42px;
  color: #68736d;
  font-size: 15px;
  line-height: 1.95;
}

.products-status strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.designer-tile::after {
  background: linear-gradient(0deg, rgba(17, 48, 38, 0.88) 0%, rgba(17, 48, 38, 0.2) 44%, rgba(17, 48, 38, 0.02) 74%);
}

.designer-tile:hover::after,
.designer-tile:focus-visible::after {
  background: linear-gradient(0deg, rgba(17, 48, 38, 0.94) 0%, rgba(17, 48, 38, 0.18) 48%, transparent 76%);
}

.visit {
  color: var(--ink);
  background: var(--paper);
}

.visit-main {
  background: radial-gradient(circle at 78% 18%, rgba(181, 154, 112, 0.14), transparent 24%), var(--espresso);
}

.visit-address > p {
  color: var(--ink);
}

.visit-address > small {
  color: #6f7b74;
}

.visit-main .line-link-light {
  color: var(--ink);
  border-bottom-color: rgba(23, 62, 50, 0.45);
}

.visit-main .button-ivory {
  color: #fff;
  background: var(--ink);
}

.visit-main .button-ivory:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.visit-details {
  background: var(--paper);
}

.visit-booking,
.dialog-booking {
  background: var(--ink);
}

.visit-booking:hover {
  background: #285544;
}

.site-footer {
  background: #12392d;
}

.mobile-action-bar {
  background: rgba(18, 57, 45, 0.96);
}

@media (max-width: 900px) {
  .site-header:not(.scrolled):not(.menu-active) .brand-symbol,
  .site-header:not(.scrolled):not(.menu-active) .brand-wordmark {
    filter: none;
  }

  .mobile-nav-booking {
    background: var(--ink);
  }

  .hero {
    min-height: 900px;
    color: var(--ink);
  }

  .hero::before {
    background: linear-gradient(0deg, var(--ivory) 0%, rgba(245, 241, 233, 0.99) 39%, rgba(245, 241, 233, 0.38) 61%, rgba(245, 241, 233, 0.08) 100%);
  }

  .hero-image {
    inset: 68px 0 auto;
    height: 46%;
  }

  .hero-image img {
    object-position: 86% 50%;
  }

  .hero-copy {
    bottom: 272px;
    transform: none;
  }

  .hero-wordmark {
    width: 155px;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(1.9rem, 7.4vw, 2.8rem);
    line-height: 1.35;
  }

  .hero-description {
    color: #607068;
  }

  .hero-actions .line-link {
    color: var(--ink);
    border-bottom-color: rgba(23, 62, 50, 0.45);
  }

  .hero-categories {
    height: 246px;
    grid-template-columns: repeat(2, 1fr);
    color: var(--ink);
    background: rgba(252, 250, 246, 0.95);
  }

  .hero-categories a {
    min-height: 82px;
    border-color: var(--line);
  }

  .hero-categories a:last-child {
    grid-column: 1 / -1;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles article,
  .principles article:first-child,
  .principles article:last-child {
    padding: 28px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .principles article:nth-child(2n) {
    border-right: 0;
  }

  .products-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .products-status {
    padding-left: 0;
    border-left: 0;
  }

  .price-tabs {
    border-bottom-color: var(--line);
  }

  .price-tabs button,
  .price-tabs button:last-child {
    border-color: var(--line);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 900px;
  }

  .hero-copy {
    bottom: 270px;
  }

  .hero-wordmark {
    width: 145px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    gap: 15px;
  }

  .hero-categories strong {
    font-size: 1rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article,
  .principles article:first-child,
  .principles article:last-child,
  .principles article:nth-child(2n) {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .length-sheet {
    margin-top: 22px;
  }

  .products-inner {
    gap: 40px;
    padding: 45px 0;
  }

  .products-status p {
    margin-bottom: 30px;
  }
}

/* Current refinement: full editorial hero, illustrated length guide, direct contact */
.hero-image {
  inset: 86px 0 142px 38%;
  display: grid;
  place-items: center;
  background: #dfe3de;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-categories {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hero-categories a {
  grid-template-columns: 23px minmax(0, 1fr) auto;
  gap: 10px;
  padding-right: clamp(12px, 1.45vw, 25px);
  padding-left: clamp(12px, 1.45vw, 25px);
}

.hero-categories strong {
  font-size: clamp(0.98rem, 1.2vw, 1.22rem);
}

.length-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(23, 62, 50, 0.14);
  background: #f6f1e9;
}

.length-guide article {
  min-width: 0;
  border-right: 1px solid rgba(23, 62, 50, 0.13);
}

.length-guide article:last-child {
  border-right: 0;
}

.length-figure {
  height: clamp(225px, 22vw, 310px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 10px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(181, 154, 112, 0.15), transparent 42%),
    linear-gradient(180deg, #faf7f1 0%, #eee7dc 100%);
}

.length-figure img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.length-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 10px;
  padding: 18px 16px 20px;
  border-top: 1px solid rgba(23, 62, 50, 0.13);
}

.length-copy span {
  grid-column: 1 / -1;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.length-copy strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
}

.length-copy b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 8%, rgba(181, 154, 112, 0.16), transparent 28%),
    #e8eee9;
}

.contact::after {
  content: "CONTACT";
  position: absolute;
  right: -0.04em;
  bottom: -0.25em;
  color: rgba(23, 62, 50, 0.035);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: end;
  margin: 0 auto;
}

.contact-intro > p {
  max-width: 390px;
  margin: 34px 0 0;
  color: #66736c;
  font-size: 16px;
  line-height: 1.9;
}

.contact-channels {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-channel {
  min-height: 132px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.62);
  transition: color 220ms ease, background 220ms ease;
}

.contact-channel > span {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.contact-channel > span em {
  margin-right: 9px;
  color: var(--champagne);
  font-style: normal;
}

.contact-channel > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-channel strong {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.contact-channel small {
  color: #748078;
  font-size: 13px;
}

.contact-channel > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 62, 50, 0.28);
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
  transition: transform 220ms ease;
}

.contact-channel:hover {
  background: var(--paper);
}

.contact-channel:hover > i {
  transform: translate(3px, -3px);
}

.contact-channel-primary,
.contact-channel-primary:hover {
  color: #fff;
  background: var(--ink);
}

.contact-channel-primary > span,
.contact-channel-primary small {
  color: rgba(255, 255, 255, 0.66);
}

.contact-channel-primary > i {
  border-color: rgba(255, 255, 255, 0.36);
}

@media (max-width: 900px) {
  .hero-image {
    inset: 68px 0 auto;
    height: 32%;
  }

  .hero-image img {
    object-position: center;
  }

  .hero-categories {
    height: 246px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-categories a,
  .hero-categories a:last-child {
    min-height: 82px;
    grid-column: auto;
  }

  .length-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .length-guide article:nth-child(2n) {
    border-right: 0;
  }

  .length-guide article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 62, 50, 0.13);
  }

  .length-figure {
    height: 270px;
  }

  .contact-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro > p {
    max-width: 540px;
  }
}

@media (max-width: 640px) {
  .length-guide {
    margin-top: 22px;
  }

  .length-figure {
    height: 225px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .length-copy {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 15px 12px 17px;
  }

  .length-copy span {
    grid-column: auto;
    min-height: 28px;
    line-height: 1.4;
  }

  .length-copy b {
    margin-top: 3px;
    font-size: 14px;
  }

  .contact-inner {
    gap: 40px;
  }

  .contact-intro > p {
    margin-top: 24px;
    font-size: 15px;
  }

  .contact-channel {
    min-height: 108px;
    grid-template-columns: 92px minmax(0, 1fr) 30px;
    gap: 13px;
    padding: 17px 15px;
  }

  .contact-channel > span {
    font-size: 9px;
    white-space: normal;
  }

  .contact-channel > span em {
    display: block;
    margin: 0 0 2px;
  }

  .contact-channel strong {
    font-size: 1.08rem;
  }

  .contact-channel small {
    font-size: 11px;
    line-height: 1.5;
  }

  .contact-channel > i {
    width: 30px;
    height: 30px;
  }

  .mobile-action-bar {
    grid-template-columns: 0.72fr 0.9fr 1.28fr;
  }

  .mobile-action-bar a {
    font-size: 12px;
  }
}
