:root {
  color-scheme: light;
  --forest: #173a31;
  --forest-deep: #102e27;
  --forest-soft: #254b3f;
  --cream: #f6f2e9;
  --paper: #fffcf6;
  --sand: #e9ddc9;
  --gold: #dfb577;
  --ink: #1b2f29;
  --muted: #5e6a62;
  --line: #dedbd1;
  --serif: Georgia, 'Times New Roman', serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: #e3b274;
  color: var(--forest-deep);
}
:focus-visible {
  outline: 3px solid #c4763e;
  outline-offset: 4px;
}
.shell {
  width: min(100% - 64px, 1220px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: #fff;
  color: var(--forest);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--forest);
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}
.header-inner {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fffaf0;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: var(--gold);
  color: var(--forest-deep);
  flex: none;
}
.brand-mark svg {
  width: 31px;
  height: 31px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}
.brand-name span {
  color: var(--gold);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 27px);
  color: #e8eee7;
  font-size: 13px;
  font-weight: 600;
}
.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--gold);
}
.site-nav .nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 17px;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 4px;
  color: #fff;
}
.site-nav .nav-contact:hover {
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
}
.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 120px;
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 27%);
  border-radius: 4px;
  color: #f9f4e9;
}
.language-picker svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.language-picker select {
  min-width: 0;
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.language-picker option {
  color: #173a31;
  background: #fffcf6;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 656px;
  background: var(--forest);
  color: #f9f4e9;
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto auto -290px -290px;
  width: 570px;
  height: 570px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgb(255 255 255 / 2%),
    0 0 0 190px rgb(255 255 255 / 2%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 40px;
  min-height: 656px;
}
.hero-copy {
  padding: 70px 0 75px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow-dark {
  color: #a66e43;
}
.hero h1,
.section h2,
.contact-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.065em;
}
.hero h1 {
  margin: 26px 0 24px;
  font-size: clamp(62px, 6.25vw, 104px);
  line-height: 0.98;
  overflow-wrap: break-word;
}
.hero h1 em,
.section h2 em,
.contact-section h2 em {
  font-weight: 400;
}
.section h2,
.contact-section h2,
.contact-card h3 {
  overflow-wrap: break-word;
}
.hero h1 em {
  color: var(--gold);
}
.hero-intro {
  max-width: 510px;
  margin: 0;
  color: #d2ddd4;
  font-size: 17px;
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 37px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--gold);
  color: var(--forest-deep);
}
.button-primary:hover {
  background: #edc58b;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fbf5eb;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgb(255 255 255 / 39%);
  padding-bottom: 5px;
}
.text-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-footnote {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 65px;
  color: #bbcbbf;
  font-size: 11px;
  letter-spacing: 0.015em;
}
.footnote-rule {
  display: inline-block;
  width: 33px;
  height: 1px;
  margin-right: 7px;
  background: #a8bbac;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  justify-items: center;
  padding: 30px 25px 50px;
}
.art-backdrop {
  position: absolute;
  right: -165px;
  top: -48px;
  width: 710px;
  height: 710px;
  background:
    radial-gradient(circle at 50% 51%, #335849 0 35%, transparent 36%),
    radial-gradient(
      circle at 50% 51%,
      transparent 0 48%,
      rgb(223 181 119 / 32%) 48.2% 48.35%,
      transparent 48.6%
    ),
    radial-gradient(
      circle at 50% 51%,
      transparent 0 65%,
      rgb(255 255 255 / 8%) 65.2% 65.35%,
      transparent 65.6%
    );
  opacity: 0.78;
  pointer-events: none;
}
.art-caption {
  position: absolute;
  top: 64px;
  right: 0;
  color: #a9c1ae;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.menu-device {
  position: relative;
  z-index: 1;
  width: min(100%, 412px);
  padding: 14px;
  background: #fdf9f0;
  border: 1px solid #efdfc4;
  border-radius: 22px;
  box-shadow:
    18px 25px 0 rgb(4 25 20 / 18%),
    0 24px 70px rgb(5 18 14 / 35%);
  color: #243d32;
  transform: rotate(2deg);
}
.device-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 2px 5px 12px;
  border-bottom: 1px solid #e5dfd1;
}
.device-symbol {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--gold);
  font-size: 20px;
}
.device-top strong,
.device-top small {
  display: block;
}
.device-top strong {
  font-family: var(--serif);
  font-size: 16px;
}
.device-top small {
  margin-top: 1px;
  color: #7a867c;
  font-size: 10px;
}
.device-language {
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid #e1dccf;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
}
.device-intro {
  padding: 23px 8px 20px;
}
.device-intro span {
  color: #9c713f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
}
.device-intro h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
}
.device-categories {
  display: flex;
  gap: 7px;
  padding: 0 7px 13px;
}
.device-categories button {
  padding: 8px 12px;
  border: 1px solid #dfddcf;
  border-radius: 50px;
  background: transparent;
  color: #45584b;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}
.device-categories button:hover {
  border-color: #547163;
}
.device-categories button.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}
.device-dish {
  display: grid;
  grid-template-columns: 43% 1fr;
  min-height: 194px;
  overflow: hidden;
  border: 1px solid #e4dece;
  border-radius: 13px;
  background: #fff;
}
.dish-image {
  min-height: 194px;
  background-image: url('assets/menu-dishes.webp');
  background-repeat: no-repeat;
  background-size: 300% auto;
}
.dish-image-main {
  background-position: left center;
}
.dish-image-dessert {
  background-position: right center;
}
.dish-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 21px 14px 14px;
}
.dish-kicker {
  color: #9a7447;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.dish-info strong {
  margin-top: 11px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dish-info small {
  margin-top: 8px;
  color: #657064;
  font-size: 10px;
  line-height: 1.5;
}
.dish-action {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #ece8df;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
}
.device-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 7px 4px;
  color: #6b776d;
  font-size: 9px;
}
.device-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c88a4d;
}
.floating-note {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 77px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 194px;
  padding: 13px 15px;
  border: 1px solid #ead9bb;
  border-radius: 9px;
  background: #fffaf0;
  box-shadow: 0 15px 38px rgb(4 26 18 / 28%);
  color: var(--forest);
  transform: rotate(-3deg);
}
.floating-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 7px;
  background: #e7e4d6;
  font-size: 19px;
}
.floating-note strong,
.floating-note small {
  display: block;
}
.floating-note strong {
  font-size: 11px;
}
.floating-note small {
  margin-top: 3px;
  color: #667568;
  font-size: 9px;
}
.art-disclaimer {
  position: absolute;
  bottom: 15px;
  right: 7px;
  margin: 0;
  color: #a9b9aa;
  font-size: 9px;
}

.signal-strip {
  background: #dfb577;
  color: #254036;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.signal-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px;
  border-right: 1px solid rgb(23 58 49 / 19%);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.signal-grid span:first-child {
  border-left: 1px solid rgb(23 58 49 / 19%);
}

.section {
  padding: 118px 0;
}
.section h2,
.contact-section h2 {
  margin: 20px 0 0;
  font-size: clamp(44px, 4.3vw, 66px);
  line-height: 1.08;
}
.section h2 em {
  color: #a56f47;
}
.section-heading {
  margin-bottom: 48px;
}
.heading-split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 60px;
}
.heading-split > p {
  max-width: 340px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
  border: 1px solid #dfded5;
  border-radius: 6px;
}
.feature-card-light {
  background: #fbf9f3;
}
.feature-card-sand {
  background: #eee6d9;
}
.feature-card-green {
  background: #e6ece5;
}
.feature-index {
  color: #8d977e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.feature-glyph {
  position: relative;
  height: 124px;
  margin: 26px 0 24px;
}
.feature-glyph-menu {
  display: flex;
  align-items: end;
  gap: 9px;
}
.feature-glyph-menu span {
  display: block;
  width: 63px;
  border: 1px solid #a8b8aa;
  border-radius: 7px;
  background: #edf1e8;
  box-shadow: 6px 8px 0 rgb(18 58 49 / 5%);
}
.feature-glyph-menu span:nth-child(1) {
  height: 80px;
}
.feature-glyph-menu span:nth-child(2) {
  height: 104px;
  background: #d4dfd1;
}
.feature-glyph-menu span:nth-child(3) {
  height: 92px;
  background: #f0e6d4;
}
.feature-glyph-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-glyph-info span {
  display: grid;
  width: 83px;
  height: 83px;
  place-items: center;
  border: 1px solid #cdbb9c;
  border-radius: 50%;
  color: #6e6a56;
  font-family: var(--serif);
  font-size: 44px;
  font-style: italic;
}
.feature-glyph-info span:last-child {
  width: 57px;
  height: 57px;
  align-self: flex-end;
  background: #e8cda4;
  font-size: 27px;
}
.feature-glyph-ar {
  display: grid;
  place-items: center start;
}
.ar-cube {
  position: relative;
  display: block;
  width: 96px;
  height: 96px;
  border: 2px solid #6a8c7c;
  border-radius: 17px;
  transform: rotate(-12deg);
}
.ar-cube::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 2px solid #7fa494;
  border-radius: 10px;
  transform: rotate(25deg);
}
.ar-cube::after {
  content: '';
  position: absolute;
  right: -21px;
  top: -19px;
  width: 28px;
  height: 28px;
  border: 1px solid #779983;
  border-radius: 50%;
  background: #d8e4d8;
}
.feature-card h3 {
  max-width: 255px;
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.13;
}
.feature-card p {
  margin: 0;
  color: #58665c;
  font-size: 13px;
  line-height: 1.7;
}
.feature-detail {
  margin-top: auto;
  padding-top: 24px;
  color: #69776c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-process {
  background: #ebe6db;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 150px);
}
.process-sticky {
  align-self: start;
}
.process-sticky > p:last-child {
  max-width: 340px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.process-list {
  border-top: 1px solid #cfc8ba;
}
.process-item {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 22px;
  padding: 29px 0 32px;
  border-bottom: 1px solid #cfc8ba;
}
.process-number {
  color: #ad754b;
  font-family: var(--serif);
  font-size: 29px;
}
.process-item h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.process-item p {
  max-width: 440px;
  margin: 0;
  color: #657067;
  font-size: 14px;
  line-height: 1.75;
}

.section-operator {
  overflow: hidden;
  background: #14372e;
  color: #f9f4e9;
}
.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.operator-visual {
  position: relative;
  min-width: 0;
  padding: 30px 0 30px 20px;
}
.operator-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  left: -200px;
  border: 1px solid rgb(220 193 143 / 21%);
  border-radius: 3px;
  background: #20473b;
}
.operator-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #dbdacb;
  border-radius: 8px;
  background: #f9f8f3;
  box-shadow: 20px 28px 0 rgb(5 21 16 / 16%);
  color: #283d33;
}
.window-top {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 37px;
  padding: 0 15px;
  border-bottom: 1px solid #e7e5db;
  color: #7c8a7d;
  font-size: 9px;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5d9cf;
}
.window-dots i:first-child {
  background: #d8a482;
}
.window-body {
  display: grid;
  grid-template-columns: 28% 1fr;
  min-height: 281px;
}
.window-body aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  padding: 19px 11px;
  background: #1c3d32;
  color: #dce7dc;
  font-size: 9px;
}
.window-body aside strong {
  margin: 0 0 16px;
  color: #f5ede0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.window-body aside span {
  padding: 9px 8px;
  border-radius: 4px;
}
.window-body aside .side-selected {
  background: #d8af75;
  color: #173b31;
  font-weight: 800;
}
.window-main {
  min-width: 0;
  padding: 18px;
}
.window-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 15px;
}
.window-title small,
.window-title strong {
  display: block;
}
.window-title small {
  color: #9b7953;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.window-title strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}
.window-title > span {
  padding: 8px 9px;
  border-radius: 3px;
  background: #1b4638;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}
.window-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 65px;
  padding: 9px 0;
  border-top: 1px solid #e9e7dd;
}
.row-thumb {
  display: block;
  width: 47px;
  height: 47px;
  flex: none;
  border-radius: 5px;
  background-image: url('assets/menu-dishes.webp');
  background-size: 300% auto;
  background-repeat: no-repeat;
}
.row-thumb-one {
  background-position: left center;
}
.row-thumb-two {
  background-position: right center;
}
.window-row > span:nth-child(2) {
  min-width: 0;
}
.window-row strong,
.window-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.window-row strong {
  font-size: 10px;
}
.window-row small {
  margin-top: 4px;
  color: #899287;
  font-size: 8px;
}
.window-row em {
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 30px;
  background: #e1eee2;
  color: #3d7956;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.window-footer {
  padding: 13px 0;
  border-top: 1px solid #e9e7dd;
  color: #879185;
  font-size: 9px;
}
.operator-caption {
  position: relative;
  display: block;
  margin: 22px 0 0;
  color: #a5c0a7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.operator-copy h2 {
  font-size: clamp(45px, 4.7vw, 70px);
}
.operator-copy h2 em {
  color: var(--gold);
}
.operator-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 27px 0 23px;
  color: #c9d7ca;
  font-size: 15px;
  line-height: 1.85;
}
.operator-copy ul {
  display: grid;
  gap: 11px;
  margin: 0 0 33px;
  padding: 0;
  list-style: none;
}
.operator-copy li {
  display: flex;
  gap: 10px;
  color: #e1e9df;
  font-size: 13px;
}
.operator-copy li::before {
  content: '↗';
  color: var(--gold);
}
.button-outline {
  border-color: #b8cfbc;
  color: #fff;
}
.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section-faq {
  background: #f7f3ea;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 150px);
}
.faq-list {
  border-top: 1px solid #d8d4c9;
}
.faq-list details {
  border-bottom: 1px solid #d8d4c9;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: #ae7651;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 510px;
  margin: -5px 35px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 112px 0;
  background: #e1d6c3;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  align-items: start;
  gap: clamp(36px, 6vw, 90px);
}
.contact-section .eyebrow {
  color: #95643d;
}
.contact-section h2 {
  margin-top: 18px;
  font-size: clamp(48px, 5vw, 74px);
}
.contact-section h2 em {
  color: #a37553;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 475px;
  margin: 24px 0 0;
  color: #58695d;
  font-size: 16px;
  line-height: 1.8;
}
.contact-direct {
  display: grid;
  gap: 13px;
  max-width: 410px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgb(27 47 41 / 22%);
}
.contact-direct a {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.contact-direct a:hover {
  color: #6d4c31;
}
.contact-direct span {
  color: #637064;
  font-size: 13px;
  line-height: 1.6;
}
.contact-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid #d7cfbc;
  border-radius: 6px;
  background: #faf7ef;
  box-shadow: 10px 12px 0 rgb(86 83 63 / 7%);
}
.contact-card-label {
  color: #99714f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.contact-card h3 {
  margin: 22px 0 12px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.contact-card p {
  margin: 0 0 24px;
  color: #667268;
  font-size: 13px;
  line-height: 1.7;
}
.contact-card form {
  display: grid;
  gap: 16px;
}
.contact-card form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #d7cfbc;
  border-radius: 4px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}
.contact-card textarea {
  min-height: 94px;
  resize: vertical;
}
.contact-card .contact-manual-preview {
  min-height: 120px;
  background: #f2eee4;
  font-size: 12px;
  line-height: 1.5;
}
.contact-card :is(input, select, textarea):focus {
  border-color: #8a6b47;
  outline: 2px solid rgb(223 181 119 / 32%);
}
.contact-button {
  width: 100%;
  margin-top: 2px;
  background: var(--forest);
  color: #fff;
}
.contact-button:hover {
  background: var(--forest-soft);
}
.contact-alternatives {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.contact-alternatives a,
.contact-alternatives button {
  padding: 0;
  border: 0;
  color: var(--forest);
  background: none;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.contact-card .contact-feedback,
.contact-card .contact-privacy {
  margin: 0;
  color: #637064;
  font-size: 12px;
  line-height: 1.55;
}
.contact-card .contact-feedback {
  min-height: 20px;
  text-align: center;
}
.contact-card .contact-privacy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #dedbd1;
}
.site-footer {
  background: var(--forest-deep);
  color: #fffaf0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
  min-height: 116px;
}
.brand-footer .brand-mark {
  width: 31px;
  height: 31px;
  font-size: 22px;
}
.brand-footer .brand-name {
  font-size: 21px;
}
.footer-inner p {
  color: #b1c4b5;
  font-size: 11px;
}
.footer-inner > div {
  display: flex;
  gap: 20px;
}
.footer-inner > div a {
  color: #dae8db;
  font-size: 11px;
  text-decoration: none;
}
.footer-inner > div a:hover {
  color: var(--gold);
}
.footer-inner small {
  color: #90ab97;
  font-size: 10px;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 17px;
    font-size: 12px;
  }
  .hero-grid {
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(59px, 7vw, 82px);
  }
  .hero-intro {
    font-size: 15px;
  }
  .hero-art {
    padding-left: 0;
    padding-right: 0;
  }
  .menu-device {
    width: 365px;
  }
  .floating-note {
    right: -15px;
  }
  .feature-card {
    min-height: 445px;
    padding: 23px;
  }
  .feature-card h3 {
    font-size: 26px;
  }
  .operator-grid {
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr 360px;
    gap: 50px;
  }
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }
  .footer-inner small {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 36px, 560px);
  }
  .header-inner {
    min-height: 70px;
  }
  .brand-name {
    font-size: 24px;
  }
  .nav-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid rgb(255 255 255 / 32%);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 18px;
    height: 2px;
    margin-top: -1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }
  .nav-toggle span:last-child {
    transform: translateY(4px);
  }
  .nav-toggle[aria-expanded='true'] span:first-child {
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded='true'] span:last-child {
    transform: rotate(-45deg);
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 18px;
    border-top: 1px solid rgb(255 255 255 / 13%);
    background: var(--forest);
    box-shadow: 0 20px 30px rgb(0 0 0 / 16%);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 13px 4px;
    font-size: 14px;
  }
  .site-nav .nav-contact {
    justify-content: space-between;
    padding: 12px 14px;
    margin-top: 7px;
  }
  .hero {
    min-height: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding: 76px 0 38px;
  }
  .hero h1 {
    margin-top: 21px;
    font-size: clamp(56px, 11.5vw, 82px);
  }
  .hero-intro {
    max-width: 500px;
    font-size: 15px;
  }
  .hero-actions {
    gap: 19px;
    margin-top: 29px;
  }
  .hero-footnote {
    margin-top: 38px;
  }
  .hero-art {
    min-height: 550px;
    margin: 0 auto;
    width: min(100%, 480px);
    padding: 25px 22px 53px;
  }
  .art-backdrop {
    right: -130px;
    top: -30px;
    width: 610px;
    height: 610px;
  }
  .art-caption {
    top: 13px;
    right: 10px;
  }
  .menu-device {
    width: min(100%, 370px);
  }
  .floating-note {
    right: 0;
    bottom: 80px;
  }
  .art-disclaimer {
    bottom: 10px;
    right: 12px;
  }
  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .signal-grid span {
    min-height: 56px;
    font-size: 11px;
  }
  .signal-grid span:first-child {
    border-left: 0;
  }
  .signal-grid span:nth-child(2) {
    border-right: 0;
  }
  .signal-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(23 58 49 / 19%);
  }
  .section {
    padding: 84px 0;
  }
  .section h2 {
    font-size: clamp(42px, 8vw, 59px);
  }
  .heading-split,
  .process-layout,
  .operator-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .heading-split > p {
    max-width: 500px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 330px;
  }
  .feature-glyph {
    height: 95px;
    margin: 19px 0 20px;
  }
  .feature-glyph-menu span:nth-child(1) {
    height: 65px;
  }
  .feature-glyph-menu span:nth-child(2) {
    height: 85px;
  }
  .feature-glyph-menu span:nth-child(3) {
    height: 74px;
  }
  .feature-glyph-info span {
    width: 69px;
    height: 69px;
    font-size: 37px;
  }
  .feature-glyph-info span:last-child {
    width: 47px;
    height: 47px;
    font-size: 23px;
  }
  .ar-cube {
    width: 73px;
    height: 73px;
  }
  .feature-card h3 {
    max-width: none;
  }
  .process-item {
    grid-template-columns: 51px 1fr;
    gap: 17px;
  }
  .operator-visual {
    order: 2;
    padding: 20px 0 20px 10px;
  }
  .operator-copy {
    order: 1;
  }
  .operator-copy h2 {
    font-size: clamp(46px, 8.5vw, 68px);
  }
  .contact-section {
    padding: 82px 0;
  }
  .contact-card {
    width: 100%;
    max-width: 470px;
  }
  .footer-inner {
    display: flex;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 25px;
    padding: 30px 0;
  }
  .footer-inner p {
    width: 100%;
    order: 3;
    margin: 2px 0 0;
  }
  .footer-inner > div {
    gap: 13px;
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  .shell {
    width: min(100% - 28px, 560px);
  }
  .header-inner {
    gap: 7px;
  }
  .header-actions {
    gap: 7px;
  }
  .brand-name {
    font-size: 21px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .language-picker {
    min-width: 0;
    width: 102px;
    padding: 7px 6px;
  }
  .language-picker svg {
    display: none;
  }
  .language-picker select {
    font-size: 11px;
  }
  .nav-toggle {
    width: 37px;
    height: 37px;
    flex: none;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 64px;
  }
  .hero h1 {
    font-size: clamp(50px, 12vw, 59px);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-art {
    min-height: 490px;
    padding-inline: 10px;
  }
  .menu-device {
    width: min(100% - 16px, 340px);
    padding: 11px;
  }
  .device-intro {
    padding: 17px 5px;
  }
  .device-intro h2 {
    font-size: 33px;
  }
  .device-dish {
    min-height: 165px;
  }
  .dish-image {
    min-height: 165px;
  }
  .dish-info {
    padding: 14px 9px 10px;
  }
  .dish-info strong {
    font-size: 20px;
  }
  .floating-note {
    right: -2px;
    bottom: 55px;
    min-width: 164px;
    padding: 9px;
  }
  .art-disclaimer {
    bottom: 3px;
  }
  .window-body {
    grid-template-columns: 31% 1fr;
  }
  .window-body aside {
    padding: 18px 6px;
  }
  .window-body aside span {
    padding: 8px 4px;
  }
  .window-main {
    padding: 12px;
  }
  .row-thumb {
    width: 38px;
    height: 38px;
  }
  .window-row em {
    display: none;
  }
  .footer-inner {
    display: block;
  }
  .footer-inner > div {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
