@font-face {
  font-family: Barlow;
  src: url("barlow-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("source-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("source-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #102f46;
  --navy-deep: #082438;
  --steel: #49677d;
  --ink: #172c3b;
  --muted: #576b78;
  --paper: #edf2f5;
  --paper-cool: #f5f7f8;
  --white: #fff;
  --line: #d4dde3;
  --line-strong: #aec0cb;
  --line-navy: #416078;
  --on-navy: #d5e1e8;
  --sky: #acd8f2;
  --sage: #738f82;
  --focus: #1e75aa;
  --max: 1280px;
  --gutter: 48px;
  --section: 112px;
  --display: Barlow, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --body: "Source Sans 3", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-color: var(--steel) var(--paper);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 18px/1.58 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: #c4dbe8;
  color: var(--navy-deep);
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
select {
  color: inherit;
}
button {
  cursor: pointer;
}
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.on-navy :focus-visible {
  outline-color: var(--sky);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.034em;
}
h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.028em;
}
h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
p {
  text-wrap: pretty;
}
/* Korean breaks between words, not inside them. */
:lang(ko) {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  font-weight: 600;
}
.skip:focus {
  transform: translateY(0);
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: color-mix(in srgb, var(--white) 95%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: block;
  flex: none;
  width: 168px;
  margin-right: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-link {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--steel);
}
.nav-link[aria-current="page"]::after,
.nav-link.is-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--navy);
}
.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}
.drop-toggle {
  width: 30px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  border: 0;
  background: transparent;
  padding: 0;
}
.drop-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms var(--ease);
}
.drop-toggle[aria-expanded="true"]::before {
  transform: rotate(225deg) translate(-2px, -1px);
}
.drop-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: -24px;
  min-width: 260px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(8, 36, 56, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms var(--ease), visibility 0s linear 160ms;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel,
.nav-drop.is-open .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms var(--ease), visibility 0s;
}
@media (min-width: 1101px) {
  .nav-drop.is-dismissed .drop-panel {
    opacity: 0;
    visibility: hidden;
  }
}
.drop-panel a {
  display: block;
  padding: 10px 22px;
  text-decoration: none;
}
.drop-panel a:hover {
  background: var(--paper);
  color: var(--navy);
}
.drop-panel a[aria-current="page"] {
  box-shadow: inset 3px 0 0 var(--navy);
  color: var(--navy);
}
.language {
  display: flex;
  flex: none;
  align-items: center;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.language a {
  min-width: 36px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.language a:hover {
  color: var(--navy);
}
.language a[aria-current="true"] {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover {
  color: var(--white);
}
.on-navy .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}
.on-navy .btn:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.on-navy .btn-outline {
  background: transparent;
  color: var(--white);
}
.on-navy .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.arrow::after {
  content: "→";
  font-family: var(--body);
}
.header-cta {
  flex: none;
}
.nav-cta {
  display: none;
}
.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

/* Shared page pieces */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--steel);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.on-navy .eyebrow {
  color: var(--sky);
}
.page-head {
  padding-block: 84px 72px;
  border-bottom: 1px solid var(--line);
}
.page-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
}
.page-head h1 {
  max-width: 16ch;
}
.page-head.flush {
  border-bottom: 0;
}
.page-intro {
  max-width: 60ch;
}
.page-intro .lead {
  color: var(--navy);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.3;
}
.page-intro p + p {
  margin-top: 14px;
}
.section {
  padding-block: var(--section);
}
.section.tint {
  background: var(--paper-cool);
}
.section.navy {
  background: var(--navy);
  color: var(--white);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.prose {
  max-width: 64ch;
}
.prose p + p {
  margin-top: 16px;
}
.prose .lead {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.42;
}
.prose h2 {
  margin-bottom: 26px;
}
.on-navy .prose p {
  color: var(--on-navy);
}
.on-navy .prose .lead {
  color: var(--white);
}
.prose .actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 32px;
}
.promise {
  margin-top: 24px;
  color: var(--steel);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}
figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}
.media-band {
  height: clamp(320px, 38vw, 540px);
  overflow: hidden;
  background: var(--paper);
}
.media-band img {
  height: 100%;
  object-fit: cover;
}

/* Home */
.hero-stage {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 70vh, 800px);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
/* Darkens the text side only; the pallet stays readable on the right. */
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(8, 36, 56, 0.6) 0%, rgba(8, 36, 56, 0) 42%),
    linear-gradient(to right, rgba(8, 36, 56, 0.96) 0%, rgba(8, 36, 56, 0.86) 34%, rgba(8, 36, 56, 0.4) 60%, rgba(8, 36, 56, 0) 82%);
}
.hero-intro {
  position: relative;
  padding-block: 64px 104px;
}
.hero .eyebrow {
  color: var(--sky);
}
.hero h1 {
  max-width: 20ch;
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.032em;
}
.hero-lead {
  max-width: 44ch;
  margin: 22px 0 0;
  color: var(--on-navy);
  font-size: 21px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-actions .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}
.hero-actions .btn:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.hero-actions .btn-outline {
  background: transparent;
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
/* The four lines overlap the photo's lower edge so the two read as one block. */
.business-directory {
  position: relative;
  z-index: 1;
  margin-top: -48px;
  margin-bottom: -1px;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}
.directory-grid a {
  min-height: 204px;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 30px;
  border-right: 1px solid #345165;
  text-decoration: none;
  transition: background-color 240ms var(--ease);
}
.directory-grid a:last-child {
  border-right: 0;
}
.directory-grid a:hover,
.directory-grid a:focus-visible {
  background: var(--navy-deep);
}
/* Headline and arrow start on the same line; the arrow is nudged down to the cap height of the first line. */
.directory-grid strong {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.directory-grid strong::after {
  content: "→";
  flex: none;
  margin-top: 0.12em;
  color: var(--sky);
  font-family: var(--body);
  font-size: 23px;
  line-height: 1;
  transition: transform 240ms var(--ease);
}
.directory-grid a:hover strong::after,
.directory-grid a:focus-visible strong::after {
  transform: translateX(6px);
}
.directory-grid span {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--on-navy);
  font-size: 15px;
  line-height: 1.45;
}
.teaser-photo {
  position: relative;
}
.teaser-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 8%;
}
.beauty-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}
.beauty-teaser figure {
  aspect-ratio: 4 / 5;
  max-height: 560px;
  justify-self: end;
  overflow: hidden;
}
.beauty-teaser img {
  height: 100%;
  object-fit: cover;
}
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 48px;
  align-items: end;
}
.cta-band p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
}

/* Business pages */
.business-list {
  border-top: 1px solid var(--line-strong);
}
.business-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding-block: 44px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.business-row figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper);
}
.business-row img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.business-row:hover img {
  transform: scale(1.03);
}
.business-row figure.contain {
  background: var(--paper-cool);
}
.business-row figure.contain img {
  object-fit: contain;
}
.business-row .num {
  color: var(--steel);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.business-row h3 {
  margin-top: 10px;
}
.business-row .tagline {
  margin-top: 14px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
}
.business-row p:not(.num):not(.tagline) {
  max-width: 58ch;
  margin-top: 12px;
  color: var(--muted);
}
.business-row .more {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.image-pair {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
  margin-bottom: 42px;
}
.image-pair figure {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.image-pair img {
  height: 100%;
  object-fit: cover;
}
/* Slots follow the images' own proportions and never exceed their pixel width. */
.image-pair.equal {
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
}
.image-pair.equal figure {
  min-height: 0;
  aspect-ratio: 1;
}
.image-pair.narrow {
  max-width: 880px;
}
.image-pair.narrow figure {
  aspect-ratio: 3 / 4;
}
.image-pair.single {
  grid-template-columns: 1fr;
  max-width: 1200px;
}
.image-pair.single figure {
  min-height: 0;
  aspect-ratio: 1200 / 742;
}
.partners {
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}
.partners-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 40px;
}
.partners h2 {
  color: var(--steel);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partners ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
}
.section-note.follow {
  margin-top: 12px;
}
.section-note {
  max-width: 70ch;
  margin-top: 30px;
  color: var(--muted);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.offer {
  padding: 26px 28px 30px 0;
  border-bottom: 1px solid var(--line);
}
.offer + .offer {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.offer p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
}
.offer h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.two-offers {
  grid-template-columns: repeat(2, 1fr);
}
.enquiry-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 24px 28px;
  background: var(--paper);
}
.enquiry-strip .ask-lead {
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
}
.ask-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
}
.ask-list li::before {
  content: "·";
  margin-right: 8px;
  color: var(--steel);
  font-weight: 600;
}
.enquiry-strip .btn {
  flex: none;
}
.other-businesses {
  padding-block: 64px;
  background: var(--paper-cool);
  border-top: 1px solid var(--line);
}
.other-businesses h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.other-grid a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.12;
  text-decoration: none;
}
.other-grid a:hover {
  border-color: var(--navy);
}
.other-grid a::after {
  content: "→";
  color: var(--steel);
  font-family: var(--body);
  font-size: 20px;
}

/* Beauty */
.beauty-grid,
.principles,
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-navy);
}
.beauty-grid {
  margin-top: 44px;
}
.beauty-grid article,
.principles article,
.pillars article {
  padding: 30px 30px 0 0;
}
.beauty-grid article + article,
.principles article + article,
.pillars article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line-navy);
}
.beauty-grid .num {
  color: var(--sky);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.beauty-grid h3 {
  margin-top: 8px;
  font-size: 28px;
}
.beauty-grid p:not(.num),
.principles p,
.pillars p {
  margin-top: 12px;
  color: var(--on-navy);
  font-size: 16px;
}
.philosophy {
  margin-top: 88px;
}
.philosophy h2 {
  margin-bottom: 36px;
}
.principles h3,
.pillars h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dewpre-wordmark {
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.08em;
}
.dewpre-tagline {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 26px;
}
.dewpre-tagline-sub {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--on-navy);
}
.brand-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 70px;
  align-items: center;
}
.brand-band figure {
  aspect-ratio: 4 / 5;
  max-height: 560px;
  overflow: hidden;
  background: var(--paper);
}
.brand-band .dewpre-wordmark {
  color: var(--navy);
}
.brand-band img {
  height: 100%;
  object-fit: cover;
}
.brand-band .prose p:not(.dewpre-tagline):not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pack-grid img {
  aspect-ratio: 1;
  background: var(--white);
}

/* Dewpré */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}
.product-grid a {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  text-decoration: none;
}
.product-grid a:hover {
  border-color: var(--navy);
}
.product-grid img {
  aspect-ratio: 1;
  background: var(--paper-cool);
}
.product-grid span {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 20px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.15;
}
.product-grid .arrow::after {
  color: var(--steel);
}
.brand-hero {
  padding-block: 72px 84px;
  border-bottom: 1px solid var(--line);
}
.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}
.brand-hero h1 {
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.06em;
}
.brand-hero .intro {
  max-width: 46ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}
.brand-hero figure {
  aspect-ratio: 6 / 5;
  max-height: 680px;
  overflow: hidden;
  background: var(--paper);
}
.brand-hero img {
  height: 100%;
  object-fit: cover;
}
.story-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
}
.story-points li {
  padding: 22px 24px 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}
.story-points li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.meaning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.meaning figure {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.meaning img {
  height: 100%;
  object-fit: cover;
}
.meaning h2 {
  margin-bottom: 24px;
}
.pillars {
  margin-top: 56px;
}

/* Distribution */
.channel-list {
  border-top: 1px solid var(--line-strong);
}
.channel-list article {
  display: grid;
  grid-template-columns: 64px minmax(200px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.channel-list .num {
  color: var(--steel);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.channel-list h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.channel-list p:not(.num) {
  color: var(--muted);
}

/* Company */
.company-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: start;
}
.company-photo {
  position: sticky;
  top: 112px;
}
.company-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 8%;
}
.about-photo {
  margin-top: 44px;
}
.about-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.company-photo figcaption,
.about-photo figcaption,
.news-card figcaption {
  position: static;
  padding: 10px 0 0;
  color: var(--muted);
  background: transparent;
}
.message h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4.4vw, 64px);
}
.message p + p {
  margin-top: 16px;
}
.signature small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
}
.signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.news-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.news-card h3 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.news-card figcaption {
  font-size: 14px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 78px;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line-navy);
}
.contact-details .full {
  grid-column: 1 / -1;
}
.contact-details dt {
  margin-bottom: 5px;
  color: #9fb5c5;
  font-size: 14px;
}
.contact-details dd {
  font-size: 17px;
}
.contact-details a {
  color: var(--white);
}
.company-name {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
}
.inquiry {
  padding: 38px;
  background: var(--white);
  color: var(--ink);
}
.inquiry .eyebrow {
  color: var(--steel);
}
.inquiry h2 {
  font-size: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 14px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
}
.field input,
.field select {
  min-height: 48px;
}
.field [aria-invalid="true"] {
  border-color: #a3261b;
  box-shadow: inset 3px 0 0 #a3261b;
}
.field-error {
  color: #a3261b;
  font-size: 14px;
  font-weight: 600;
}
.handoff {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--navy);
  background: var(--paper-cool);
}
.handoff h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.handoff p {
  margin-top: 8px;
}
.handoff textarea {
  width: 100%;
  margin-top: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.45;
  resize: vertical;
}
.handoff .actions {
  margin-top: 16px;
}
.inquiry .handoff .btn {
  margin-top: 0;
}
.inquiry .handoff .btn-outline {
  background: transparent;
  color: var(--navy);
}
.inquiry .handoff .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.field textarea {
  min-height: 132px;
  resize: vertical;
}
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.inquiry .btn {
  margin-top: 22px;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.inquiry .btn:hover {
  background: var(--navy-deep);
}

/* Footer */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.footer .brand {
  width: 132px;
  margin-right: 0;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 14px;
  font-weight: 600;
}
.footer nav a {
  min-height: 24px;
}
.footer small {
  margin-left: auto;
  color: var(--muted);
  white-space: nowrap;
}
.footer-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

/* Collapsed navigation */
@media (max-width: 1280px) {
  .header-inner {
    gap: 20px;
  }
  .nav {
    gap: 20px;
  }
  .language {
    padding-left: 14px;
  }
  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 32px;
    --section: 92px;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .js .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-cta {
    display: none;
  }
  .language {
    order: 2;
    margin-right: 10px;
    padding-left: 0;
    border-left: 0;
  }
  .menu-button {
    order: 3;
  }
  .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    margin-top: 18px;
  }
  .js .nav.is-open {
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu-open,
  .menu-open body {
    overflow: hidden;
  }
  .js .nav {
    display: none;
  }
  .nav,
  .js .nav.is-open {
    order: 4;
    width: calc(100% + var(--gutter) * 2);
    margin: 0 calc(var(--gutter) * -1);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding: 8px var(--gutter) 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    white-space: normal;
  }
  .nav > .nav-link,
  .nav-drop > .nav-link {
    width: 100%;
    min-height: 50px;
    border-bottom: 1px solid var(--line);
  }
  .nav-link[aria-current="page"]::after,
  .nav-link.is-section::after {
    right: auto;
    bottom: -1px;
    width: 48px;
  }
  .nav-drop {
    grid-column: 1 / -1;
    display: block;
  }
  .drop-toggle {
    display: none;
  }
  .drop-panel {
    position: static;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding: 4px 0 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .drop-panel a {
    padding: 10px 0;
    color: var(--muted);
    font-size: 15px;
  }
  .drop-panel a[aria-current="page"] {
    box-shadow: none;
    color: var(--navy);
    text-decoration: underline;
  }
  .page-head-grid,
  .split,
  .beauty-teaser,
  .brand-band,
  .brand-hero-grid,
  .meaning,
  .company-grid,
  .contact-layout {
    gap: 48px;
  }
  .directory-grid a {
    min-height: 184px;
    padding: 26px 22px 24px;
  }
  .directory-grid strong {
    font-size: 24px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-grid,
  .beauty-grid,
  .principles,
  .pillars,
  .story-points {
    grid-template-columns: 1fr;
  }
  .offer + .offer {
    padding-left: 0;
    border-left: 0;
  }
  .beauty-grid article,
  .principles article,
  .pillars article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-navy);
  }
  .beauty-grid article + article,
  .principles article + article,
  .pillars article + article {
    padding-left: 0;
    border-left: 0;
  }
  .story-points li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .story-points li + li {
    padding-left: 0;
    border-left: 0;
  }
  .channel-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px 20px;
  }
  .channel-list article p:not(.num) {
    grid-column: 2;
  }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --gutter: 22px;
    --section: 76px;
  }
  body {
    font-size: 17px;
  }
  html {
    scroll-padding-top: 76px;
  }
  .header-inner {
    min-height: 74px;
  }
  .brand {
    width: 146px;
  }
  .nav,
  .js .nav.is-open {
    grid-template-columns: 1fr;
  }
  .page-head {
    padding-block: 56px 48px;
  }
  .brand-hero {
    padding-block: 48px 64px;
  }
  .page-head-grid,
  .split,
  .beauty-teaser,
  .brand-band,
  .brand-hero-grid,
  .meaning,
  .company-grid,
  .contact-layout,
  .cta-band,
  .business-row {
    grid-template-columns: 1fr;
  }
  .page-head-grid,
  .business-row {
    gap: 28px;
  }
  .page-intro .lead {
    font-size: 23px;
  }
  .hero-intro {
    padding-block: 48px 76px;
  }
  /* On a phone the text spans the whole width, so the whole lower half is darkened. */
  .hero-stage::before {
    background: linear-gradient(to top, rgba(8, 36, 56, 0.94) 0%, rgba(8, 36, 56, 0.86) 48%, rgba(8, 36, 56, 0.3) 78%, rgba(8, 36, 56, 0.05) 100%);
  }
  .hero-photo {
    object-position: 50% 40%;
  }
  .business-directory {
    margin-top: -36px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .js .nav.is-open {
    max-height: calc(100dvh - 74px);
  }
  .beauty-teaser figure {
    justify-self: stretch;
  }
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .directory-grid a {
    min-height: 160px;
    border-bottom: 1px solid #345165;
  }
  .business-row figure {
    max-width: 600px;
  }
  .image-pair,
  .image-pair.equal {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .image-pair figure {
    min-height: 260px;
  }
  .enquiry-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-band figure,
  .brand-hero figure {
    max-height: 460px;
  }
  .other-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .company-photo {
    position: static;
  }
  .company-photo,
  .teaser-photo {
    max-width: 632px;
  }
  .company-photo img,
  .teaser-photo img {
    aspect-ratio: 1;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .inquiry {
    padding: 28px 22px;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
  .footer small {
    margin-left: 0;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 42px;
  }
  .hero h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 34px;
  }
  .brand-hero h1 {
    font-size: 60px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .directory-grid a {
    min-height: 0;
    padding: 24px 22px;
    border-right: 0;
  }
  .directory-grid span {
    padding-top: 14px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 359px) {
  .brand {
    width: 118px;
  }
  .language a[aria-current="true"] {
    display: none;
  }
  .menu-button {
    padding-inline: 8px;
  }
}

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