/*
Theme Name: Rauno Oidram
Theme URI: https://raunooidram.com
Author: Rauno Oidram
Description: Signature engagement rings, designed in Tallinn and finished in Valenza.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: rauno-oidram
Tags: woocommerce, custom-menu, featured-images, full-width-template
*/

/* ============================================================
   DESIGN SYSTEM — CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand palette */
  --ro-bone:       #F4F1EB;
  --ro-cream:      #EBE5DC;
  --ro-charcoal:   #1A1A1A;
  --ro-stone:      #8C8680;
  --ro-champagne:  #B89968;
  --ro-line:       #D9D2C5;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale — desktop */
  --text-h1:      clamp(40px, 5vw, 68px);
  --text-h2:      clamp(30px, 3.5vw, 44px);
  --text-h3:      clamp(20px, 2vw, 26px);
  --text-body:    17px;
  --text-body-lg: 18px;
  --text-caption: 13px;
  --text-wordmark: 15px;

  /* Spacing system — 8px base */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-15: 120px;

  /* Section vertical rhythm */
  --section-v: var(--sp-15);

  /* Layout */
  --max-width:       1280px;
  --editorial-width: 680px;
  --gutter:          clamp(24px, 4vw, 64px);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 400ms var(--ease-out);
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--ro-bone);
  color: var(--ro-charcoal);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */

h1, .h1 {
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h2, .h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 400;
  line-height: 1.3;
}

p {
  font-size: var(--text-body);
  line-height: 1.65;
}

.text-caption {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ro-stone);
}

.text-caption--champagne {
  color: var(--ro-champagne);
}

.text-stone {
  color: var(--ro-stone);
}

.text-serif {
  font-family: var(--font-serif);
}

.text-italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}

.text-signature {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-style: italic;
  color: var(--ro-stone);
}

.wordmark {
  font-family: var(--font-sans);
  font-size: var(--text-wordmark);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ro-charcoal);
  text-decoration: none;
}

/* Tabular numerals */
.numerals,
.ro-price,
td,
time {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.editorial {
  width: 100%;
  max-width: var(--editorial-width);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-v);
}

.section--bone   { background-color: var(--ro-bone); }
.section--cream  { background-color: var(--ro-cream); }
.section--charcoal {
  background-color: var(--ro-charcoal);
  color: var(--ro-bone);
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 {
  color: var(--ro-bone);
}

.section--charcoal .text-stone {
  color: rgba(244, 241, 235, 0.6);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--ro-charcoal);
  color: var(--ro-bone);
  border-color: var(--ro-charcoal);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.btn--secondary {
  background-color: var(--ro-bone);
  color: var(--ro-charcoal);
  border-color: var(--ro-charcoal);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--ro-cream);
}

.btn--ghost-bone {
  background-color: var(--ro-bone);
  color: var(--ro-charcoal);
  border-color: var(--ro-bone);
}

.btn--ghost-bone:hover,
.btn--ghost-bone:focus-visible {
  background-color: var(--ro-cream);
  border-color: var(--ro-cream);
}

.link-tertiary {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ro-charcoal);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.link-tertiary:hover,
.link-tertiary:focus-visible {
  border-bottom-color: var(--ro-champagne);
}

.section--charcoal .link-tertiary {
  color: var(--ro-bone);
}

.section--charcoal .link-tertiary:hover {
  border-bottom-color: var(--ro-champagne);
}

/* ============================================================
   DIVIDERS
   ============================================================ */

.rule {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--ro-champagne);
  margin-block: var(--sp-3);
}

.rule--full {
  width: 100%;
  background-color: var(--ro-line);
  margin-block: 0;
}

/* ============================================================
   IMAGE STYLES
   ============================================================ */

.ro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.ro-img-wrap {
  overflow: hidden;
  position: relative;
}

.ro-img-wrap:hover .ro-img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

/* Aspect ratios */
.aspect-portrait   { aspect-ratio: 4 / 5; }
.aspect-lifestyle  { aspect-ratio: 3 / 4; }
.aspect-hero       { aspect-ratio: 16 / 9; }
.aspect-editorial  { aspect-ratio: 16 / 10; }
.aspect-square     { aspect-ratio: 1 / 1; }

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 500ms var(--ease-out);
}

.site-header.is-scrolled {
  background-color: rgba(244, 241, 235, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ro-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: var(--gutter);
  max-width: var(--max-width);
  margin-inline: auto;
}

.site-header__logo {
  flex-shrink: 0;
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}

.primary-nav__link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ro-charcoal);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__link[aria-current="page"] {
  border-bottom-color: var(--ro-champagne);
}

.primary-nav__cta {
  font-size: 11px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: flex-end;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--ro-charcoal);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.nav-toggle__line:nth-child(2) {
  width: 70%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 100%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background-color: var(--ro-bone);
  padding: var(--sp-6) var(--gutter);
  z-index: 99;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--ro-line);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ro-charcoal);
  text-decoration: none;
}

.mobile-nav__link:hover {
  color: var(--ro-stone);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--ro-champagne);
  outline-offset: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(26, 26, 26, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-15) var(--gutter) var(--sp-10);
  max-width: 700px;
  color: var(--ro-bone);
}

.hero__content h1 {
  color: var(--ro-bone);
  margin-bottom: var(--sp-3);
}

.hero__content .hero__sub {
  font-size: 18px;
  color: rgba(244, 241, 235, 0.8);
  margin-bottom: var(--sp-5);
}

.hero--no-image {
  min-height: 0;
  background-color: var(--ro-cream);
  padding-block: calc(72px + var(--sp-15)) var(--section-v);
}

.hero--no-image .hero__content {
  color: var(--ro-charcoal);
  max-width: var(--editorial-width);
  margin-inline: auto;
  text-align: center;
  padding: 0;
}

.hero--no-image .hero__content h1 {
  color: var(--ro-charcoal);
}

.hero--no-image .hero__content .hero__sub {
  color: var(--ro-stone);
}

/* ============================================================
   HOMEPAGE: THE SIGNATURES GRID
   ============================================================ */

.signatures-section {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.signatures-section__header {
  text-align: center;
  margin-bottom: var(--sp-2);
}

.signatures-section__caption {
  text-align: center;
  color: var(--ro-stone);
  font-size: 16px;
  margin-bottom: var(--sp-8);
}

.signatures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.ring-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ring-card__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.ring-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.ring-card:hover .ring-card__image-wrap img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

.ring-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ro-charcoal);
  margin-bottom: var(--sp-1);
}

.ring-card__rule {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--ro-line);
  margin-block: var(--sp-1);
}

.ring-card__price {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ro-stone);
  font-variant-numeric: tabular-nums;
}

.signatures-section__footer {
  text-align: center;
}

/* ============================================================
   HOMEPAGE: WEDGE QUOTE
   ============================================================ */

.wedge-section {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.wedge-section__quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ro-charcoal);
  margin-bottom: var(--sp-4);
}

.wedge-section__attribution {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ro-stone);
}

/* ============================================================
   HOMEPAGE: RING STORY (TWO COLUMN)
   ============================================================ */

.ring-story {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.ring-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.ring-story__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ring-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.ring-story__image:hover img {
  transform: scale(1.02);
}

.ring-story__content {
  max-width: 480px;
}

.ring-story__content .text-caption {
  margin-bottom: var(--sp-2);
}

.ring-story__content h2 {
  margin-bottom: var(--sp-3);
}

.ring-story__content p {
  color: var(--ro-stone);
  margin-bottom: var(--sp-4);
}

/* ============================================================
   HOMEPAGE: THE MAKER
   ============================================================ */

.maker-section {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.maker-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.maker-section__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.maker-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maker-section__content .text-caption {
  margin-bottom: var(--sp-2);
}

.maker-section__content h2 {
  margin-bottom: var(--sp-3);
}

.maker-section__content p {
  color: var(--ro-stone);
  margin-bottom: var(--sp-3);
}

.maker-section__content p + p {
  margin-top: 0;
}

.maker-section__sig {
  font-style: italic;
  font-size: 14px;
  color: var(--ro-stone);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}

/* ============================================================
   HOMEPAGE: PROCESS STRIP
   ============================================================ */

.process-strip {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.process-strip__header {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.process-item__step {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ro-champagne);
  display: block;
  margin-bottom: var(--sp-2);
}

.process-item h3 {
  margin-bottom: var(--sp-2);
}

.process-item p {
  font-size: 15px;
  color: var(--ro-stone);
}

.process-strip__footer {
  text-align: center;
}

/* ============================================================
   HOMEPAGE: WHY A SIGNATURE DESIGNER
   ============================================================ */

.why-section {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.why-section__header {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.why-item__rule {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--ro-champagne);
  margin-bottom: var(--sp-3);
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: var(--sp-2);
}

.why-item p {
  font-size: 15px;
  color: var(--ro-stone);
  line-height: 1.7;
}

.why-section__footer {
  text-align: center;
}

/* ============================================================
   HOMEPAGE: JOURNAL PREVIEW
   ============================================================ */

.journal-preview {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.journal-preview__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.journal-card {
  display: flex;
  flex-direction: column;
}

.journal-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: var(--sp-3);
}

.journal-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.journal-card:hover .journal-card__image-wrap img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

.journal-card__date {
  font-size: var(--text-caption);
  letter-spacing: 0.04em;
  color: var(--ro-stone);
  margin-bottom: var(--sp-1);
}

.journal-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--sp-2);
  color: var(--ro-charcoal);
}

.journal-card__excerpt {
  font-size: 15px;
  color: var(--ro-stone);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
  flex-grow: 1;
}

.journal-preview__footer {
  text-align: center;
}

/* ============================================================
   HOMEPAGE: BOOKING CTA
   ============================================================ */

.booking-cta {
  padding-block: var(--section-v);
  background-color: var(--ro-charcoal);
  text-align: center;
}

.booking-cta .editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.booking-cta h2 {
  color: var(--ro-bone);
}

.booking-cta p {
  color: rgba(244, 241, 235, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--ro-charcoal);
  padding-block: var(--sp-12) var(--sp-6);
  color: var(--ro-stone);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 280px;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(217, 210, 197, 0.15);
  margin-bottom: var(--sp-8);
}

.site-footer__wordmark {
  color: var(--ro-bone);
  font-size: 12px;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(140, 134, 128, 0.7);
  line-height: 1.7;
}

.footer-nav__heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.4);
  margin-bottom: var(--sp-3);
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-nav__link {
  font-size: 14px;
  color: var(--ro-stone);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav__link:hover {
  color: var(--ro-bone);
}

.footer-address {
  font-size: 13px;
  color: rgba(140, 134, 128, 0.7);
  font-style: normal;
  line-height: 1.7;
  margin-top: var(--sp-2);
}

/* Newsletter signup in footer */
.footer-newsletter__heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.4);
  margin-bottom: var(--sp-2);
}

.footer-newsletter__label {
  display: block;
  font-size: 14px;
  color: var(--ro-stone);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}

.footer-newsletter__form {
  display: flex;
  gap: 0;
}

.footer-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(217, 210, 197, 0.2);
  border-right: none;
  color: var(--ro-bone);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition);
}

.footer-newsletter__input::placeholder {
  color: var(--ro-stone);
}

.footer-newsletter__input:focus {
  border-color: rgba(184, 153, 104, 0.5);
}

.footer-newsletter__submit {
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid rgba(217, 210, 197, 0.2);
  color: var(--ro-stone);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background-color var(--transition), color var(--transition);
}

.footer-newsletter__submit:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--ro-bone);
}

/* Footer bottom */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-bottom__left {
  font-size: 12px;
  color: rgba(140, 134, 128, 0.6);
}

.footer-bottom__left a {
  color: rgba(140, 134, 128, 0.6);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.footer-bottom__left a:hover {
  color: var(--ro-stone);
  border-bottom-color: rgba(140, 134, 128, 0.3);
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.footer-social {
  font-size: 12px;
  color: rgba(140, 134, 128, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social:hover {
  color: var(--ro-stone);
}

.footer-legal-nav {
  display: flex;
  gap: var(--sp-3);
}

.footer-legal-link {
  font-size: 12px;
  color: rgba(140, 134, 128, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--ro-stone);
}

/* ============================================================
   COLLECTION PAGE (WooCommerce Archive)
   ============================================================ */

.collection-hero {
  padding-top: calc(72px + var(--sp-10));
  padding-bottom: var(--sp-10);
  background-color: var(--ro-cream);
  text-align: center;
}

.collection-hero h1 {
  margin-bottom: var(--sp-2);
}

.collection-hero__sub {
  font-size: 18px;
  color: var(--ro-stone);
}

.collection-filters {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--ro-line);
  margin-bottom: var(--sp-8);
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 1px solid transparent;
  color: var(--ro-stone);
  cursor: pointer;
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--ro-charcoal);
  border-color: var(--ro-charcoal);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5) var(--sp-5);
  margin-bottom: var(--sp-15);
}

.collection-bespoke-cta {
  padding-block: var(--sp-15);
  background-color: var(--ro-bone);
  text-align: center;
  border-top: 1px solid var(--ro-line);
}

.collection-bespoke-cta p {
  font-size: 18px;
  color: var(--ro-stone);
  margin-bottom: var(--sp-4);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */

.product-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 72px;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main {
  padding-block: var(--sp-12) var(--sp-15);
  background-color: var(--ro-bone);
}

.product-main__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-10) var(--sp-12);
  align-items: start;
}

.product-content .text-caption {
  margin-bottom: var(--sp-2);
}

.product-content h1 {
  margin-bottom: var(--sp-2);
}

.product-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ro-stone);
  margin-bottom: var(--sp-5);
}

.product-story {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ro-charcoal);
}

.product-story p + p {
  margin-top: var(--sp-3);
}

/* Sticky sidebar */
.product-sidebar {
  position: sticky;
  top: calc(72px + var(--sp-5));
}

.product-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ro-charcoal);
  margin-bottom: var(--sp-5);
  font-variant-numeric: tabular-nums;
}

.product-specs {
  border-top: 1px solid var(--ro-line);
  margin-bottom: var(--sp-5);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--ro-line);
  gap: var(--sp-4);
}

.spec-row__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ro-stone);
  flex-shrink: 0;
}

.spec-row__value {
  font-size: 14px;
  color: var(--ro-charcoal);
  text-align: right;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.product-actions .btn {
  width: 100%;
  text-align: center;
}

.product-guarantee {
  font-size: 12px;
  color: var(--ro-stone);
  line-height: 1.65;
}

/* Product photo strip */
.product-photos {
  padding-block: var(--sp-10);
  background-color: var(--ro-cream);
}

.product-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.product-photos__grid .photo-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}

.product-photos__grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.product-photos__grid .photo-item:hover img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: none;
  border: none;
  color: var(--ro-bone);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: var(--sp-1);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover {
  opacity: 1;
}

/* Product ring story section */
.product-ring-story {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.product-ring-story h2 {
  margin-bottom: var(--sp-5);
}

.product-ring-story .story-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ro-stone);
}

.product-ring-story .story-body p + p {
  margin-top: var(--sp-3);
}

.product-ring-story .signature {
  margin-top: var(--sp-5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ro-charcoal);
}

/* Product accordion */
.product-accordion {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.product-accordion h2 {
  margin-bottom: var(--sp-8);
}

.accordion-item {
  border-top: 1px solid var(--ro-line);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--ro-line);
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-4);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ro-charcoal);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--ro-stone);
  transition: transform var(--transition);
}

.accordion-item[open] summary::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding-bottom: var(--sp-5);
  padding-right: var(--sp-8);
}

.accordion-body p {
  font-size: 15px;
  color: var(--ro-stone);
  line-height: 1.7;
}

.accordion-body p + p {
  margin-top: var(--sp-2);
}

/* Related rings */
.related-rings {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.related-rings h2 {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.related-rings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* ============================================================
   THE HOUSE PAGE
   ============================================================ */

.house-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}

.house-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-editorial {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.house-editorial h1 {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.house-letter {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ro-charcoal);
}

.house-letter p + p {
  margin-top: var(--sp-4);
}

.house-letter__signature {
  margin-top: var(--sp-8);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ro-charcoal);
}

.house-photos {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.house-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.house-photos__grid .photo-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.house-photos__grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.house-photos__grid .photo-item:hover img {
  transform: scale(1.02);
}

.house-photos__caption {
  font-size: 13px;
  color: var(--ro-stone);
  letter-spacing: 0.04em;
}

/* ============================================================
   BESPOKE PAGE
   ============================================================ */

.bespoke-editorial {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.bespoke-editorial p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ro-stone);
  margin-bottom: var(--sp-4);
}

.bespoke-columns {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.bespoke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.bespoke-column .text-caption {
  margin-bottom: var(--sp-2);
}

.bespoke-column h3 {
  margin-bottom: var(--sp-3);
}

.bespoke-column p {
  font-size: 15px;
  color: var(--ro-stone);
  line-height: 1.7;
}

.bespoke-past {
  padding-block: var(--section-v);
  background-color: var(--ro-bone);
}

.bespoke-past h2 {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.bespoke-past__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.bespoke-past-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.bespoke-past-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bespoke-past-card__caption {
  font-size: 13px;
  color: var(--ro-stone);
  font-style: italic;
  line-height: 1.5;
}

/* Bespoke inquiry form */
.bespoke-form-section {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.bespoke-form-section h2 {
  margin-bottom: var(--sp-8);
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */

.process-section {
  padding-block: var(--section-v);
}

.process-section:nth-child(even) {
  background-color: var(--ro-cream);
}

.process-section:nth-child(odd) {
  background-color: var(--ro-bone);
}

.process-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.process-section:nth-child(even) .process-section__inner {
  direction: rtl;
}

.process-section:nth-child(even) .process-section__content {
  direction: ltr;
}

.process-section__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.process-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section__number {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ro-champagne);
  display: block;
  margin-bottom: var(--sp-2);
}

.process-section__content h2 {
  margin-bottom: var(--sp-4);
}

.process-section__content p {
  font-size: 17px;
  color: var(--ro-stone);
  line-height: 1.75;
}

.process-section__content p + p {
  margin-top: var(--sp-3);
}

.process-timeline {
  padding-block: var(--sp-10);
  background-color: var(--ro-cream);
  text-align: center;
}

.process-timeline__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}

.timeline-item {
  text-align: center;
}

.timeline-item__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ro-stone);
  display: block;
  margin-bottom: var(--sp-1);
}

.timeline-item__duration {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ro-charcoal);
}

.timeline-divider {
  width: 60px;
  height: 1px;
  background-color: var(--ro-line);
}

/* ============================================================
   JOURNAL
   ============================================================ */

.journal-hero {
  padding-top: calc(72px + var(--sp-10));
  padding-bottom: var(--sp-10);
  background-color: var(--ro-bone);
  text-align: center;
}

.journal-hero h1 {
  margin-bottom: var(--sp-2);
}

.journal-archive {
  padding-block: var(--sp-10) var(--section-v);
  background-color: var(--ro-bone);
}

.journal-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-10) var(--sp-8);
}

/* Journal article page */
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 72px;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding-block: var(--sp-12) var(--section-v);
  background-color: var(--ro-bone);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.article-meta__date,
.article-meta__read {
  font-size: var(--text-caption);
  letter-spacing: 0.04em;
  color: var(--ro-stone);
}

.article-meta__divider {
  width: 1px;
  height: 12px;
  background-color: var(--ro-line);
}

.article-title {
  margin-bottom: var(--sp-8);
}

.article-content {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ro-charcoal);
}

.article-content p + p {
  margin-top: var(--sp-4);
}

.article-content h2 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  font-size: 30px;
}

.article-content h3 {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
  font-family: var(--font-serif);
  font-size: 22px;
}

.article-content ul,
.article-content ol {
  padding-left: var(--sp-4);
  margin-block: var(--sp-4);
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  margin-bottom: var(--sp-1);
  font-size: 17px;
  color: var(--ro-stone);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ro-charcoal);
  margin-block: var(--sp-8);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--ro-champagne);
}

/* Article signature */
.article-signature {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--ro-line);
}

.article-signature__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ro-charcoal);
  margin-bottom: var(--sp-2);
}

.article-signature__bio {
  font-size: 14px;
  color: var(--ro-stone);
  line-height: 1.6;
}

/* More from journal */
.more-journal {
  padding-block: var(--section-v);
  background-color: var(--ro-cream);
}

.more-journal h2 {
  margin-bottom: var(--sp-8);
}

.more-journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

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

.contact-page {
  padding-top: calc(72px + var(--sp-10));
  padding-bottom: var(--section-v);
  background-color: var(--ro-bone);
}

.contact-page h1 {
  margin-bottom: var(--sp-10);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10) var(--sp-12);
}

.contact-info__item {
  margin-bottom: var(--sp-6);
}

.contact-info__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ro-stone);
  display: block;
  margin-bottom: var(--sp-1);
}

.contact-info__value {
  font-size: 16px;
  color: var(--ro-charcoal);
  line-height: 1.6;
}

.contact-info__value a {
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.contact-info__value a:hover {
  border-bottom-color: var(--ro-champagne);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */

.booking-page {
  padding-top: calc(72px + var(--sp-10));
  padding-bottom: var(--section-v);
  background-color: var(--ro-bone);
}

.booking-page h1 {
  text-align: center;
  margin-bottom: var(--sp-4);
}

.booking-page__intro {
  text-align: center;
  color: var(--ro-stone);
  font-size: 17px;
  margin-bottom: var(--sp-10);
}

/* ============================================================
   FORMS (generic — for GF / CF7 overrides too)
   ============================================================ */

.ro-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ro-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.ro-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ro-stone);
}

.ro-input,
.ro-textarea,
.ro-select {
  padding: 14px 16px;
  background-color: transparent;
  border: 1px solid var(--ro-line);
  color: var(--ro-charcoal);
  font-family: var(--font-sans);
  font-size: 15px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.ro-input:focus,
.ro-textarea:focus,
.ro-select:focus {
  border-color: var(--ro-charcoal);
}

.ro-textarea {
  min-height: 140px;
  resize: vertical;
}

.ro-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C8680' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Gravity Forms overrides */
.gform_wrapper .gfield_label {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ro-stone) !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
  padding: 14px 16px !important;
  border: 1px solid var(--ro-line) !important;
  border-radius: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  background-color: transparent !important;
  color: var(--ro-charcoal) !important;
  box-shadow: none !important;
}

.gform_wrapper .gform_submit_button,
.gform_wrapper input[type="submit"] {
  padding: 16px 32px !important;
  background-color: var(--ro-charcoal) !important;
  color: var(--ro-bone) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

/* CF7 overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ro-line);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  background-color: transparent;
  color: var(--ro-charcoal);
  outline: none;
}

.wpcf7-form input[type="submit"] {
  padding: 16px 32px;
  background-color: var(--ro-charcoal);
  color: var(--ro-bone);
  border: none;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  background-color: var(--ro-bone);
}

.page-404__inner {
  max-width: 480px;
}

.page-404__code {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 400;
  color: var(--ro-line);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.page-404 h1 {
  font-size: 28px;
  margin-bottom: var(--sp-3);
}

.page-404 p {
  color: var(--ro-stone);
  margin-bottom: var(--sp-5);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES — disable defaults
   ============================================================ */

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: none !important;
}

.woocommerce-breadcrumb {
  display: none !important;
}

.woocommerce-loop-product__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ro-charcoal);
  padding: 0 !important;
}

/* Hide default WC elements we replace */
.woocommerce div.product form.cart,
.woocommerce div.product .summary .price,
.woocommerce div.product .woocommerce-product-details__short-description {
  display: none;
}

/* ============================================================
   SCHEMA / SEO — hidden structured data helpers
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-v: var(--sp-12);
    --gutter: 32px;
  }

  .signatures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5) var(--sp-4);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

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

  .product-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .why-grid,
  .process-grid {
    gap: var(--sp-5);
  }

  .journal-archive__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --section-v: 72px;
    --gutter: 24px;
    --text-body: 16px;
  }

  /* Nav */
  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero__content {
    padding: var(--sp-12) var(--gutter) var(--sp-8);
  }

  /* Signatures */
  .signatures-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4) var(--sp-3);
  }

  /* Two-column layouts → stacked */
  .ring-story__inner,
  .maker-section__inner,
  .contact-layout,
  .product-main__inner,
  .process-section__inner,
  .process-section:nth-child(even) .process-section__inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .process-section:nth-child(even) .process-section__content {
    direction: ltr;
  }

  /* Product sidebar not sticky on mobile */
  .product-sidebar {
    position: static;
  }

  /* Process/Why grids */
  .process-grid,
  .why-grid,
  .bespoke-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  /* Collection */
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4) var(--sp-3);
  }

  /* Journal */
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .more-journal__grid,
  .related-rings__grid {
    grid-template-columns: 1fr;
  }

  /* Product photos */
  .product-photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* House photos */
  .house-photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .footer-bottom__right {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }

  /* Journal archive */
  .journal-archive__grid {
    grid-template-columns: 1fr;
  }

  /* Process timeline */
  .process-timeline__inner {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .timeline-divider {
    width: 1px;
    height: 30px;
  }

  /* Bespoke */
  .bespoke-past__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  /* Journal preview header */
  .journal-preview__header {
    flex-direction: column;
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .signatures-grid {
    grid-template-columns: 1fr;
  }

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

  .product-photos__grid {
    grid-template-columns: 1fr;
  }

  .bespoke-past__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   THE HOUSE PAGE — HERO
   ============================================================ */

.house-page-hero {
  width: 100%;
  overflow: hidden;
  margin-top: 72px;
}

.house-page-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.house-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.house-page-hero__caption-block {
  padding-top: var(--sp-5);
  text-align: center;
}

.house-page-hero__caption {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ro-champagne);
  margin-bottom: var(--sp-2);
}

.house-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ro-charcoal);
}

/* ============================================================
   FOUNDER'S LETTER — BODY TYPOGRAPHY
   ============================================================ */

.house-letter-section {
  background-color: var(--ro-bone);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
}

.house-letter__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ro-charcoal);
}

.house-letter__body p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 1.4em;
  margin-top: 0;
}

.house-letter__body p:last-child {
  margin-bottom: 0;
}

/* Drop cap — first letter of opening paragraph */
.house-letter__body .letter-para--opening .dropcap {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.78;
  color: var(--ro-champagne);
  float: left;
  margin-right: 0.06em;
  margin-top: 0.06em;
}

/* Atelier photo break — bleeds to container width, within the letter section */
.atelier-photo-break {
  margin-top: 4em;
  margin-bottom: 4em;
}

.atelier-photo-break__inner {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.atelier-photo-break__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Signature block at end of letter */
.house-letter__sig-block {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house-letter__sig-rule {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--ro-champagne);
  margin-bottom: 1.5em;
}

.house-letter__sig-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ro-stone);
}

/* ============================================================
   HOMEPAGE SECTION 5 — THE MAKER (updated from brief)
   ============================================================ */

.maker-section__sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ro-stone);
  margin-top: 1.5em;
  margin-bottom: var(--sp-4);
}

.link-tertiary--champagne {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ro-champagne);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
  display: inline-block;
}

.link-tertiary--champagne:hover,
.link-tertiary--champagne:focus-visible {
  border-bottom-color: var(--ro-champagne);
}

/* ============================================================
   FOOTER BRAND LINE
   ============================================================ */

.footer-brand-line {
  padding-top: 24px;
  padding-bottom: 16px;
  text-align: center;
}

.footer-brand-line::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--ro-champagne);
  margin: 0 auto 24px;
  opacity: 0.6;
}

.footer-brand-line__text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ro-stone);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — HOUSE PAGE & LETTER
   ============================================================ */

@media (max-width: 768px) {
  .house-page-hero__image {
    aspect-ratio: 4 / 5;
  }

  .house-letter__body,
  .house-letter__body p {
    font-size: 17px;
  }

  .house-letter__body .letter-para--opening .dropcap {
    font-size: 52px;
  }

  .atelier-photo-break {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .house-letter__sig-text {
    font-size: 20px;
  }
}
