:root {
  color-scheme: light;
  --paper: #f8f5f0;
  --paper-rgb: 248, 245, 240;
  --ink: #1b3320;
  --ink-rgb: 27, 51, 32;
  --forest: #243c28;
  --olive: #9f7e4d;
  --warm-line: #ddd6ce;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --editorial: "Bodoni MT", "Bodoni 72", Didot, "Palatino Linotype", "Times New Roman", serif;
  --header-height: 117px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border: 1px solid transparent;
  background: rgba(var(--paper-rgb), 0.97);
  color: var(--ink);
  box-shadow: none;
  transform: translateX(0);
  transition:
    top 360ms cubic-bezier(0.22, 1, 0.36, 1),
    left 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 32px 0 clamp(30px, 2.9vw, 49px);
  transition: padding 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  display: grid;
  flex: 0 0 auto;
  place-items: start;
  width: 216px;
  height: auto;
  margin-right: clamp(42px, 4.5vw, 76px);
  overflow: visible;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1), margin-right 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand img {
  width: 100%;
  max-width: none;
  height: auto;
  transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 36px);
  font-family: var(--serif);
  font-size: clamp(14px, 0.95vw, 15px);
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: gap 360ms cubic-bezier(0.22, 1, 0.36, 1), font-size 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 14px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.header-tools__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 180px;
  height: 52px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--paper);
  transition:
    min-width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    color 180ms ease;
}

.header-tools__primary:hover,
.header-tools__primary:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.header-tools__icon {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    color 180ms ease;
}

.header-tools__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1), height 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 180ms ease;
}

.header-tools__icon-label {
  margin-top: 4px;
  white-space: nowrap;
  transition: width 220ms ease, height 220ms ease, margin 220ms ease, opacity 180ms ease;
}

.header-tools__icon:hover,
.header-tools__icon:focus-visible {
  color: var(--olive);
}

.header-tools__icon:hover svg,
.header-tools__icon:focus-visible svg {
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1), height 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background-color 220ms ease;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, calc(-50% + var(--line-offset)));
  transform-origin: center;
  transition: width 260ms ease, opacity 180ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span:nth-child(1) {
  --line-offset: -9px;
}

.menu-toggle span:nth-child(2) {
  --line-offset: 0px;
  width: 20px;
  margin-left: 5px;
}

.menu-toggle span:nth-child(3) {
  --line-offset: 9px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(40deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-40deg);
}

.site-header.is-compact {
  top: 12px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  height: 70px;
  border-color: rgba(var(--ink-rgb), 0.12);
  border-radius: 8px;
  background: rgba(var(--paper-rgb), 0.92);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(var(--ink-rgb), 0.12);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.is-compact .site-header__inner {
  padding: 0 16px 0 22px;
}

.site-header.is-compact .brand {
  width: 120px;
  margin-right: 32px;
}

.site-header.is-compact .desktop-nav {
  gap: clamp(14px, 1.5vw, 24px);
  font-size: 13.5px;
}

.site-header.is-compact .header-tools__primary {
  min-width: 154px;
  height: 44px;
  border-color: var(--forest);
}

.site-header.is-compact .header-tools {
  gap: 8px;
}

.site-header.is-compact .header-tools__icon {
  width: 44px;
  min-height: 44px;
  border-color: rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--paper-rgb), 0.6);
}

.site-header.is-compact .header-tools__icon svg {
  width: 22px;
  height: 22px;
}

.site-header.is-compact .header-tools__icon-label {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}

.site-header.is-compact .menu-toggle {
  width: 44px;
  height: 44px;
  border-color: rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--paper-rgb), 0.6);
}

.site-header.is-compact .menu-toggle span {
  width: 22px;
  height: 1.5px;
}

.site-header.is-compact .menu-toggle span:nth-child(2) {
  width: 14px;
  margin-left: 4px;
}

.site-header.is-compact .header-tools__primary:hover,
.site-header.is-compact .header-tools__primary:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  --hero-monogram-max: 192px;
  position: relative;
  min-height: 760px;
  height: clamp(760px, 100svh, 960px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  isolation: isolate;
}

.hero__slides,
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slides {
  z-index: 0;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}

.contact-mark {
  position: relative;
  display: block;
  width: 16px;
  height: 12px;
  border: 1px solid currentColor;
}

.contact-mark::before,
.contact-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 9px;
  height: 1px;
  background: currentColor;
}

.contact-mark::before {
  left: 0;
  transform: rotate(32deg);
}

.contact-mark::after {
  right: 0;
  transform: rotate(-32deg);
}

.hero__media {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1000ms ease;
}

.hero__media.is-active {
  opacity: 1;
}

.hero__media img {
  object-fit: cover;
}

.hero__media--orchid img {
  object-position: 60% 52%;
}

.hero__media--green img {
  object-position: 58% 52%;
}

.hero__media--arrangement img {
  object-position: 58% 50%;
}

.hero__copy-surface {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: min(78%, 1300px);
  background: linear-gradient(
    90deg,
    rgba(var(--paper-rgb), 1) 0%,
    rgba(var(--paper-rgb), 1) 34%,
    rgba(var(--paper-rgb), 0.96) 43%,
    rgba(var(--paper-rgb), 0.68) 56%,
    rgba(var(--paper-rgb), 0.18) 69%,
    rgba(var(--paper-rgb), 0) 78%
  );
  pointer-events: none;
}

.hero__monogram {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) 0 0;
  pointer-events: none;
}

.hero__monogram-word {
  position: absolute;
  top: 70%;
  left: 44%;
  color: var(--olive);
  font-family: var(--editorial);
  font-size: min(20vh, var(--hero-monogram-max));
  font-style: italic;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-kerning: normal;
  opacity: 0.94;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.hero__monogram-note {
  position: absolute;
  top: 25%;
  left: 44%;
  color: var(--olive);
  font-family: var(--editorial);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.hero__readability-shade {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: auto;
  width: min(100vw, 1100px);
  height: 100%;
  background: radial-gradient(
    ellipse 100% 170% at 100% -50%,
    rgba(10, 24, 16, 0.58) 0%,
    rgba(10, 24, 16, 0.48) 30%,
    rgba(10, 24, 16, 0.3) 52%,
    rgba(10, 24, 16, 0.12) 72%,
    rgba(10, 24, 16, 0.03) 86%,
    rgba(10, 24, 16, 0) 100%
  );
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1680px;
  min-height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 32px) clamp(48px, 7.2vw, 120px) 86px;
}

.hero__copy {
  width: min(54vw, 860px);
  max-width: 100%;
}

.hero__kicker {
  margin: 0 0 24px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  max-width: 23em;
  font-size: clamp(34px, 2.55vw, 42px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  line-break: strict;
  text-wrap: balance;
}

.hero h1 > .hero__title-sentence {
  display: block;
}

.hero h1 > .hero__title-sentence + .hero__title-sentence {
  margin-top: 0.14em;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__title-phrase {
  display: inline-block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(var(--ink-rgb), 0.72);
  font-size: clamp(12px, 0.84vw, 14px);
  line-height: 1.95;
  letter-spacing: 0.065em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 30px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(220px, 100%);
  min-height: 56px;
  padding: 0 22px 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  transition: background-color 180ms ease, color 180ms ease;
}

.button i {
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.button:hover i,
.button:focus-visible i {
  transform: translateX(4px);
}

.button--light {
  background: var(--forest);
  color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--ink);
}

.hero-news {
  --news-height: 60px;
  position: absolute;
  z-index: 5;
  bottom: clamp(28px, 4vh, 44px);
  left: max(
    clamp(48px, 7.2vw, 120px),
    calc((100vw - 1680px) / 2 + clamp(48px, 7.2vw, 120px))
  );
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr) 48px;
  width: min(560px, calc(100% - clamp(96px, 14.4vw, 240px)));
  min-height: var(--news-height);
  border-top: 1px solid rgba(var(--ink-rgb), 0.14);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--paper-rgb), 0.9);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(14, 31, 20, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-news__label {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 0 18px;
  background: var(--forest);
  color: var(--paper);
}

.hero-news__label small {
  color: #c8a36d;
  font-family: var(--editorial);
  font-size: 9px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.08em;
}

.hero-news__label strong {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hero-news__viewport {
  position: relative;
  min-width: 0;
  height: var(--news-height);
  overflow: hidden;
}

.hero-news__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-news__item.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-news__item strong {
  display: block;
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-news__more {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(var(--ink-rgb), 0.12);
  font-family: var(--serif);
  font-size: 18px;
}

.hero-news__more span {
  transition: transform 180ms ease;
}

.hero-news__more:hover span,
.hero-news__more:focus-visible span {
  transform: translateX(4px);
}

.hero-news__item:focus-visible,
.hero-news__more:focus-visible {
  outline-offset: -4px;
}

.hero__corner-controls {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-height) + 42px);
  right: clamp(32px, 3.2vw, 54px);
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--olive);
}

.hero__tagline {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.9;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(5, 14, 8, 0.44);
}

.hero__tagline span,
.hero__tagline strong {
  display: block;
}

.hero__tagline span {
  font-size: 12px;
  font-weight: 400;
}

.hero__tagline strong {
  margin-top: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero__slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  filter: drop-shadow(0 2px 8px rgba(5, 14, 8, 0.42));
}

.hero__slider-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__slider-dots button {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1), height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slider-dots button::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  transition: width 180ms ease, height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero__slider-dots button:hover::before,
.hero__slider-dots button:focus-visible::before {
  background: var(--forest);
}

.hero__slider-dots button.is-active::before {
  width: 10px;
  height: 10px;
  background: transparent;
  box-shadow: 0 0 0 2px var(--olive);
}

.hero__slider-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  min-width: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--olive);
  cursor: pointer;
  font-size: 0;
  font-weight: 700;
}

.hero__slider-toggle::before {
  content: "Ⅱ";
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: -0.14em;
}

.hero__slider-toggle.is-paused::before {
  content: "▶";
  font-size: 9px;
  letter-spacing: 0;
}

.brand-story {
  --brand-story-gutter: clamp(48px, 7.2vw, 120px);
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 0;
  background: var(--paper);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  grid-template-areas:
    "visual heading"
    "visual body";
  column-gap: clamp(64px, 7vw, 120px);
  row-gap: clamp(34px, 3vw, 46px);
  align-items: start;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--brand-story-gutter);
}

.brand-story__heading {
  position: relative;
  z-index: 2;
  grid-area: heading;
  align-self: start;
  justify-self: end;
  width: min(100%, 36em);
  margin-top: clamp(72px, 7.5vw, 124px);
}

.brand-story__heading h2 {
  max-width: none;
  margin: -0.18em 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.035em;
}

.brand-story__heading h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
}

.brand-story__visual {
  position: relative;
  z-index: 0;
  grid-area: visual;
  width: calc(100% + var(--brand-story-gutter) + clamp(180px, 20vw, 340px));
  aspect-ratio: 4 / 3;
  margin: 0 0 0 calc(var(--brand-story-gutter) * -1);
  overflow: hidden;
  background: #f1eee9;
}

.brand-story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--paper-rgb), 0) 68%,
    rgba(var(--paper-rgb), 0.98) 100%
  );
  pointer-events: none;
}

.brand-story__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-story__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.brand-story__body {
  position: relative;
  z-index: 1;
  grid-area: body;
  align-self: start;
  justify-self: end;
  width: min(100%, 36em);
  color: rgba(var(--ink-rgb), 0.82);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.055em;
}

.brand-story__body p {
  margin: 0;
}

.brand-story__body > p + p {
  margin-top: 36px;
}

.brand-story__quotes {
  margin: 38px 0 42px clamp(8px, 1.4vw, 20px);
  padding: 4px 0 4px clamp(16px, 1.8vw, 28px);
  border-left: 1px solid rgba(159, 126, 77, 0.58);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.95;
  letter-spacing: 0.045em;
}

.brand-story__quotes p + p {
  margin-top: 5px;
}

.brand-story__quotes p {
  white-space: nowrap;
}

.corporate-moments {
  --corporate-moments-gutter: clamp(48px, 7.2vw, 120px);
  padding: clamp(120px, 9vw, 152px) 0 clamp(128px, 10vw, 168px);
  background: var(--forest);
  color: var(--paper);
}

.corporate-moments__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  grid-template-areas:
    "intro list"
    ". closing";
  column-gap: clamp(64px, 7vw, 124px);
  row-gap: clamp(40px, 3.2vw, 54px);
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--corporate-moments-gutter);
}

.corporate-moments__intro {
  grid-area: intro;
  max-width: 30em;
}

.corporate-moments__intro h2 {
  margin: -0.16em 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 3vw, 54px);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0.035em;
}

.corporate-moments__intro h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.corporate-moments__intro p {
  max-width: 24em;
  margin: clamp(36px, 3.4vw, 50px) 0 0;
  color: rgba(var(--paper-rgb), 0.76);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.05;
  letter-spacing: 0.055em;
}

.corporate-moments__list {
  grid-area: list;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(var(--paper-rgb), 0.26);
  list-style: none;
}

.corporate-moments__list li {
  display: flex;
  align-items: flex-end;
  min-height: clamp(150px, 11vw, 184px);
  padding: clamp(28px, 2.8vw, 42px) 0;
  border-bottom: 1px solid rgba(var(--paper-rgb), 0.26);
  color: rgba(var(--paper-rgb), 0.96);
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.corporate-moments__list li:nth-child(odd) {
  padding-right: clamp(24px, 2.8vw, 48px);
}

.corporate-moments__list li:nth-child(even) {
  padding-left: clamp(24px, 2.8vw, 48px);
  border-left: 1px solid rgba(var(--paper-rgb), 0.26);
}

.corporate-moments__closing {
  grid-area: closing;
  justify-self: end;
  width: min(100%, 46em);
  color: rgba(var(--paper-rgb), 0.76);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.corporate-moments__closing p {
  margin: 0;
}

.corporate-moments__closing p + p {
  margin-top: clamp(18px, 1.6vw, 24px);
  color: rgba(var(--paper-rgb), 0.94);
}

@media (min-width: 1081px) {
  .brand-story__inner {
    row-gap: clamp(24px, 2vw, 32px);
  }

  .brand-story__heading {
    margin-top: clamp(52px, 5.5vw, 88px);
  }

  .brand-story__body > p + p {
    margin-top: 28px;
  }

  .brand-story__quotes {
    margin-top: 28px;
    margin-bottom: 30px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .brand-story__quotes p + p {
    margin-top: 3px;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 320ms ease, opacity 320ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(8, 16, 11, 0.64);
  opacity: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: opacity 320ms ease;
}

.mobile-menu__panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding:
    max(24px, env(safe-area-inset-top))
    max(34px, env(safe-area-inset-right))
    max(28px, env(safe-area-inset-bottom))
    max(34px, env(safe-area-inset-left));
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(159, 126, 77, 0.2), rgba(159, 126, 77, 0) 34%),
    linear-gradient(145deg, #28462f 0%, #1c3423 46%, #14281b 100%);
  color: var(--paper);
  box-shadow: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 300ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu__panel::before {
  content: "Grin";
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.22em;
  color: rgba(var(--paper-rgb), 0.055);
  font-family: var(--editorial);
  font-size: clamp(150px, 25vw, 280px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--paper-rgb), 0.18);
}

.mobile-menu__identity {
  display: grid;
  gap: 3px;
}

.mobile-menu__identity > span {
  color: #bd9a65;
  font-family: var(--editorial);
  font-size: 32px;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.mobile-menu__identity small {
  color: rgba(var(--paper-rgb), 0.62);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.mobile-menu__head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 20px);
}

.mobile-menu__icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 52px;
  color: rgba(var(--paper-rgb), 0.92);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-menu__icon-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu__icon-link span {
  margin-top: 4px;
  white-space: nowrap;
}

.mobile-menu__icon-link:hover,
.mobile-menu__icon-link:focus-visible {
  color: #d4b179;
  transform: translateY(-2px);
}

.mobile-menu__close {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(var(--paper-rgb), 0.24);
  border-radius: 50%;
  background: rgba(var(--paper-rgb), 0.06);
  color: var(--paper);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 220ms ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  border-color: rgba(212, 177, 121, 0.76);
  background: rgba(var(--paper-rgb), 0.12);
  transform: rotate(8deg);
}

.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.mobile-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(42deg);
}

.mobile-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-42deg);
}

.mobile-menu__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 72px);
  margin-top: clamp(34px, 6vh, 58px);
}

.mobile-menu__nav a {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 20px 48px 20px 0;
  border-bottom: 1px solid rgba(var(--paper-rgb), 0.16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 320ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), padding-left 220ms ease, color 180ms ease;
}

.mobile-menu__nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.52;
  transform: translateY(-50%) rotate(45deg);
  transition: right 180ms ease, opacity 180ms ease;
}

.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) {
  transition-delay: 80ms;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) {
  transition-delay: 115ms;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) {
  transition-delay: 150ms;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) {
  transition-delay: 185ms;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) {
  transition-delay: 220ms;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) {
  transition-delay: 255ms;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
  color: #f2ddbd;
  padding-left: 12px;
}

.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after {
  right: 0;
  opacity: 1;
}

.mobile-menu__nav > a > span {
  color: #bd9a65;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.mobile-menu__nav > a > strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.045em;
}

.mobile-menu__utility {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.mobile-menu__utility a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 12px 54px 12px 24px;
  border-left: 2px solid #bd9a65;
  background: rgba(var(--paper-rgb), 0.075);
  transition: background-color 180ms ease, padding-left 220ms ease;
}

.mobile-menu__utility a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #d4b179;
  font-family: var(--serif);
  font-size: 18px;
  transform: translateY(-52%);
}

.mobile-menu__utility a:hover,
.mobile-menu__utility a:focus-visible {
  padding-left: 30px;
  background: rgba(var(--paper-rgb), 0.12);
}

.mobile-menu__utility span {
  color: #bd9a65;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mobile-menu__utility strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.mobile-menu__note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: auto 0 0;
  padding-top: 28px;
  color: rgba(var(--paper-rgb), 0.66);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.07em;
}

.mobile-menu__note small {
  color: #bd9a65;
  font-family: var(--editorial);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.mobile-menu a:focus-visible,
.mobile-menu button:focus-visible {
  outline-color: #d4b179;
}

@media (max-width: 1240px) {
  .brand {
    width: clamp(156px, 15vw, 186px);
    margin-right: clamp(26px, 2.8vw, 42px);
  }

  .desktop-nav {
    gap: 18px;
    font-size: 14px;
  }

  .header-tools__primary {
    min-width: 160px;
  }

  .header-tools__icon {
    width: 46px;
  }

  .hero h1 {
    font-size: clamp(32px, 2.8vw, 38px);
  }
}

@media (min-width: 1081px) and (max-width: 1160px) {
  .site-header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    width: 156px;
    margin-right: 26px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 13.5px;
  }

  .header-tools {
    gap: 6px;
  }

  .header-tools__primary {
    min-width: 154px;
  }

  .header-tools__icon {
    width: 44px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 94px;
  }

  .hero {
    --hero-monogram-max: 180px;
    height: clamp(760px, 100svh, 900px);
  }

  .corporate-moments {
    padding: clamp(104px, 13vw, 132px) 0 clamp(112px, 14vw, 144px);
  }

  .corporate-moments__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "list"
      "closing";
    gap: 0;
    padding: 0 clamp(36px, 6vw, 64px);
  }

  .corporate-moments__intro {
    max-width: none;
  }

  .corporate-moments__intro h2 {
    font-size: clamp(38px, 5vw, 50px);
  }

  .corporate-moments__intro p {
    max-width: 34em;
    margin-top: clamp(28px, 4vw, 40px);
    margin-left: clamp(64px, 10vw, 112px);
  }

  .corporate-moments__list {
    margin-top: clamp(60px, 8vw, 80px);
  }

  .corporate-moments__list li {
    min-height: clamp(128px, 17vw, 154px);
    font-size: clamp(22px, 3vw, 28px);
  }

  .corporate-moments__closing {
    width: min(100%, 38em);
    margin-top: clamp(42px, 6vw, 58px);
  }

  .brand-story {
    padding: 0;
    overflow-x: clip;
  }

  .brand-story__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "visual";
    gap: 0;
  }

  .brand-story__heading {
    grid-area: visual;
    align-self: start;
    justify-self: start;
    width: min(72%, 520px);
    margin-top: clamp(44px, 5vw, 60px);
  }

  .brand-story__heading h2 {
    font-size: clamp(38px, 4.6vw, 50px);
  }

  .brand-story__visual {
    justify-self: start;
    width: calc(100% + var(--brand-story-gutter) + var(--brand-story-gutter));
    aspect-ratio: 3 / 4;
  }

  .brand-story__visual::after {
    background: linear-gradient(
      90deg,
      rgba(var(--paper-rgb), 0) 55%,
      rgba(var(--paper-rgb), 0.08) 76%,
      rgba(var(--paper-rgb), 0.24) 100%
    );
  }

  .brand-story__visual-image {
    object-position: center bottom;
  }

  .brand-story__body {
    grid-area: visual;
    z-index: 2;
    align-self: start;
    justify-self: end;
    isolation: isolate;
    width: min(58%, 480px);
    margin-top: clamp(215px, 25vw, 295px);
    color: var(--ink);
    text-shadow: 0 1px 16px rgba(var(--paper-rgb), 0.72);
  }

  .brand-story__body::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -64px -96px -78px -104px;
    background: radial-gradient(
      ellipse at 66% 48%,
      rgba(var(--paper-rgb), 0.88) 0%,
      rgba(var(--paper-rgb), 0.74) 48%,
      rgba(var(--paper-rgb), 0.32) 74%,
      rgba(var(--paper-rgb), 0) 100%
    );
    filter: blur(16px);
    pointer-events: none;
  }

  .brand-story__body > * {
    position: relative;
    z-index: 1;
  }

  .brand-story__quotes p {
    white-space: normal;
  }

  .brand {
    width: 144px;
    height: auto;
    margin-right: 0;
    overflow: visible;
  }

  .brand img {
    width: 142px;
    transform: none;
  }

  .site-header.is-compact {
    top: 10px;
    width: calc(100% - 24px);
    height: 64px;
  }

  .site-header.is-compact .site-header__inner {
    padding: 0 12px 0 18px;
  }

  .site-header.is-compact .brand {
    width: 112px;
    margin-right: 0;
  }

  .site-header.is-compact .brand img {
    width: 112px;
  }

  .site-header.is-compact .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .desktop-nav,
  .header-tools__primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu__head,
  .mobile-menu__nav,
  .mobile-menu__utility,
  .mobile-menu__note {
    width: min(100%, 920px);
    margin-right: auto;
    margin-left: auto;
  }

  .mobile-menu__note {
    margin-top: auto;
  }

  .hero-news {
    left: clamp(36px, 7.2vw, 74px);
    width: min(500px, 60vw);
  }

  .hero__copy {
    width: min(64vw, 640px);
  }

  .hero h1 {
    font-size: clamp(27px, 3.4vw, 32px);
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__corner-controls {
    top: calc(var(--header-height) + 32px);
    right: 32px;
  }

  .hero__slider-dots button {
    width: 44px;
    height: 44px;
  }

  .hero__slider-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .hero__monogram-word {
    top: 68%;
    opacity: 0.8;
  }

  .hero__monogram-note {
    top: 34%;
    font-size: clamp(10px, 1.15vw, 12px);
    opacity: 0.9;
  }

  .hero__monogram {
    z-index: 4;
  }

  .hero__monogram-word,
  .hero__monogram-note {
    left: calc(100% - clamp(76px, 10vh, 132px));
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .brand-story__visual {
    height: clamp(820px, 104vw, 1120px);
    aspect-ratio: auto;
  }

  .brand-story__visual-image {
    object-position: center 82%;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 82px;
  }

  .brand-story {
    --brand-story-gutter: 20px;
    padding: 0;
  }

  .corporate-moments {
    padding: 84px 0 96px;
  }

  .corporate-moments__inner {
    padding: 0 20px;
  }

  .corporate-moments__intro h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.5;
  }

  .corporate-moments__intro p {
    max-width: 28em;
    margin-top: 28px;
    margin-left: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.045em;
  }

  .corporate-moments__list {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .corporate-moments__list li {
    min-height: 0;
    padding: 24px 0 26px;
    font-size: clamp(20px, 6vw, 24px);
  }

  .corporate-moments__list li:nth-child(odd),
  .corporate-moments__list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .corporate-moments__closing {
    width: 100%;
    margin-top: 42px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .corporate-moments__closing p + p {
    margin-top: 22px;
  }

  .brand-story__inner {
    gap: 40px;
    padding: 0 20px;
  }

  .brand-story__heading {
    justify-self: start;
    width: 100%;
    margin-top: clamp(80px, 18vw, 140px);
    text-shadow: none;
  }

  .brand-story__heading h2 {
    margin-top: -0.14em;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.5;
    letter-spacing: 0.025em;
  }

  .brand-story__visual {
    width: calc(100% + 40px);
    aspect-ratio: 9 / 16;
    margin-left: -20px;
  }

  .brand-story__visual::after {
    inset: -2%;
    background: radial-gradient(
      ellipse 96% 70% at 50% 28%,
      rgba(var(--paper-rgb), 0.92) 0%,
      rgba(var(--paper-rgb), 0.82) 42%,
      rgba(var(--paper-rgb), 0.46) 68%,
      rgba(var(--paper-rgb), 0) 100%
    );
    filter: blur(12px);
  }

  .brand-story__visual-image {
    object-position: center bottom;
  }

  .brand-story__body {
    width: min(60%, 420px);
    margin-top: clamp(270px, 43vw, 340px);
    font-size: 14px;
    line-height: 2.05;
    letter-spacing: 0.035em;
  }

  .brand-story__body::before {
    content: none;
  }

  .brand-story__body > p + p {
    margin-top: 30px;
  }

  .brand-story__quotes {
    margin: 30px 0 34px;
    padding: 3px 0 3px 16px;
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.9;
    letter-spacing: 0.02em;
  }

  .brand-story__quotes p + p {
    margin-top: 4px;
  }

  .site-header__inner {
    padding: 0 14px 0 18px;
  }

  .brand {
    width: 112px;
    height: auto;
    margin-right: 0;
    overflow: visible;
  }

  .brand img {
    width: 112px;
    transform: none;
  }

  .header-tools {
    gap: 2px;
  }

  .header-tools__icon {
    width: 44px;
    min-height: 44px;
  }

  .header-tools__icon svg {
    width: 24px;
    height: 24px;
  }

  .header-tools__icon-label {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
  }

  .site-header.is-compact {
    top: 8px;
    width: calc(100% - 16px);
    height: 58px;
  }

  .site-header.is-compact .site-header__inner {
    padding: 0 10px 0 14px;
  }

  .site-header.is-compact .brand {
    width: 92px;
  }

  .site-header.is-compact .brand img {
    width: 92px;
  }

  .site-header.is-compact .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .mobile-menu__panel {
    padding:
      max(18px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(22px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .mobile-menu__panel::before {
    font-size: clamp(120px, 44vw, 190px);
  }

  .mobile-menu__head {
    gap: 14px;
    min-height: 60px;
    padding-bottom: 14px;
  }

  .mobile-menu__identity > span {
    font-size: 28px;
  }

  .mobile-menu__identity small {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .mobile-menu__head-actions {
    gap: 6px;
  }

  .mobile-menu__icon-link {
    width: 44px;
    min-height: 48px;
  }

  .mobile-menu__icon-link svg {
    width: 23px;
    height: 23px;
  }

  .mobile-menu__close {
    width: 44px;
    height: 44px;
  }

  .mobile-menu__nav {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .mobile-menu__nav a {
    gap: 6px;
    min-height: 64px;
    padding: 12px 42px 12px 2px;
  }

  .mobile-menu__nav > a > strong {
    font-size: 18px;
  }

  .mobile-menu__utility {
    margin-top: 24px;
  }

  .mobile-menu__utility a {
    min-height: 62px;
    padding-right: 46px;
    padding-left: 18px;
  }

  .mobile-menu__utility a::after {
    right: 18px;
  }

  .mobile-menu__utility strong {
    font-size: 14px;
  }

  .mobile-menu__note {
    margin-top: 30px;
    padding-top: 0;
  }

  .hero-news {
    --news-height: 48px;
    right: 20px;
    bottom: 110px;
    left: 20px;
    grid-template-columns: 72px minmax(0, 1fr) 44px;
    width: auto;
    min-height: var(--news-height);
  }

  .hero-news__label {
    gap: 0;
    padding: 0 10px;
  }

  .hero-news__label small {
    display: none;
  }

  .hero-news__label strong {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .hero-news__item {
    padding: 0 12px;
  }

  .hero-news__item strong {
    font-size: 10.5px;
    letter-spacing: 0.02em;
  }

  .hero-news__more {
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
    height: clamp(620px, 100svh, 820px);
  }

  .hero__slides {
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .hero__media--orchid img {
    object-position: center 56%;
  }

  .hero__media--green img {
    object-position: center 56%;
  }

  .hero__media--arrangement img {
    object-position: center 54%;
  }

  .hero__copy-surface {
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background: radial-gradient(
      ellipse 135% 105% at 0 0,
      rgba(var(--paper-rgb), 1) 0%,
      rgba(var(--paper-rgb), 1) 38%,
      rgba(var(--paper-rgb), 0.97) 52%,
      rgba(var(--paper-rgb), 0.74) 66%,
      rgba(var(--paper-rgb), 0.28) 80%,
      rgba(var(--paper-rgb), 0) 100%
    );
  }

  .hero__layout {
    display: block;
    padding: calc(var(--header-height) + 18px) 20px 96px;
  }

  .hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero__kicker {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.48;
    letter-spacing: 0.015em;
    color: #1c1b1b;
  }

  .hero h1 > .hero__title-sentence + .hero__title-sentence {
    margin-top: 0.2em;
  }

  .hero__lead {
    max-width: 360px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.035em;
  }

  .hero__actions {
    align-items: flex-start;
    margin-top: 18px;
  }

  .button {
    width: 168px;
    min-height: 44px;
    padding: 0;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.44);
    background: transparent;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 10px;
  }

  .button--light:hover,
  .button--light:focus-visible {
    background: transparent;
    color: var(--forest);
  }

  .hero__readability-shade {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100%, 480px);
    height: 36%;
    background: radial-gradient(
      ellipse 100% 115% at 100% 100%,
      rgba(10, 24, 16, 0.44) 0%,
      rgba(10, 24, 16, 0.3) 40%,
      rgba(10, 24, 16, 0.12) 68%,
      rgba(10, 24, 16, 0) 100%
    );
  }

  .hero__monogram {
    display: none;
  }

  .hero__corner-controls {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: auto;
    display: grid;
    justify-items: end;
    gap: 8px;
    color: var(--olive);
  }

  .hero__tagline {
    position: static;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-align: right;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .hero__tagline span,
  .hero__tagline strong {
    display: block;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero__slider-controls {
    gap: 7px;
  }

  .hero__slider-dots {
    gap: 0;
  }

  .hero__slider-dots button {
    width: 44px;
    height: 44px;
  }

  .hero__slider-dots button.is-active::before {
    width: 8px;
    height: 8px;
  }

  .hero__slider-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 620px) {
  .brand-story__visual {
    min-height: 640px;
  }

  .brand-story__body {
    justify-self: start;
    width: 100%;
    margin-top: clamp(200px, 45vw, 260px);
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 0.025em;
  }

  .brand-story__body::before {
    inset: -32px -36px -44px;
    background: radial-gradient(
      ellipse at 48% 48%,
      rgba(var(--paper-rgb), 0.91) 0%,
      rgba(var(--paper-rgb), 0.78) 52%,
      rgba(var(--paper-rgb), 0.34) 76%,
      rgba(var(--paper-rgb), 0) 100%
    );
    filter: blur(12px);
  }

  .brand-story__body > p + p {
    margin-top: 22px;
  }

  .brand-story__quotes {
    margin: 18px 0 20px;
    padding: 2px 0 2px 12px;
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.75;
  }

  .brand-story__quotes p + p {
    margin-top: 2px;
  }
}

@media (max-width: 390px) {
  .mobile-menu__identity small {
    display: none;
  }

  .mobile-menu__note > span {
    max-width: 23em;
    font-size: 10px;
  }

  .button {
    width: 168px;
  }
}

@media (max-width: 720px), (max-height: 700px) {
  .mobile-menu__head {
    position: sticky;
    z-index: 3;
    top: 0;
  }
}

@media (max-width: 360px) and (max-height: 620px) {
  .hero {
    min-height: 568px;
    height: clamp(568px, 100svh, 620px);
  }

  .hero__kicker {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.42;
  }

  .hero__lead {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.75;
  }

  .hero__actions {
    margin-top: 12px;
  }

  .hero-news {
    --news-height: 44px;
    bottom: 100px;
  }

  .hero__corner-controls {
    bottom: 12px;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero__slider-toggle {
    display: none;
  }
}
