/* =========================================================
   SeaEscape Well Styled — Unified Master Stylesheet v12
   Shared site design + homepage + style-edit archive
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
  --navy-950: #081b2a;
  --navy-900: #0d2a3f;
  --navy-800: #163c55;
  --navy-700: #24546b;

  --sea-glass: #dcebe8;
  --sea-glass-deep: #b9d4d2;
  --aqua-mist: #eef6f4;

  --ivory: #fbf8f2;
  --cream: #fffdf9;
  --sand: #eadfce;
  --sand-light: #f4eee5;
  --driftwood: #8c7d71;

  --coral: #c87867;
  --coral-deep: #9f554a;
  --gold: #c5a467;
  --gold-soft: #eadcc0;

  --ink: #2c2a28;
  --soft-ink: #625d58;
  --line: #e3d9ca;
  --white: #ffffff;

  --serif:
    "Cormorant Garamond",
    Georgia,
    "Times New Roman",
    serif;

  --sans:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --site-width: 1380px;
  --content-width: 1180px;
  --reading-width: 820px;

  --shadow-soft:
    0 16px 45px rgba(8, 27, 42, 0.07);

  --shadow-lift:
    0 24px 58px rgba(8, 27, 42, 0.13);

  --shadow-small:
    0 10px 28px rgba(8, 27, 42, 0.05);

  --transition: 220ms ease;
}


/* =========================================================
   2. RESET AND GLOBAL BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;

  background: var(--ivory);
  color: var(--ink);

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

ul,
ol {
  padding-left: 1.25rem;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy-950);
}


/* =========================================================
   3. SHARED CONTAINERS
   ========================================================= */

.site-shell,
.container {
  width: min(
    var(--site-width),
    calc(100% - 72px)
  );

  margin-inline: auto;
}

.content-container {
  width: min(
    var(--content-width),
    calc(100% - 72px)
  );

  margin-inline: auto;
}

.reading-shell {
  width: min(
    var(--reading-width),
    calc(100% - 40px)
  );

  margin-inline: auto;
}


/* =========================================================
   4. ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;

  padding: 10px 14px;

  background: var(--navy-950);
  color: var(--white);

  font-size: 13px;
  font-weight: 700;

  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}


/* =========================================================
   5. SHARED TYPOGRAPHY AND LABELS
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin: 0;

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";

  width: 42px;
  height: 1px;

  background: currentColor;

  opacity: 0.55;
}

.eyebrow--left {
  justify-content: flex-start;
}

.eyebrow--left::before {
  display: none;
}

.eyebrow--light {
  color: #eacfd0;
}

.page-kicker,
.section-kicker,
.card-label,
.product-label {
  color: var(--coral-deep);

  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.card-title {
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.card-copy {
  margin: 10px 0 0;

  color: var(--soft-ink);

  font-size: 13px;
  line-height: 1.68;
}

.card-link {
  display: inline-flex;

  margin-top: 16px;

  color: var(--navy-700);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* =========================================================
   6. TOP RIBBONS
   ========================================================= */

.top-ribbon {
  background: var(--navy-950);
  color: var(--white);
}

.top-ribbon__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.top-ribbon p {
  margin: 0;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-ribbon {
  background:
    linear-gradient(
      90deg,
      #d5e6e3 0%,
      #eef5f2 46%,
      #d5e6e3 100%
    );

  border-bottom:
    1px solid rgba(13, 42, 63, 0.09);
}

.editorial-ribbon__inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 28px;

  color: var(--navy-700);
}

.editorial-ribbon__item {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-ribbon__item--shell {
  color: var(--gold);

  font-size: 22px;
  letter-spacing: 0;
}

.editorial-ribbon__divider {
  width: 1px;
  height: 18px;

  background: rgba(197, 164, 103, 0.62);
}

.editorial-ribbon__signature {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;

  white-space: nowrap;
}


/* Older page compatibility */

.site-announcement,
.top-note {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;

  background: var(--navy-950);
  color: var(--white);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   7. MASTER HEADER AND NAVIGATION
   ========================================================= */

.site-header {
  position: relative;
  z-index: 100;

  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-layout {
  display: grid;
  grid-template-columns:
    minmax(280px, auto)
    1fr;

  min-height: 112px;
  align-items: center;
  gap: 42px;
}

.site-logo {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: flex-start;

  color: var(--navy-900);
}

.site-logo__name {
  font-family: var(--serif);
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.site-logo__wave {
  position: relative;

  display: block;
  width: 54px;
  height: 16px;

  margin-top: 8px;
}

.site-logo__wave i {
  position: absolute;
  left: 0;

  width: 48px;
  height: 11px;

  border-top: 2px solid var(--gold);
  border-radius: 50%;

  transform: rotate(-3deg);
}

.site-logo__wave i:first-child {
  top: 1px;
}

.site-logo__wave i:last-child {
  top: 6px;
  left: 6px;

  width: 42px;

  opacity: 0.7;
}

.primary-navigation {
  justify-self: end;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 44px);

  margin: 0;
  padding: 0;

  list-style: none;
}

.primary-navigation a {
  position: relative;

  display: inline-flex;

  padding: 44px 0 42px;

  color: #37322f;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-navigation a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;

  height: 1px;

  background: var(--coral);

  transform: scaleX(0);
  transition: transform var(--transition);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a[aria-current="page"] {
  color: var(--coral-deep);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;

  width: 46px;
  height: 46px;
  padding: 0;

  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-900);

  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1.5px;

  margin: 4px auto;

  background: currentColor;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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


/* Older header compatibility */

.header-inner {
  display: grid;
  grid-template-columns:
    minmax(240px, auto)
    1fr
    auto;

  min-height: 88px;
  align-items: center;
  gap: 36px;
}

.brand-name {
  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(31px, 2.7vw, 43px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;

  white-space: nowrap;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.primary-nav a {
  position: relative;

  display: inline-flex;

  padding: 34px 0;

  color: #37322f;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--coral-deep);
}

.header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border: 1px solid var(--navy-900);

  color: var(--navy-900);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;
  padding: 0;

  border: 1px solid var(--line);
  background: transparent;

  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1.5px;

  background: var(--navy-900);
}

.menu-toggle-lines {
  position: relative;

  margin: auto;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";

  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}


/* =========================================================
   8. SHARED BUTTONS
   ========================================================= */

.button,
.button-soft,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;

  padding: 12px 19px;

  border: 1px solid transparent;

  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible,
.button-soft:hover,
.button-soft:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.button,
.button-primary {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.button:hover,
.button:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
}

.button-soft,
.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy-900);
}

.button-soft:hover,
.button-soft:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}


/* =========================================================
   9. HOMEPAGE — CINEMATIC HERO
   ========================================================= */

.page-home #featured-edits,
.page-home #style-journal {
  scroll-margin-top: 110px;
}

.page-home .homepage-hero {
  position: relative;

  min-height: clamp(390px, 32vw, 500px);
  overflow: hidden;

  background: #d8e6ec;

  isolation: isolate;
}

.page-home .homepage-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .homepage-hero__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.page-home .homepage-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(248, 247, 243, 0.98) 0%,
      rgba(248, 247, 243, 0.94) 18%,
      rgba(248, 247, 243, 0.78) 31%,
      rgba(248, 247, 243, 0.42) 44%,
      rgba(248, 247, 243, 0.10) 57%,
      rgba(248, 247, 243, 0) 70%
    );
}

.page-home .homepage-hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;

  padding-top: clamp(38px, 4vw, 62px);
  padding-bottom: clamp(38px, 4vw, 62px);
}

.page-home .homepage-hero__content {
  width: min(48%, 630px);

  color: #0d2a3f;
}

.page-home .homepage-hero__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0 0 20px;

  color: #173452;

  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1;
}

.page-home .homepage-hero__brand::after {
  content: "";

  width: 62px;
  height: 2px;

  background: #bc8c49;
}

.page-home .homepage-hero h1 {
  max-width: 620px;
  margin: 0;

  color: #0d2b52;

  font-family: var(--serif);
  font-size: clamp(3rem, 4.35vw, 5.15rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.042em;

  text-wrap: balance;
}

.page-home .homepage-hero h1 span {
  display: block;
}

.page-home .homepage-hero__description {
  max-width: 555px;
  margin: 20px 0 0;

  color: #173a59;

  font-size: clamp(0.92rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.page-home .homepage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.page-home .homepage-hero__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;

  padding: 13px 25px;

  border: 1px solid #0d2b52;

  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.page-home .homepage-hero__button:hover,
.page-home .homepage-hero__button:focus-visible {
  transform: translateY(-2px);
}

.page-home .homepage-hero__button--primary {
  background: #0d2b52;
  color: var(--white);
}

.page-home .homepage-hero__button--primary:hover,
.page-home .homepage-hero__button--primary:focus-visible {
  background: #183f67;
  border-color: #183f67;
}

.page-home .homepage-hero__button--secondary {
  background: rgba(249, 248, 244, 0.78);
  color: #0d2b52;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-home .homepage-hero__button--secondary:hover,
.page-home .homepage-hero__button--secondary:focus-visible {
  background: #0d2b52;
  color: var(--white);
}

.page-home .homepage-hero__trust {
  max-width: 520px;
  margin: 16px 0 0;

  color: #526b7d;

  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.5;
}

.page-home .homepage-hero__trust a,
.page-home .affiliate-note a {
  color: inherit;

  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   10. HOMEPAGE — COMPACT INTRO SUPPORT
   ========================================================= */

.page-home .hero-intro {
  position: relative;
  overflow: hidden;

  padding: 28px 0 24px;

  background:
    linear-gradient(
      rgba(255, 253, 249, 0.84),
      rgba(255, 253, 249, 0.84)
    ),
    radial-gradient(
      circle at 8% 12%,
      rgba(220, 235, 232, 0.9),
      transparent 33%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(234, 220, 192, 0.64),
      transparent 32%
    );

  border-bottom: 1px solid var(--line);
}

.page-home .hero-intro__inner {
  position: relative;
  z-index: 1;

  display: flex;
  max-width: 930px;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.page-home .hero-intro h1 {
  margin: 6px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(58px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.page-home .hero-intro h1 em {
  color: var(--coral-deep);

  font-style: italic;
  font-weight: 500;
}

.page-home .hero-intro__lede {
  max-width: 740px;
  margin: 17px auto 0;

  color: var(--soft-ink);

  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
}

.page-home .hero-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  margin-top: 15px;
  padding: 0 0 5px;

  border-bottom: 1px solid var(--gold);

  color: var(--coral-deep);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-home .hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;

  margin-top: 17px;
}

.page-home .hero-proof span {
  padding: 7px 12px;

  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(227, 217, 202, 0.95);

  color: var(--navy-700);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   11. HOMEPAGE — FEATURED STYLE EDITS
   ========================================================= */

.page-home .featured-edits {
  padding: 44px 0 58px;

  background: var(--ivory);
}

.page-home .section-intro {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: end;
  gap: 48px;

  margin-bottom: 28px;
}

.page-home .section-intro--compact {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.58fr);

  margin-bottom: 15px;
}

.page-home .section-intro h2 {
  margin: 8px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-home .section-intro > p {
  margin: 0 0 4px;

  color: var(--soft-ink);

  font-size: 13px;
  line-height: 1.72;
}

.page-home .section-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 8px;

  color: var(--coral-deep);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .affiliate-note {
  margin: 0 0 18px;
  padding: 8px 12px;

  background: rgba(255, 255, 255, 0.58);
  border-left: 2px solid var(--gold);

  color: #766c64;

  font-size: 9px;
  line-height: 1.55;
}

.page-home .featured-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.page-home .edit-card {
  display: grid;
  grid-template-columns:
    minmax(0, 62%)
    minmax(210px, 38%);

  min-height: 316px;
  overflow: hidden;

  background: var(--cream);
  border: 1px solid var(--line);

  box-shadow:
    0 10px 28px rgba(8, 27, 42, 0.045);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.page-home .edit-card:hover {
  transform: translateY(-4px);

  border-color: rgba(197, 164, 103, 0.65);

  box-shadow: var(--shadow-lift);
}

.page-home .edit-card__image {
  position: relative;

  display: block;
  min-height: 316px;
  overflow: hidden;

  background: var(--sand);
}

.page-home .edit-card__image::after {
  content: "";

  position: absolute;
  inset: 0;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);

  pointer-events: none;
}

.page-home .edit-card__image img {
  width: 100%;
  height: 100%;
  min-height: 316px;

  object-fit: cover;
  object-position: center top;

  transition:
    transform 650ms ease,
    filter 650ms ease;
}

.page-home .edit-card:hover .edit-card__image img {
  transform: scale(1.025);

  filter:
    saturate(1.03)
    contrast(1.02);
}

.page-home .edit-card__number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;

  background: var(--navy-900);
  color: var(--white);

  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.page-home .edit-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 30px 28px;
}

.page-home .edit-card__kicker {
  margin: 0;

  color: var(--driftwood);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-home .edit-card h3 {
  margin: 7px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(29px, 2.3vw, 42px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.page-home .edit-card h3 a:hover,
.page-home .edit-card h3 a:focus-visible {
  color: var(--coral-deep);
}

.page-home .edit-card__rule {
  display: block;
  width: 32px;
  height: 1px;

  margin: 14px 0 13px;

  background: var(--gold);
}

.page-home .edit-card__summary {
  margin: 0;

  color: var(--soft-ink);

  font-size: 12px;
  line-height: 1.58;
}

.page-home .edit-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;
  padding-top: 20px;

  color: var(--navy-700);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .edit-card__link span {
  transition: transform var(--transition);
}

.page-home .edit-card__link:hover span,
.page-home .edit-card__link:focus-visible span {
  transform: translateX(4px);
}

.page-home .featured-edits__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  margin-top: 22px;
}

.page-home .featured-edits__footer p {
  margin: 0;

  color: var(--soft-ink);

  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}


/* =========================================================
   12. HOMEPAGE — PAST STYLE EDITS
   ========================================================= */

.page-home .past-edits,
.page-home .past-style-edits {
  padding: 58px 0 64px;

  background:
    linear-gradient(
      180deg,
      var(--cream) 0%,
      var(--ivory) 100%
    );

  border-top: 1px solid var(--line);
}

.page-home .past-edits__header,
.page-home .past-style-edits__header {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.65fr);

  align-items: end;
  gap: 40px;

  margin-bottom: 26px;
}

.page-home .past-edits__title,
.page-home .past-style-edits__title {
  margin: 8px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-home .past-edits__intro,
.page-home .past-style-edits__intro {
  margin: 0;

  color: var(--soft-ink);

  font-size: 13px;
  line-height: 1.72;
}

.page-home .past-edits-grid,
.page-home .past-style-edits__grid {
  display: grid;
  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 14px;
}

.page-home .past-edit-card,
.page-home .past-style-card {
  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--line);

  box-shadow:
    0 8px 22px rgba(8, 27, 42, 0.045);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.page-home .past-edit-card:hover,
.page-home .past-edit-card:focus-visible,
.page-home .past-style-card:hover,
.page-home .past-style-card:focus-visible {
  transform: translateY(-4px);

  border-color: rgba(197, 164, 103, 0.6);

  box-shadow: var(--shadow-soft);
}

.page-home .past-edit-card > img,
.page-home .past-style-card__image img {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center top;
}

.page-home .past-edit-body,
.page-home .past-style-card__body {
  padding: 15px 14px 17px;
}

.page-home .past-edit-body .card-title,
.page-home .past-style-card__title {
  font-size: 24px;
}

.page-home .past-edit-body .card-copy,
.page-home .past-style-card__summary {
  font-size: 11.5px;
  line-height: 1.58;
}

.page-home .past-edits__note,
.page-home .past-style-edits__note {
  max-width: 820px;
  margin: 22px auto 0;

  color: var(--driftwood);

  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

/* =========================================================
   13. HOMEPAGE — SEAESCAPE DIFFERENCE
   ========================================================= */

.page-home .editorial-value {
  padding: 62px 0 66px;

  background:
    linear-gradient(
      135deg,
      var(--navy-950) 0%,
      var(--navy-900) 55%,
      var(--navy-800) 100%
    );

  color: var(--white);
}

.page-home .editorial-value__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(0, 1.28fr);

  align-items: center;
  gap: 64px;
}

.page-home .editorial-value__heading h2 {
  max-width: 10ch;
  margin: 12px 0 0;

  font-family: var(--serif);
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-home .value-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 1px;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .value-grid article {
  min-height: 180px;

  padding: 28px 26px;

  background: rgba(8, 27, 42, 0.5);
}

.page-home .value-grid span {
  color: #e9c9ca;

  font-family: var(--serif);
  font-size: 24px;
}

.page-home .value-grid h3 {
  margin: 11px 0 0;

  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
}

.page-home .value-grid p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   14. HOMEPAGE — STYLE JOURNAL
   ========================================================= */

.page-home .journal-preview {
  padding: 62px 0 68px;

  background: var(--cream);
}

.page-home .journal-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: clamp(22px, 2.4vw, 34px);
  align-items: stretch;
}

.page-home .journal-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.page-home .journal-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow-lift);
}

.page-home .journal-card__image {
  display: block;
  overflow: hidden;

  background: #e8ecec;
}

.page-home .journal-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center center;

  transition: transform 260ms ease;
}

.page-home .journal-card:hover .journal-card__image img {
  transform: scale(1.018);
}

.page-home .journal-card__image--shopping img,
.page-home .journal-card__image--scarf img {
  object-position: 72% center;
}

.page-home .journal-card__image--packing img {
  object-position: 30% center;
}

.page-home .journal-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 22px 22px 24px;
}

.page-home .journal-card__content > p:first-child {
  margin: 0;

  color: var(--coral-deep);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .journal-card h3 {
  margin: 8px 0 13px;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.page-home .journal-card__summary {
  margin: 0 0 18px;

  color: #526474;

  font-size: 0.92rem;
  line-height: 1.65;
}

.page-home .journal-card__content > a:last-child {
  margin-top: auto;

  color: var(--navy-700);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================================================
   15. HOMEPAGE — EDITOR MESSAGE
   ========================================================= */

.page-home .editor-message {
  padding: 0 0 62px;

  background: var(--cream);
}

.page-home .editor-message__panel {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.72fr);

  align-items: center;
  gap: 68px;

  padding: 48px 52px;

  background:
    linear-gradient(
      135deg,
      var(--coral-deep) 0%,
      var(--coral) 48%,
      #6b4942 100%
    );

  color: var(--white);

  box-shadow: var(--shadow-lift);
}

.page-home .editor-message h2 {
  margin: 10px 0 0;

  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 66px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page-home .editor-message__panel > div:last-child > p:first-child {
  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  line-height: 1.78;
}

.page-home .editor-message__signature {
  margin: 18px 0 20px;

  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

/* =========================================================
   16. STYLE EDIT ARCHIVE PAGE
   Requires <body class="page-edits">
   ========================================================= */

.page-edits {
  background: var(--ivory);
}

.page-edits .edits-page {
  padding: 42px 0 88px;
}

.page-edits .archive-panel {
  padding: 38px;

  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy-900);

  box-shadow: var(--shadow-soft);
}

.page-edits .archive-head {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(0, 1.14fr);

  align-items: end;
  gap: 36px;

  margin-bottom: 30px;
  padding-bottom: 28px;

  border-bottom: 1px solid var(--line);
}

.page-edits .archive-kicker {
  margin: 0 0 9px;

  color: var(--coral-deep);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.page-edits .archive-title {
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page-edits .archive-copy {
  margin: 0;

  color: var(--soft-ink);

  font-size: 14.5px;
  line-height: 1.82;
}

.page-edits .archive-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px 20px;
}


/* Archive cards are intentionally isolated from homepage cards */

.page-edits .edit-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--line);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.page-edits .edit-card:hover,
.page-edits .edit-card:focus-visible {
  transform: translateY(-4px);

  border-color: rgba(197, 164, 103, 0.68);

  box-shadow: var(--shadow-lift);
}

.page-edits .edit-card-media {
  position: relative;

  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 5.25;

  background: var(--sand-light);
  border-bottom: 1px solid var(--line);
}

.page-edits .edit-card-media img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.page-edits .edit-card:hover .edit-card-media img,
.page-edits .edit-card:focus-visible .edit-card-media img {
  transform: scale(1.018);

  filter:
    saturate(1.02)
    contrast(1.01);
}

.page-edits .edit-date {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;

  display: inline-flex;
  min-height: 29px;
  align-items: center;

  padding: 0 10px;

  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(13, 42, 63, 0.15);

  color: var(--navy-900);

  box-shadow:
    0 8px 18px rgba(8, 27, 42, 0.08);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-edits .edit-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;

  padding: 18px 18px 20px;

  background: var(--cream);
}

.page-edits .edit-category {
  display: block;

  margin: 0 0 8px;

  color: var(--coral-deep);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-edits .edit-title {
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-edits .edit-summary {
  margin: 10px 0 0;

  color: var(--soft-ink);

  font-size: 12.75px;
  line-height: 1.68;
}

.page-edits .edit-link {
  display: inline-flex;

  margin-top: auto;
  padding-top: 15px;
  padding-bottom: 4px;

  border-bottom:
    1px solid rgba(159, 85, 74, 0.34);

  color: var(--coral-deep);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-edits .page-note {
  max-width: 780px;
  margin: 30px auto 0;

  color: var(--driftwood);

  font-size: 12.5px;
  line-height: 1.78;
  text-align: center;
}

.page-edits .return-featured {
  display: flex;
  justify-content: center;

  margin-top: 23px;
}

.page-edits .utility-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  background: var(--navy-900);
  border: 1px solid var(--navy-900);

  color: var(--white);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.page-edits .utility-link:hover,
.page-edits .utility-link:focus-visible {
  transform: translateY(-2px);

  background: var(--coral-deep);
  border-color: var(--coral-deep);
}


/* Legacy archive header compatibility */

.page-edits .brand-row {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-edits .brand {
  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;

  white-space: nowrap;
}

.page-edits .brand-row .primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;

  color: #37322f;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================================================
   17. EDITORIAL / STYLE JOURNAL FOUNDATION
   ========================================================= */

.page-editorial,
.page-journal,
.page-twilly {
  background: var(--cream);
}

.article-hero,
.editorial-hero,
.twilly-hero {
  position: relative;
  overflow: hidden;

  padding: 54px 0 62px;

  background:
    radial-gradient(
      circle at 7% 8%,
      rgba(220, 235, 232, 0.92),
      transparent 31%
    ),
    radial-gradient(
      circle at 94% 14%,
      rgba(234, 220, 192, 0.72),
      transparent 31%
    ),
    var(--ivory);

  border-bottom: 1px solid var(--line);
}

.article-hero__copy,
.editorial-hero__copy,
.twilly-hero__copy {
  max-width: 980px;
  margin: 0 auto 34px;

  text-align: center;
}

.article-hero h1,
.editorial-hero h1,
.twilly-hero h1 {
  max-width: 11ch;
  margin: 10px auto 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.article-hero h1 em,
.editorial-hero h1 em,
.twilly-hero h1 em {
  display: block;

  color: var(--coral-deep);

  font-style: italic;
  font-weight: 500;
}

.article-hero__lede,
.editorial-hero__lede,
.twilly-hero__lede {
  max-width: 790px;
  margin: 24px auto 0;

  color: var(--soft-ink);

  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.42;
}

.article-meta,
.editorial-meta,
.twilly-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;

  margin-top: 22px;

  color: var(--driftwood);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-section,
.editorial-section,
.twilly-section {
  padding: 68px 0;
}

.article-prose,
.editorial-prose,
.twilly-prose {
  color: var(--ink);
}

.article-prose h2,
.editorial-prose h2,
.twilly-prose h2 {
  margin: 10px 0 20px;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.article-prose h3,
.editorial-prose h3,
.twilly-prose h3 {
  margin: 34px 0 12px;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.article-prose p,
.editorial-prose p,
.twilly-prose p {
  margin: 0 0 20px;

  color: var(--soft-ink);

  font-size: 16px;
  line-height: 1.82;
}

.article-prose a,
.editorial-prose a,
.twilly-prose a {
  color: var(--coral-deep);

  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-figure,
.editorial-figure,
.twilly-hero__figure {
  overflow: hidden;

  background: var(--sand-light);
  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);
}

.article-figure figcaption,
.editorial-figure figcaption,
.twilly-hero__figure figcaption {
  padding: 12px 16px;

  color: var(--driftwood);

  font-size: 10px;
  line-height: 1.6;
}


/* =========================================================
   18. INDIVIDUAL STYLE EDIT PAGE FOUNDATION
   ========================================================= */

.page-style-edit {
  background: var(--ivory);
}

.page-style-edit .edit-hero {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(340px, 0.92fr);

  align-items: center;
  gap: 54px;

  width: min(
    var(--site-width),
    calc(100% - 72px)
  );

  margin-inline: auto;
  padding: 58px 0;
}

.page-style-edit .hero-image-frame,
.page-style-edit .full-edit,
.page-style-edit .hero-preview {
  overflow: hidden;

  background: var(--sand-light);
  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);
}

.page-style-edit .hero-image-frame img,
.page-style-edit .full-edit img,
.page-style-edit .hero-preview img {
  width: 100%;
  height: auto;

  object-fit: contain;
}

.page-style-edit .hero-copy h1 {
  margin: 8px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.page-style-edit .hero-copy .intro {
  margin: 22px 0 0;

  color: var(--soft-ink);

  font-size: 15px;
  line-height: 1.8;
}

.page-style-edit .tags,
.page-style-edit .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 20px;
}

.page-style-edit .tag,
.page-style-edit .chip {
  padding: 7px 11px;

  background: var(--white);
  border: 1px solid var(--line);

  color: var(--navy-700);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-style-edit .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.page-style-edit .edit-section,
.page-style-edit .shop-section,
.page-style-edit .details-section {
  width: min(
    var(--site-width),
    calc(100% - 72px)
  );

  margin-inline: auto;
  padding: 62px 0;
}

.page-style-edit .edit-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 1.1fr);

  align-items: start;
  gap: 48px;
}

.page-style-edit .product-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.page-style-edit .product-card {
  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--line);

  box-shadow: var(--shadow-small);
}

.page-style-edit .product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;

  object-fit: contain;

  background: var(--white);
}

.page-style-edit .product-card__body,
.page-style-edit .product-body {
  padding: 17px;
}

.page-style-edit .product-card h3,
.page-style-edit .product-title {
  margin: 6px 0 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.page-style-edit .product-card p,
.page-style-edit .product-copy {
  margin: 10px 0 0;

  color: var(--soft-ink);

  font-size: 12px;
  line-height: 1.65;
}

.page-style-edit .detail-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.page-style-edit .detail-box {
  padding: 24px;

  background: var(--cream);
  border: 1px solid var(--line);
}

.page-style-edit .detail-box h3 {
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.page-style-edit .detail-box p {
  margin: 15px 0 0;

  color: var(--soft-ink);

  font-size: 13px;
  line-height: 1.75;
}

/* =========================================================
   19. STANDARD INFORMATION PAGES
   ========================================================= */

.page-static,
.page-about,
.page-contact,
.page-privacy,
.page-disclosure {
  background: var(--cream);
}

.static-hero {
  padding: 70px 0 50px;

  background:
    linear-gradient(
      135deg,
      var(--aqua-mist),
      var(--ivory)
    );

  border-bottom: 1px solid var(--line);
}

.static-hero h1 {
  max-width: 900px;
  margin: 0;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.static-content {
  width: min(
    var(--reading-width),
    calc(100% - 40px)
  );

  margin-inline: auto;
  padding: 62px 0 80px;
}

.static-content h2 {
  margin: 42px 0 14px;

  color: var(--navy-900);

  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.static-content p,
.static-content li {
  color: var(--soft-ink);

  font-size: 15px;
  line-height: 1.82;
}

.static-content a {
  color: var(--coral-deep);

  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   20. MASTER FOOTER
   ========================================================= */

.site-footer {
  padding: 54px 0 20px;

  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
}

.footer-layout {
  display: grid;
  grid-template-columns:
    minmax(270px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 80px;

  padding-bottom: 40px;
}

.site-logo--footer {
  color: var(--white);
}

.footer-layout > div > p {
  max-width: 33em;
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 11px;
}

.footer-nav {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 34px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav strong {
  margin-bottom: 13px;

  color: var(--white);

  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-nav a {
  margin-bottom: 8px;

  font-size: 10px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #e9c9ca;
}

.footer-nav p {
  max-width: 23em;
  margin: 2px 0 0;

  color: rgba(255, 255, 255, 0.46);

  font-size: 9px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding-top: 18px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.43);

  font-size: 8px;
  letter-spacing: 0.08em;
}


/* =========================================================
   21. RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1180px) {
  .site-shell,
  .container,
  .content-container {
    width: min(
      var(--site-width),
      calc(100% - 48px)
    );
  }

  .editorial-ribbon__signature {
    display: none;
  }

  .header-layout {
    grid-template-columns:
      minmax(250px, auto)
      1fr;
  }

  .primary-navigation ul {
    gap: 22px;
  }

  .page-home .edit-card {
    grid-template-columns:
      minmax(0, 58%)
      minmax(190px, 42%);
  }

  .page-home .edit-card__content {
    padding: 26px 22px;
  }

  .page-home .past-edits-grid,
  .page-home .past-style-edits__grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .page-edits .archive-panel {
    padding: 32px;
  }

  .page-edits .archive-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   22. RESPONSIVE — TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 980px) {
  .editorial-ribbon__inner {
    gap: 18px;
  }

  .editorial-ribbon__item {
    font-size: 11px;
  }

  .header-layout {
    grid-template-columns:
      1fr
      auto;

    min-height: 82px;
    gap: 20px;
  }

  .menu-button {
    display: block;

    justify-self: end;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1000;
    inset: 82px 0 auto;

    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;

    padding: 22px 24px 32px;

    background: rgba(255, 253, 249, 0.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    box-shadow: var(--shadow-soft);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    width: min(560px, 100%);

    margin: 0 auto;

    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-navigation li {
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation a {
    width: 100%;
    min-height: 54px;
    align-items: center;

    padding: 14px 4px;

    font-size: 11px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .header-inner {
    grid-template-columns:
      1fr
      auto;

    min-height: 76px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;

    justify-self: end;
  }

  .header-contact {
    display: none;
  }

  .header-inner .primary-nav {
    position: fixed;
    z-index: 1000;
    inset: 76px 0 auto;

    display: none;

    padding: 22px 24px 32px;

    background: rgba(255, 253, 249, 0.99);
    border-bottom: 1px solid var(--line);
  }

  .header-inner .primary-nav.is-open {
    display: block;
  }

  .header-inner .primary-nav ul {
    width: min(560px, 100%);

    margin: 0 auto;

    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-inner .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

  .header-inner .primary-nav a {
    width: 100%;
    min-height: 54px;
    align-items: center;

    padding: 14px 4px;
  }

  .page-home .homepage-hero__content {
    width: min(58%, 600px);
  }

  .page-home .featured-grid {
    grid-template-columns: 1fr;
  }

  .page-home .edit-card {
    grid-template-columns:
      minmax(0, 62%)
      minmax(220px, 38%);
  }

  .page-home .editorial-value__layout,
  .page-home .editor-message__panel {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .page-home .editorial-value__heading h2 {
    max-width: 14ch;
  }

  .page-home .journal-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .page-edits .archive-head {
    grid-template-columns: 1fr;

    align-items: start;
    gap: 20px;
  }

  .page-edits .archive-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .page-style-edit .edit-hero,
  .page-style-edit .edit-layout {
    grid-template-columns: 1fr;
  }

  .page-style-edit .product-grid,
  .page-style-edit .detail-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }
}


/* =========================================================
   23. RESPONSIVE — SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {
  .site-shell,
  .container,
  .content-container {
    width: calc(100% - 34px);
  }

  .top-ribbon p {
    font-size: 8px;
    letter-spacing: 0.15em;
  }

  .editorial-ribbon__inner {
    min-height: 42px;

    justify-content: center;
  }

  .editorial-ribbon__divider,
  .editorial-ribbon__item:nth-of-type(3) {
    display: none;
  }

  .site-logo__name {
    font-size: 34px;
  }

  .page-home .homepage-hero {
    min-height: 620px;
  }

  .page-home .homepage-hero__image img {
    object-position: 67% 20%;
  }

  .page-home .homepage-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(248, 247, 243, 0.18) 0%,
        rgba(248, 247, 243, 0.28) 34%,
        rgba(248, 247, 243, 0.92) 64%,
        rgba(248, 247, 243, 0.99) 100%
      );
  }

  .page-home .homepage-hero__inner {
    align-items: flex-end;

    padding-top: 260px;
    padding-bottom: 36px;
  }

  .page-home .homepage-hero__content {
    width: 100%;
    max-width: 650px;
  }

  .page-home .section-intro,
  .page-home .section-intro--compact,
  .page-home .past-edits__header,
  .page-home .past-style-edits__header {
    grid-template-columns: 1fr;

    align-items: start;
    gap: 18px;
  }

  .page-home .edit-card {
    grid-template-columns: 1fr;
  }

  .page-home .edit-card__image,
  .page-home .edit-card__image img {
    min-height: 0;
  }

  .page-home .edit-card__image img {
    aspect-ratio: 4 / 3;
  }

  .page-home .value-grid {
    grid-template-columns: 1fr;
  }

  .page-home .journal-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 18px;
  }

  .page-edits .edits-page {
    padding-top: 28px;
    padding-bottom: 68px;
  }

  .page-edits .archive-panel {
    padding: 24px;
  }

  .page-style-edit .edit-hero,
  .page-style-edit .edit-section,
  .page-style-edit .shop-section,
  .page-style-edit .details-section {
    width: calc(100% - 34px);
  }

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

  .footer-nav div:last-child {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   24. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .page-home .journal-grid {
    grid-template-columns: 1fr;
  }

  .page-edits .archive-grid {
    grid-template-columns: 1fr;
  }

  .page-style-edit .product-grid,
  .page-style-edit .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .editorial-ribbon__item--shell {
    display: none;
  }

  .editorial-ribbon__item {
    font-size: 9px;
  }

  .site-logo__name {
    font-size: 30px;
  }

  .brand-name {
    max-width: 220px;

    font-size: 29px;

    white-space: normal;
  }

  .page-home .homepage-hero {
    min-height: 650px;
  }

  .page-home .homepage-hero__image img {
    object-position: 69% 22%;
  }

  .page-home .homepage-hero__inner {
    padding-top: 255px;
    padding-bottom: 30px;
  }

  .page-home .homepage-hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 4rem);
  }

  .page-home .homepage-hero__actions {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
  }

  .page-home .homepage-hero__button {
    width: 100%;
  }

  .page-home .hero-intro h1,
  .page-home .section-intro h2,
  .page-home .editorial-value__heading h2,
  .page-home .editor-message h2 {
    font-size: 46px;
  }

  .page-home .edit-card__number {
    width: 54px;
    height: 54px;

    font-size: 21px;
  }

  .page-home .edit-card__content {
    padding: 24px 20px;
  }

  .page-home .edit-card h3 {
    font-size: 34px;
  }

  .page-home .past-edits-grid,
  .page-home .past-style-edits__grid {
    grid-template-columns: 1fr;
  }

  .page-edits .brand {
    white-space: normal;
  }

  .page-edits .archive-panel {
    padding: 18px;
  }

  .page-edits .archive-title {
    font-size: 38px;
  }

  .page-edits .edit-card-media {
    aspect-ratio: 4 / 4.85;
  }

  .page-edits .edit-title {
    font-size: 31px;
  }

  .page-edits .utility-link {
    width: 100%;
    max-width: 340px;
  }

  .page-style-edit .hero-copy h1 {
    font-size: 52px;
  }

  .button,
  .button-soft,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

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

  .footer-nav div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   25. ABOUT PAGE — SCOPED PAGE STYLES
   All About page styling is scoped beneath .page-about.
   These rules will not change the homepage, edits archive,
   editorials, or style-edit pages.
   ========================================================= */

.page-about main {
  overflow: hidden;
  background: #fbf9f5;
}

.page-about .about-eyebrow {
  margin: 0 0 14px;
  color: #9f554a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-about .about-eyebrow--light {
  color: #e2cda7;
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.page-about .about-hero {
  position: relative;
  padding: clamp(54px, 6.5vw, 94px) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 42, 63, 0.11);
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(197, 164, 103, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #fbf8f2 0%, #f4eee6 100%);
}

.page-about .about-hero::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(13, 42, 63, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-about .about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.page-about .about-hero__portrait {
  width: 100%;
  max-width: 430px;
  margin: 0;
  justify-self: center;
}

.page-about .about-hero__portrait img {
  display: block;
  width: 100%;
  max-height: 540px;
  aspect-ratio: 4 / 5;
  border: 10px solid #ffffff;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 24px 58px rgba(8, 27, 42, 0.14);
}

.page-about .about-hero__portrait figcaption {
  margin-top: 15px;
  color: #6c6a67;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.page-about .about-hero__content {
  max-width: 760px;
}

.page-about .about-hero__content h1 {
  max-width: 930px;
  margin: 0;
  color: #0d2a3f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.25rem, 5.5vw, 6.45rem);
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 0.88;
  text-wrap: balance;
}

.page-about .about-hero__lead {
  max-width: 680px;
  margin: 27px 0 0;
  color: #173452;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.28;
}

.page-about
  .about-hero__content
  > p:not(.about-eyebrow):not(.about-hero__lead):not(.about-hero__note) {
  max-width: 670px;
  margin: 18px 0 0;
  color: #526474;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.97rem;
  line-height: 1.8;
}

.page-about .about-hero__actions,
.page-about .about-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 29px;
}

.page-about .about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border: 1px solid #0d2a3f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.page-about .about-button:hover,
.page-about .about-button:focus-visible {
  transform: translateY(-2px);
}

.page-about .about-button--primary {
  color: #ffffff;
  background: #0d2a3f;
}

.page-about .about-button--primary:hover,
.page-about .about-button--primary:focus-visible {
  border-color: #173f5d;
  background: #173f5d;
}

.page-about .about-button--secondary {
  color: #0d2a3f;
  background: transparent;
}

.page-about .about-button--secondary:hover,
.page-about .about-button--secondary:focus-visible {
  color: #ffffff;
  background: #0d2a3f;
}

.page-about .about-button--light {
  border-color: #ffffff;
  color: #0d2a3f;
  background: #ffffff;
}

.page-about .about-button--light:hover,
.page-about .about-button--light:focus-visible {
  border-color: #e5d3ae;
  background: #e5d3ae;
}

.page-about .about-hero__note {
  max-width: 650px;
  margin: 18px 0 0;
  color: #6f777c;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.page-about .about-trust {
  border-bottom: 1px solid rgba(13, 42, 63, 0.1);
  background: #ffffff;
}

.page-about .about-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-about .about-trust__grid > div {
  min-width: 0;
  padding: 28px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid rgba(13, 42, 63, 0.1);
}

.page-about .about-trust__grid > div:first-child {
  padding-left: 0;
}

.page-about .about-trust__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.page-about .about-trust strong {
  display: block;
  margin-bottom: 7px;
  color: #0d2a3f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.page-about .about-trust span {
  display: block;
  color: #68747d;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1.55;
}


/* =========================================================
   SHARED ABOUT SECTIONS
   ========================================================= */

.page-about .about-philosophy,
.page-about .about-values,
.page-about .about-contact {
  padding: clamp(72px, 8vw, 118px) 0;
}

.page-about .about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.page-about .about-section-heading .about-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.page-about .about-section-heading h2,
.page-about .about-values h2,
.page-about .about-contact h2 {
  margin: 0;
  color: #0d2a3f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 4.7vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.043em;
  line-height: 0.94;
  text-wrap: balance;
}

.page-about .about-section-heading > p:last-child {
  margin: 0;
  padding-left: 27px;
  border-left: 1px solid rgba(197, 164, 103, 0.72);
  color: #5d6972;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.78;
}


/* =========================================================
   HOW WE CREATE EACH EDIT
   ========================================================= */

.page-about .about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.page-about .about-feature-card {
  position: relative;
  min-height: 310px;
  padding: clamp(25px, 2.7vw, 38px);
  border: 1px solid rgba(13, 42, 63, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 27, 42, 0.045);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.page-about .about-feature-card:hover {
  border-color: rgba(197, 164, 103, 0.7);
  box-shadow: 0 22px 42px rgba(8, 27, 42, 0.09);
  transform: translateY(-4px);
}

.page-about .about-feature-card > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border: 1px solid rgba(197, 164, 103, 0.65);
  border-radius: 50%;
  color: #9f554a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-about .about-feature-card h3 {
  margin: 0;
  color: #173452;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.25vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.page-about .about-feature-card p {
  margin: 18px 0 0;
  color: #61707b;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1.72;
}

/* =========================================================
   EDITORIAL STANDARDS
   ========================================================= */

.page-about .about-standards {
  padding: 0 0 clamp(72px, 8vw, 118px);
}

.page-about .about-standards__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 100px);
  padding: clamp(44px, 6vw, 82px);
  color: #ffffff;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(197, 164, 103, 0.22),
      transparent 34%
    ),
    #0d2a3f;
  box-shadow: 0 24px 60px rgba(8, 27, 42, 0.16);
}

.page-about .about-standards__intro h2,
.page-about .about-next h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 4.8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-wrap: balance;
}

.page-about .about-standards__intro > p:last-child {
  margin: 25px 0 0;
  color: #d6e0e6;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.91rem;
  line-height: 1.8;
}

.page-about .about-standards__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.page-about .about-standards__list article {
  padding: 25px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.page-about .about-standards__list h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.06;
}

.page-about .about-standards__list p {
  margin: 12px 0 0;
  color: #c8d4dc;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.81rem;
  line-height: 1.7;
}

.page-about .about-standards__list a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(226, 205, 167, 0.72);
  text-underline-offset: 4px;
}


/* =========================================================
   VALUES
   ========================================================= */

.page-about .about-values {
  border-top: 1px solid rgba(13, 42, 63, 0.09);
  background: #f3eee7;
}

.page-about .about-values__grid,
.page-about .about-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 8vw, 125px);
  align-items: start;
}

.page-about .about-values__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 42, 63, 0.15);
}

.page-about .about-values__list > div {
  padding: 25px 24px 28px 0;
  border-bottom: 1px solid rgba(13, 42, 63, 0.15);
}

.page-about .about-values__list > div:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(13, 42, 63, 0.15);
}

.page-about .about-values__list strong {
  display: block;
  color: #173452;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
}

.page-about .about-values__list p {
  margin: 10px 0 0;
  color: #65717a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.65;
}


/* =========================================================
   NEXT STEP / CALL TO ACTION
   ========================================================= */

.page-about .about-next {
  padding: clamp(72px, 8vw, 118px) 0;
  background: #fbf9f5;
}

.page-about .about-next__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(42px, 7vw, 102px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px);
  color: #ffffff;
  background: #9f554a;
  box-shadow: 0 20px 48px rgba(94, 45, 39, 0.16);
}

.page-about .about-next__panel > div:last-child > p {
  margin: 0;
  color: #fff6f2;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.93rem;
  line-height: 1.78;
}

.page-about .about-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #0d2a3f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.page-about .about-text-link span {
  transition: transform 180ms ease;
}

.page-about .about-text-link:hover span,
.page-about .about-text-link:focus-visible span {
  transform: translateX(4px);
}

.page-about .about-next .about-text-link {
  color: #ffffff;
}


/* =========================================================
   CONTACT
   ========================================================= */

.page-about .about-contact {
  border-top: 1px solid rgba(13, 42, 63, 0.1);
  background: #ffffff;
}

.page-about .about-contact__panel > div:last-child {
  padding-left: 30px;
  border-left: 1px solid rgba(197, 164, 103, 0.72);
}

.page-about .about-contact__panel > div:last-child > p {
  margin: 0 0 22px;
  color: #5b6872;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.78;
}

.page-about .about-contact__panel > div:last-child > p a {
  color: #173452;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(197, 164, 103, 0.72);
  text-underline-offset: 4px;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.page-about a:focus-visible,
.page-about button:focus-visible {
  outline: 3px solid #bc8c49;
  outline-offset: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .page-about .about-hero__grid {
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
    gap: 48px;
  }

  .page-about .about-hero__portrait {
    max-width: 360px;
  }

  .page-about .about-philosophy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-feature-card {
    min-height: 285px;
  }
}

@media (max-width: 900px) {
  .page-about .about-hero__grid,
  .page-about .about-section-heading,
  .page-about .about-standards__panel,
  .page-about .about-values__grid,
  .page-about .about-next__panel,
  .page-about .about-contact__panel {
    grid-template-columns: 1fr;
  }

  .page-about .about-hero__grid {
    gap: 38px;
  }

  .page-about .about-hero__portrait {
    max-width: 380px;
    justify-self: start;
  }

  .page-about .about-section-heading .about-eyebrow {
    grid-column: auto;
    margin-bottom: -14px;
  }

  .page-about .about-section-heading > p:last-child,
  .page-about .about-contact__panel > div:last-child {
    padding-left: 22px;
  }

  .page-about .about-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-trust__grid > div {
    border-bottom: 1px solid rgba(13, 42, 63, 0.1);
  }

  .page-about .about-trust__grid > div:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .page-about .about-trust__grid > div:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .page-about .about-trust__grid > div:nth-child(4) {
    border-bottom: 0;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .page-about .about-hero {
    padding-top: 42px;
  }

  .page-about .about-hero__portrait {
    max-width: 320px;
  }

  .page-about .about-hero__portrait img {
    max-height: 410px;
    border-width: 7px;
  }

  .page-about .about-hero__content h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
    line-height: 0.91;
  }

  .page-about .about-hero__lead {
    font-size: 1.35rem;
  }

  .page-about .about-hero__actions,
  .page-about .about-next__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-about .about-button {
    width: 100%;
  }

  .page-about .about-trust__grid,
  .page-about .about-philosophy__grid,
  .page-about .about-standards__list,
  .page-about .about-values__list {
    grid-template-columns: 1fr;
  }

  .page-about .about-trust__grid > div,
  .page-about .about-trust__grid > div:first-child,
  .page-about .about-trust__grid > div:nth-child(2),
  .page-about .about-trust__grid > div:nth-child(3),
  .page-about .about-trust__grid > div:nth-child(4) {
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 42, 63, 0.1);
  }

  .page-about .about-trust__grid > div:last-child {
    border-bottom: 0;
  }

  .page-about .about-feature-card {
    min-height: auto;
  }

  .page-about .about-feature-card > span {
    margin-bottom: 28px;
  }

  .page-about .about-standards__panel,
  .page-about .about-next__panel {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 42px 24px;
  }

  .page-about .about-values__list > div,
  .page-about .about-values__list > div:nth-child(even) {
    padding: 22px 0 24px;
    border-left: 0;
  }

  .page-about .about-contact__panel > div:last-child {
    padding-left: 18px;
  }
}


/* =========================================================
   ABOUT PAGE — FULL EDITORIAL FIVE-EDITOR HERO
   Replaces the old single-model portrait hero with a wide
   workroom-style hero image.
   Requires image path:
   /images1/heros/about-style-editors-hero.jpg
   ========================================================= */

.page-about .about-hero {
  padding: clamp(48px, 6.5vw, 86px) 0;
}

.page-about .about-hero__grid {
  grid-template-columns:
    minmax(310px, 0.78fr)
    minmax(520px, 1.22fr);

  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.page-about .about-hero__content {
  max-width: 620px;
  order: 1;
}

.page-about .about-hero h1 {
  max-width: 13ch;
}

.page-about .about-hero__visual {
  position: relative;
  z-index: 1;

  width: 100%;
  margin: 0;

  order: 2;
}

.page-about .about-hero__image-frame {
  position: relative;
  overflow: hidden;

  padding: 9px;

  background: var(--white);
  box-shadow: 0 28px 68px rgba(8, 27, 42, 0.16);
}

.page-about .about-hero__image-frame::before {
  content: "";

  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;

  width: 38%;
  height: 42%;

  border-top: 1px solid rgba(197, 164, 103, 0.82);
  border-left: 1px solid rgba(197, 164, 103, 0.82);

  pointer-events: none;
}

.page-about .about-hero__image-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;

  aspect-ratio: 16 / 9;

  object-fit: cover;
  object-position: center center;
}

.page-about .about-hero__visual figcaption {
  margin-top: 14px;

  color: var(--driftwood);

  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .page-about .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-hero__content {
    max-width: 760px;
  }

  .page-about .about-hero h1 {
    max-width: 14ch;
  }

  .page-about .about-hero__image-frame img {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .page-about .about-hero__image-frame {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 6px;
  }

  .page-about .about-hero__image-frame img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

.body-confidence-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}