/* ============================================================
   CADDELLE — GALLERY THEME
   Light "white-cube" palette · teal accent (#84C0B4)
   Fonts: Cormorant Garamond · Syncopate · DM Sans
   ============================================================ */

/* ── RESET & ROOT ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* surfaces */
  --paper:      #FAFAF8;   /* page background */
  --paper-2:    #FFFFFF;   /* cards / panels */
  --paper-3:    #F1F1EC;   /* tinted section bands */
  /* ink / text */
  --ink:        #111110;   /* near-black, headings */
  --ink-soft:   #3A372F;   /* strong secondary text */
  --text:       #37342D;   /* body copy */
  --muted:      #8C887E;   /* tertiary */
  --light:      #A8A399;   /* faint */
  --white:      #FFFFFF;
  /* accent (teal) */
  --teal:       #84C0B4;   /* brand accent — decorative */
  --teal-deep:  #2C7365;   /* interactive / legible on white */
  --teal-dark:  #1F5B50;
  --teal-bg:    rgba(132,192,180,0.10);
  /* lines */
  --line:       rgba(17,17,16,0.12);
  --line-2:     rgba(17,17,16,0.22);
  /* dark moment (footer / feature tiles) */
  --dark:       #111110;
  --dark-2:     #1A1915;
  --on-dark:    #F2F1EC;
  --on-dark-muted: #9A9082;
  --dark-line:  rgba(255,255,255,0.12);
  /* type */
  --serif:      'Cormorant Garamond', Georgia, serif;
  --display:    'Syncopate', sans-serif;
  --body:       'DM Sans', Arial, sans-serif;
  --nav-h:      88px;

  /* legacy aliases (so any stray reference still resolves in-theme) */
  --gold: var(--teal-deep); --gold-light: var(--teal); --gold-dark: var(--teal-dark);
  --gold-bg: var(--teal-bg); --gold-border: var(--line);
  --parchment: var(--ink); --parchment-dk: var(--paper-3);
  --ink-mid: var(--paper-3);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 54px; width: auto; }
.nav-logo-text {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
}

.nav-links { display: flex; gap: 2.1rem; align-items: center; }

.nav-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-link:hover,
.nav-link.active { color: var(--teal-deep); border-bottom-color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }

.nav-user { font-size: 0.75rem; color: var(--text-soft, var(--ink-soft)); display: flex; align-items: center; gap: 0.4rem; }
.nav-badge {
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--teal-bg); border: 1px solid var(--teal); color: var(--teal-deep);
  padding: 0.15rem 0.5rem;
}

.nav-btn-ghost {
  font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line-2);
  padding: 0.5rem 1.05rem;
  transition: all 0.25s;
}
.nav-btn-ghost:hover { color: var(--ink); border-color: var(--teal); }

.nav-btn-gold {
  font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white); background: var(--teal-deep);
  padding: 0.55rem 1.2rem; transition: background 0.25s; font-weight: 400;
}
.nav-btn-gold:hover { background: var(--teal-dark); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; display: block; }

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 1rem 2rem 1.5rem; gap: 0;
}
.nav-mobile a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.75rem 0;
  border-bottom: 1px solid var(--line); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--teal-deep); }
.nav-mobile .mobile-register { color: var(--teal-deep); margin-top: 0.5rem; }
.nav-mobile-divider { height: 1px; background: var(--line); margin: 0.75rem 0; }

/* ── DESKTOP DROPDOWNS ── */
.nav-links > li.nav-item { position: relative; height: var(--nav-h); display: flex; align-items: center; gap: 0.3rem; }

.nav-caret { display: inline-flex; align-items: center; padding: 4px 2px; color: var(--muted); transition: color 0.25s, transform 0.25s; }
.nav-caret svg { display: block; }
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret { color: var(--teal-deep); transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: -0.6rem;
  min-width: 232px;
  background: var(--paper-2);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--teal);
  padding: 0.55rem 0;
  box-shadow: 0 22px 46px rgba(17,17,16,0.12);
  opacity: 0; visibility: hidden; transform: translateY(7px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-item.has-dropdown:hover  .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown.wide { min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 0.5rem; }

.nav-dropdown a {
  display: block; padding: 0.6rem 1.4rem;
  font-size: 0.66rem; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-dropdown a:hover { color: var(--teal-deep); background: var(--teal-bg); border-left-color: var(--teal); }

/* ── LOGIN + CART UTILITIES ── */
.nav-cart { position: relative; display: inline-flex; align-items: center; color: var(--ink-soft); padding: 0.35rem; transition: color 0.25s; }
.nav-cart:hover { color: var(--teal-deep); }
.nav-cart svg { display: block; }
.nav-cart-count {
  position: absolute; top: -3px; right: -5px;
  min-width: 15px; height: 15px; padding: 0 3px; border-radius: 8px;
  background: var(--teal-deep); color: var(--white);
  font-family: var(--body); font-size: 0.55rem; font-weight: 500; line-height: 15px; text-align: center;
}

/* ── MOBILE ACCORDION ── */
.nav-mobile .m-item { display: flex; flex-direction: column; }
.nav-mobile .m-parent {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.75rem 0; border-bottom: 1px solid var(--line); transition: color 0.2s;
}
.nav-mobile .m-parent:hover { color: var(--teal-deep); }
.nav-mobile .m-caret { color: inherit; transition: transform 0.25s; }
.nav-mobile .m-item.open .m-parent { color: var(--teal-deep); }
.nav-mobile .m-item.open .m-caret { transform: rotate(180deg); }
.nav-mobile .m-sub { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.nav-mobile .m-item.open .m-sub { max-height: 720px; }
.nav-mobile .m-sub a { padding: 0.6rem 0 0.6rem 1rem; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; }
.nav-mobile .m-sub a:hover { color: var(--teal-deep); }
.nav-mobile .m-sub .m-overview { color: var(--ink-soft); }

/* ── FOOTER (dark moment) ── */
.site-footer { background: var(--dark); color: var(--on-dark); border-top: 3px solid var(--teal); }
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 4.5rem 2.4rem 3rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand-logo { height: 76px; width: auto; margin-bottom: 1.4rem; }
.footer-logo { font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.3em; color: var(--on-dark); display: inline-block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.8rem; color: var(--on-dark-muted); line-height: 1.8; max-width: 34ch; }
.footer-stockists { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 1.2rem; }
.footer-stockists span { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--on-dark-muted); }
.footer-col-title { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }
.footer-col a { font-size: 0.82rem; color: var(--on-dark-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  border-top: 1px solid var(--dark-line); max-width: 1320px; margin: 0 auto;
  padding: 1.5rem 2.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.7rem; color: var(--on-dark-muted); }
.footer-schema { font-style: italic; opacity: 0.7; }

/* ── COMMON UTILITIES ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2.4rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.eyebrow { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-deep); display: block; margin-bottom: 1.3rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 300; line-height: 1.05; color: var(--ink); }
.section-title em { font-style: italic; color: var(--ink); }
.section-body { font-size: 0.9rem; color: var(--text); line-height: 1.9; max-width: 60ch; }
.gold-rule { width: 48px; height: 2px; background: var(--teal); margin: 1.2rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; transition: all 0.25s; font-family: var(--body); border: 1px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--teal-deep); color: var(--white); }
.btn-gold:hover { background: var(--teal-dark); }
.btn-outline { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--teal); background: var(--teal-bg); color: var(--teal-deep); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--teal-dark); }

/* ── SERVICE / COLLECTION CARD GRID (landing pages) ── */
.svc-grid { max-width: 1320px; margin: 0 auto; padding: 3rem 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.svc-card { background: var(--paper-2); padding: 2.2rem 2rem; display: block; color: inherit; transition: background 0.25s; }
.svc-card:hover { background: var(--teal-bg); }
.svc-card .svc-num { font-family: var(--display); font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.9rem; }
.svc-card h3 { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 1.5rem; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.2; }
.svc-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.svc-card .svc-arrow { margin-top: 1rem; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-deep); }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

/* ── HOMEPAGE HERO ── */
.hero { min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 3rem 4rem; }
.hero-title { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.0; color: var(--ink); margin-bottom: 0.4rem; }
.hero-title em { font-style: italic; color: var(--ink); }
.hero-sub { font-family: var(--serif); font-size: clamp(0.95rem, 1.5vw, 1.25rem); font-style: italic; color: var(--ink-soft); margin-bottom: 2rem; line-height: 1.5; }
.hero-desc { font-size: 0.88rem; color: var(--text); max-width: 400px; margin-bottom: 2.5rem; line-height: 1.9; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; background: var(--paper-3); }
.hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--paper) 0%, transparent 22%); }

/* ── TICKER (subtle rule) ── */
.ticker { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; padding: 0.7rem 0; }
.ticker-track { display: inline-flex; animation: ticker-scroll 40s linear infinite; }
.ticker-item { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); font-weight: 400; padding: 0 2rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOMEPAGE SECTIONS ── */
.home-series { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-series-inner { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.series-quote { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-style: italic; color: var(--ink); line-height: 1.6; border-left: 2px solid var(--teal); padding-left: 1.5rem; margin-bottom: 2rem; }

/* dark feature tile — one deliberate dark accent in the body */
.series-art-panel { background: var(--dark); aspect-ratio: 2 / 1; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.series-art-panel::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(132,192,180,0.06) 0px, rgba(132,192,180,0.06) 1px, transparent 1px, transparent 20px); }
.series-fact { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.series-fact-num { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); color: var(--teal); line-height: 1; display: block; margin-bottom: 0.6rem; }
.series-fact-text { font-size: 0.82rem; color: var(--on-dark-muted); max-width: 280px; margin: 0 auto; line-height: 1.6; }
.series-art-caption { position: absolute; bottom: 1rem; left: 1.2rem; right: 1.2rem; display: flex; justify-content: space-between; }
.series-art-caption span:first-child { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--teal); opacity: 0.85; }
.series-art-caption span:last-child { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-dark-muted); }

/* ── ARTWORK GRID ── */
.art-grid-section { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; }
.art-grid-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.filter-bar { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 0.4rem 1rem; transition: all 0.2s; background: transparent; font-family: var(--body); }
.filter-btn:hover, .filter-btn.active { color: var(--teal-deep); border-color: var(--teal); background: var(--teal-bg); }

.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.art-card { background: var(--paper-2); overflow: hidden; position: relative; display: block; color: inherit; }
.art-card-img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: var(--paper-3); }
.art-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.art-card:hover .art-card-img img { transform: scale(1.04); }
.art-card-overlay { position: absolute; inset: 0; background: rgba(17,17,16,0.82); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; opacity: 0; transition: opacity 0.35s; }
.art-card:hover .art-card-overlay { opacity: 1; }
.art-card-overlay-title { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--on-dark); text-align: center; padding: 0 1.5rem; }
.art-card-overlay-btn { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--teal-deep); padding: 0.55rem 1.4rem; transition: background 0.2s; }
.art-card-overlay-btn:hover { background: var(--teal-dark); }
.art-card-info { padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: flex-start; }
.art-card-title { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.art-card-medium { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }
.art-card-price { font-family: var(--serif); font-size: 0.95rem; color: var(--teal-deep); white-space: nowrap; margin-left: 1rem; padding-top: 0.1rem; flex-shrink: 0; }
.art-card-price.enquire { font-family: var(--body); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── TRADE SECTION ── */
.trade-section { background: var(--paper-3); border-top: 1px solid var(--line); }
.trade-inner { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.trade-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.5rem; }
.trade-feature { background: var(--paper-2); padding: 1.5rem; }
.trade-feature-icon { color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 0.8rem; display: block; }
.trade-feature-title { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); margin-bottom: 0.4rem; }
.trade-feature-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--paper-2); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--body); font-size: 0.88rem; font-weight: 300; padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.25s; border-radius: 0; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); font-size: 0.82rem; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C7365' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-color: var(--paper-2); padding-right: 2.5rem;
}
.form-group select option { background: var(--paper-2); color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ABOUT SECTION ── */
.about-section { background: var(--paper-2); color: var(--ink); }
.about-inner { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.about-title { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem; }
.about-title em { font-style: italic; color: var(--teal-deep); }
.about-creds { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.about-cred { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; color: var(--ink-soft); }
.about-cred::before { content: ''; width: 5px; height: 5px; background: var(--teal); flex-shrink: 0; }
.about-lead { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 300; line-height: 1.6; color: var(--ink); margin-bottom: 1.5rem; }
.about-text { font-size: 0.88rem; color: var(--text); line-height: 1.9; margin-bottom: 1.2rem; }
.about-stockist-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.stockist-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-deep); border: 1px solid var(--teal); padding: 0.35rem 0.85rem; }

/* ── EMAIL CAPTURE ── */
.email-capture { background: var(--paper-3); border-top: 1px solid var(--line); text-align: center; padding: 5rem 2rem; }
.email-capture-title { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 2.5vw, 2.5rem); font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
.email-capture-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }
.email-form { display: flex; max-width: 460px; margin: 0 auto; }
.email-input { flex: 1; background: var(--paper-2); border: 1px solid var(--line); border-right: none; color: var(--ink); font-family: var(--body); font-size: 0.88rem; padding: 0.85rem 1.2rem; outline: none; transition: border-color 0.25s; }
.email-input:focus { border-color: var(--teal); }
.email-input::placeholder { color: var(--muted); font-size: 0.82rem; }
.email-submit { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--teal-deep); border: none; padding: 0.85rem 1.8rem; cursor: pointer; transition: background 0.25s; font-family: var(--body); white-space: nowrap; }
.email-submit:hover { background: var(--teal-dark); }
.email-note { font-size: 0.7rem; color: var(--muted); margin-top: 0.75rem; }

/* ── HOW RICH IS RICH PAGE (dark hero permitted) ── */
.hrir-hero { background: var(--dark); padding: 6rem 2rem; position: relative; overflow: hidden; }
.hrir-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(132,192,180,0.05) 0px, rgba(132,192,180,0.05) 1px, transparent 1px, transparent 22px); }
.hrir-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hrir-series-label { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; }
.hrir-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 300; line-height: 1.0; color: var(--on-dark); }
.hrir-title em { font-style: italic; color: var(--teal); }
.hrir-question { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.6rem); color: var(--on-dark-muted); margin-top: 1.5rem; line-height: 1.5; }
.hrir-works-grid { max-width: 1320px; margin: 0 auto; padding: 4rem 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hrir-work-card { background: var(--paper-2); border: 1px solid var(--line); position: relative; overflow: hidden; display: block; }
.hrir-work-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.5s; }
.hrir-work-card:hover img { transform: scale(1.03); }
.hrir-work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,16,0.85) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 1.2rem; }
.hrir-work-fact { position: relative; }
.hrir-work-fact-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); }
.hrir-work-title { position: absolute; bottom: 1rem; left: 1.2rem; font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--on-dark); }

/* ── TRADE PAGE ── */
.trade-services { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; }
.trade-service-card { background: var(--paper-2); border: 1px solid var(--line); padding: 2.5rem; margin-bottom: 1.5px; transition: border-color 0.3s; }
.trade-service-card:hover { border-color: var(--teal); }
.trade-service-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.trade-service-num { font-family: var(--display); font-size: 0.55rem; letter-spacing: 0.3em; color: var(--teal-deep); opacity: 0.7; margin-bottom: 0.4rem; }
.trade-service-title { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 300; font-style: italic; color: var(--ink); }
.trade-service-price { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--teal-deep); border: 1px solid var(--teal); padding: 0.3rem 0.8rem; white-space: nowrap; flex-shrink: 0; }
.trade-tier-table { width: 100%; border-collapse: collapse; margin: 2.5rem 0; font-size: 0.82rem; }
.trade-tier-table th { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-deep); padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.trade-tier-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); color: var(--text); vertical-align: top; }
.trade-tier-table tr:hover td { background: var(--teal-bg); }
.trade-tier-table .check { color: var(--teal-deep); }
.trade-tier-table .dash { color: var(--light); }

/* ── ABOUT PAGE ── */
.about-page-hero { background: var(--paper-3); padding: 5rem 2rem; border-bottom: 1px solid var(--line); }
.about-page-hero-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-page-name { font-family: var(--serif); font-size: clamp(3rem, 6vw, 7rem); font-weight: 300; line-height: 0.9; color: var(--ink); }
.about-page-name em { font-style: italic; color: var(--teal-deep); display: block; }
.about-page-statement { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-style: italic; color: var(--ink); line-height: 1.6; border-left: 2px solid var(--teal); padding-left: 1.5rem; margin-bottom: 2rem; }
.cv-section { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; }
.cv-year-block { margin-bottom: 3rem; }
.cv-year { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--teal-deep); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.cv-year::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.cv-entry { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.cv-entry-venue { font-size: 0.82rem; color: var(--muted); }
.cv-entry-title { font-size: 0.88rem; color: var(--ink); }

/* ── JOURNAL ── */
.journal-grid { max-width: 1320px; margin: 0 auto; padding: 4rem 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.journal-card { background: var(--paper-2); border: 1px solid var(--line); overflow: hidden; display: block; transition: transform 0.3s, box-shadow 0.3s; }
.journal-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(17,17,16,0.08); }
.journal-card-img { aspect-ratio: 16/9; background: var(--paper-3); overflow: hidden; }
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }
.journal-card-body { padding: 1.5rem; }
.journal-card-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.6rem; display: block; }
.journal-card-title { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); line-height: 1.3; margin-bottom: 0.6rem; }
.journal-card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-inner { max-width: 1000px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info-item { margin-bottom: 2rem; }
.contact-info-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.4rem; }
.contact-info-value { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ── STOCKISTS PAGE ── */
.stockist-cards { max-width: 1320px; margin: 0 auto; padding: 4rem 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.stockist-card { background: var(--paper-2); padding: 2.5rem; border: 1px solid transparent; transition: border-color 0.3s; }
.stockist-card:hover { border-color: var(--teal); }
.stockist-card-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.8rem; }
.stockist-card-name { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--ink); margin-bottom: 0.6rem; }
.stockist-card-location { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--paper-3); padding: 4rem 2rem; border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.breadcrumb { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.5rem; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal-deep); }
.breadcrumb span { color: var(--light); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .art-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .stockist-cards { grid-template-columns: repeat(2, 1fr); }
  .hrir-works-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-logo-img { height: 40px; }
  .nav-links { display: none; }
  .nav-btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; }
  .hero-left { padding: 3rem 1.5rem 2rem; }

  .home-series-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .trade-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .about-page-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cv-entry { grid-template-columns: 1fr; gap: 0.25rem; }

  .art-grid { grid-template-columns: repeat(2, 1fr); }
  .hrir-works-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .stockist-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trade-features { grid-template-columns: 1fr; }
  .container { padding: 0 1.5rem; }
  .section { padding: 3rem 0; }

  .email-form { flex-direction: column; }
  .email-input { border-right: 1px solid var(--line); border-bottom: none; }
}

@media (max-width: 480px) {
  .art-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .art-grid-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   STUDIO SERVICE PAGE TEMPLATE
   Reusable across all /studio/* pages — swap content + images.
   ============================================================ */
.studio-hero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.studio-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.studio-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,15,13,0.85) 0%, rgba(15,15,13,0.55) 42%, rgba(15,15,13,0.25) 100%); }
.studio-hero-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: 4rem 2.4rem; width: 100%; }
.studio-hero-eyebrow { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.4rem; }
.studio-hero-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.08; color: var(--on-dark); max-width: 18ch; }
.studio-hero-title em { font-style: italic; }

.studio-intro { background: var(--paper); }
.studio-intro-inner { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 1.25fr; gap: 4.5rem; align-items: start; }
.studio-intro-crumb { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.studio-intro-crumb b { color: var(--teal-deep); font-weight: 400; }
.studio-intro h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--ink); margin-bottom: 1.4rem; }
.studio-intro p { font-size: 0.9rem; color: var(--text); line-height: 1.9; margin-bottom: 1.8rem; max-width: 42ch; }

.studio-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.studio-collage-main { grid-column: 1 / -1; aspect-ratio: 20 / 9; overflow: hidden; }
.studio-collage-sub { aspect-ratio: 3 / 2; overflow: hidden; }
.studio-collage img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.studio-collage-main:hover img, .studio-collage-sub:hover img { transform: scale(1.03); }

.wwd { background: var(--paper-3); border-top: 1px solid var(--line); }
.wwd-inner { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; }
.wwd-head { text-align: center; margin-bottom: 3.5rem; }
.wwd-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--ink); }
.wwd-head .rule { width: 54px; height: 2px; background: var(--teal); margin: 1.1rem auto 0; }
.wwd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.6rem; }
.wwd-card { text-align: center; }
.wwd-card-img { aspect-ratio: 3 / 2; overflow: hidden; margin-bottom: 1.2rem; background: var(--paper-2); }
.wwd-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.wwd-card:hover .wwd-card-img img { transform: scale(1.04); }
.wwd-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.wwd-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; max-width: 24ch; margin: 0 auto; }

.studio-cta { background: linear-gradient(120deg, var(--teal-dark) 0%, #17443C 55%, var(--dark) 145%); position: relative; overflow: hidden; }
.studio-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 22px); }
.studio-cta-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: 3.5rem 2.4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.studio-cta h2 { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(1.5rem, 2.4vw, 2.2rem); color: var(--on-dark); line-height: 1.3; }
.studio-cta .cta-btn { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark); border: 1px solid rgba(255,255,255,0.5); padding: 0.9rem 2rem; transition: all 0.25s; white-space: nowrap; }
.studio-cta .cta-btn:hover { background: var(--on-dark); color: var(--teal-dark); border-color: var(--on-dark); }

@media (max-width: 900px) {
  .studio-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) { .wwd-grid { grid-template-columns: 1fr; } }

/* ── STUDIO COLLAGE WITH TALL PANEL (reusable) ── */
.scg { display: grid; grid-template-columns: 1.65fr 1fr; gap: 1rem; align-items: stretch; }
.scg-left { display: flex; flex-direction: column; gap: 1rem; }
.scg-main { aspect-ratio: 21 / 10; overflow: hidden; }
.scg-subs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.scg-sub { aspect-ratio: 4 / 3; overflow: hidden; }
.scg-tall { overflow: hidden; }
.scg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.scg-main:hover img, .scg-sub:hover img, .scg-tall:hover img { transform: scale(1.03); }
@media (max-width: 900px) { .scg { grid-template-columns: 1fr; } .scg-tall { aspect-ratio: 3 / 4; } }

/* ── WHAT WE DO — ICON GRID (reusable) ── */
.wwd-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem 2.4rem; max-width: 1120px; margin: 0 auto; }
.wwd-icon { flex: 0 0 150px; text-align: center; }
.wwd-ico { color: var(--teal-deep); display: flex; justify-content: center; margin-bottom: 1rem; }
.wwd-ico svg { width: 44px; height: 44px; }
.wwd-icon h3 { font-family: var(--body); font-weight: 500; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.45rem; letter-spacing: 0.01em; }
.wwd-icon p { font-size: 0.74rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .wwd-icons { gap: 2.4rem 1.6rem; } .wwd-icon { flex-basis: 130px; } }

/* ── SHOWCASE ROW (reusable) ── */
.showcase { background: var(--paper-3); border-top: 1px solid var(--line); }
.showcase-inner { max-width: 1320px; margin: 0 auto; padding: 4.5rem 2.4rem 5rem; }
.showcase-head { text-align: center; margin-bottom: 3rem; }
.showcase-head h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 2.6vw, 2.4rem); color: var(--ink); }
.showcase-head .rule { width: 54px; height: 2px; background: var(--teal); margin: 1.1rem auto 0; }
.showcase-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.showcase-card-img { aspect-ratio: 3 / 2; overflow: hidden; margin-bottom: 0.9rem; background: var(--paper-2); }
.showcase-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.showcase-card:hover .showcase-card-img img { transform: scale(1.05); }
.showcase-card h3 { font-family: var(--body); font-weight: 500; font-size: 0.82rem; color: var(--ink); text-align: center; margin-bottom: 0.3rem; }
.showcase-card p { font-size: 0.72rem; color: var(--muted); text-align: center; line-height: 1.5; max-width: 22ch; margin: 0 auto; }
@media (max-width: 1024px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   STUDIO PAGE — extended sections (Digital Experiences)
   ============================================================ */
.studio-hero-rule { width: 60px; height: 2px; background: var(--teal); margin: 1.4rem 0 0; }
.studio-hero-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 1.6vw, 1.4rem); color: var(--on-dark-muted); margin-top: 1.2rem; max-width: 28ch; line-height: 1.4; }

/* single intro image (device mockup) */
.dx-intro-img img { width: 100%; height: auto; display: block; }

/* centred uppercase section head */
.dx-head { text-align: center; margin-bottom: 3rem; }
.dx-head h2 { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink); }
.dx-head .rule { width: 54px; height: 2px; background: var(--teal); margin: 1rem auto 0; }

/* WHAT WE CREATE — bordered icon cards */
.wwc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 1320px; margin: 0 auto; }
.wwc-card { border: 1px solid var(--line); background: var(--paper-2); padding: 2rem 1.4rem; text-align: center; transition: border-color 0.25s, transform 0.25s; }
.wwc-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.wwc-ico { color: var(--teal-deep); display: flex; justify-content: center; margin-bottom: 1rem; }
.wwc-ico svg { width: 40px; height: 40px; }
.wwc-card h3 { font-family: var(--body); font-weight: 500; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.5rem; }
.wwc-card p { font-size: 0.74rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 1024px) { .wwc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .wwc-grid { grid-template-columns: 1fr; } }

/* TYPICAL APPLICATIONS — icon + label row */
.dx-apps { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.2rem 1.6rem; max-width: 1150px; margin: 0 auto; }
.dx-app { text-align: center; width: 100px; }
.dx-app-ico { color: var(--teal-deep); display: flex; justify-content: center; margin-bottom: 0.6rem; }
.dx-app-ico svg { width: 30px; height: 30px; }
.dx-app span { font-size: 0.68rem; color: var(--ink-soft); line-height: 1.3; display: block; }

/* THREE PANELS — integrated / technologies / connected */
.dx-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1320px; margin: 0 auto; }
.dx-panel { position: relative; min-height: 500px; border: 1px solid var(--line); background: var(--paper-2); overflow: hidden; display: flex; flex-direction: column; }
.dx-panel-content { padding: 2rem 1.8rem 1.4rem; }
.dx-panel h3 { font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1rem; }
.dx-panel p { font-size: 0.82rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.dx-checklist { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 1rem; }
.dx-checklist.two { grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
.dx-checklist li { font-size: 0.76rem; color: var(--ink-soft); padding-left: 1.35rem; position: relative; line-height: 1.4; }
.dx-checklist li::before { content: ''; position: absolute; left: 0; top: 0.3em; width: 0.55rem; height: 0.3rem; border-left: 1.5px solid var(--teal-deep); border-bottom: 1.5px solid var(--teal-deep); transform: rotate(-45deg); }
.dx-panel-photo { margin-top: auto; height: 180px; background-size: cover; background-position: center; }
@media (max-width: 900px) { .dx-panels { grid-template-columns: 1fr; } }

/* OUR APPROACH — numbered steps */
.dx-approach { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; max-width: 1040px; margin: 0 auto; }
.dx-step { text-align: center; width: 180px; padding: 0 0.5rem; }
.dx-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-deep); color: #fff; font-family: var(--display); font-size: 0.55rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.dx-step-ico { color: var(--ink); display: flex; justify-content: center; margin-bottom: 0.9rem; }
.dx-step-ico svg { width: 34px; height: 34px; }
.dx-step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; }
.dx-step p { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }
.dx-arrow { display: flex; align-items: center; color: var(--muted); padding-top: 2.4rem; }
@media (max-width: 768px) { .dx-arrow { display: none; } .dx-step { width: 45%; margin-bottom: 1.5rem; } }

/* ============================================================
   STUDIO PAGE — Print & Production patterns
   ============================================================ */
.studio-hero-body { font-size: 0.85rem; color: var(--on-dark-muted); line-height: 1.8; max-width: 42ch; margin-top: 1.4rem; }

/* Online ordering strip */
.order-strip { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.order-strip-inner { max-width: 1320px; margin: 0 auto; padding: 2.5rem 2.4rem; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.order-icon { width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--teal-deep); flex-shrink: 0; }
.order-icon svg { width: 38px; height: 38px; }
.order-text { flex: 1; min-width: 240px; }
.order-text h3 { font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.6rem; }
.order-text p { font-size: 0.86rem; color: var(--text); line-height: 1.7; max-width: 54ch; }
@media (max-width: 768px) { .order-strip-inner { flex-direction: column; align-items: flex-start; } }

/* What We Produce — photo cards with icon badge */
.wp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; max-width: 1320px; margin: 0 auto; }
.wp-card { text-align: center; }
.wp-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 1.1rem; }
.wp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.wp-card:hover .wp-card-img img { transform: scale(1.05); }
.wp-badge { position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--teal-deep); box-shadow: 0 6px 16px rgba(17,17,16,0.08); }
.wp-badge svg { width: 22px; height: 22px; }
.wp-card h3 { font-family: var(--body); font-weight: 500; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.45rem; }
.wp-card p { font-size: 0.74rem; color: var(--muted); line-height: 1.55; max-width: 22ch; margin: 0 auto; }
@media (max-width: 1024px) { .wp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .wp-grid { grid-template-columns: repeat(2, 1fr); } }

/* CTA with feature icons */
.studio-cta.has-features .studio-cta-inner { justify-content: space-between; align-items: center; }
.cta-features { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.cta-feat { text-align: center; width: 118px; }
.cta-feat-ico { color: var(--teal); display: flex; justify-content: center; margin-bottom: 0.6rem; }
.cta-feat-ico svg { width: 30px; height: 30px; }
.cta-feat span { font-size: 0.68rem; color: var(--on-dark-muted); line-height: 1.4; display: block; }
.cta-divider { width: 1px; align-self: stretch; min-height: 70px; background: rgba(255,255,255,0.18); }
@media (max-width: 900px) { .cta-divider { display: none; } .studio-cta.has-features .studio-cta-inner { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   STUDIO PAGE — AI Creative Services
   ============================================================ */
.studio-hero-title em.teal { color: var(--teal); }

/* dark "let's chat" strip (sits under the dark hero) */
.chat-strip { background: var(--dark); }
.chat-strip-inner { max-width: 1320px; margin: 0 auto; padding: 2rem 2.4rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.chat-strip-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.chat-strip-icon svg { width: 28px; height: 28px; }
.chat-strip-text { flex: 1; min-width: 220px; }
.chat-strip-text h3 { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.chat-strip-text p { font-size: 0.82rem; color: var(--on-dark-muted); line-height: 1.6; }
@media (max-width: 768px) { .chat-strip-inner { flex-direction: column; align-items: flex-start; } }

/* intro + capabilities row */
.ai-intro-row { max-width: 1320px; margin: 0 auto; padding: 5rem 2.4rem; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.ai-intro h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.6rem, 2.4vw, 2.3rem); color: var(--ink); line-height: 1.2; margin: 1.4rem 0; }
.ai-intro p { font-size: 0.85rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.ai-intro-highlight { color: var(--teal-deep); font-size: 0.82rem; line-height: 1.6; margin-top: 1.4rem; font-weight: 500; }
.ai-cap-head { font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-deep); text-align: center; margin-bottom: 1.8rem; }
.ai-cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ai-cap-card { border: 1px solid var(--line); background: var(--paper-2); padding: 1.5rem; transition: border-color 0.25s; }
.ai-cap-card:hover { border-color: var(--teal); }
.ai-cap-ico { color: var(--teal-deep); margin-bottom: 0.9rem; }
.ai-cap-ico svg { width: 30px; height: 30px; }
.ai-cap-card h3 { font-family: var(--body); font-weight: 500; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.5rem; }
.ai-cap-card p { font-size: 0.73rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 1024px) { .ai-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .ai-intro-row { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .ai-cap-grid { grid-template-columns: 1fr; } }

/* three-column process band */
.ai-process { max-width: 1320px; margin: 0 auto; padding: 4.5rem 2.4rem; display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 2.5rem; align-items: start; }
.ai-col-head { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1.6rem; }
.ai-list { display: flex; flex-direction: column; gap: 1.2rem; }
.ai-list-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.ai-list-ico { color: var(--teal-deep); flex-shrink: 0; margin-top: 1px; }
.ai-list-ico svg { width: 22px; height: 22px; }
.ai-list-item h4 { font-family: var(--body); font-weight: 500; font-size: 0.82rem; color: var(--ink); margin-bottom: 0.1rem; }
.ai-list-item p { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }
.ai-steps { display: flex; flex-direction: column; gap: 1.4rem; }
.ai-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.ai-step-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--teal-deep); color: var(--teal-deep); font-family: var(--display); font-size: 0.52rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-step h4 { font-family: var(--body); font-weight: 500; font-size: 0.82rem; color: var(--ink); margin-bottom: 0.1rem; }
.ai-step p { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }
.ai-emerging { display: grid; grid-template-columns: 1fr 0.8fr; gap: 1.2rem; }
.ai-emerging-img { overflow: hidden; background: var(--paper-3); min-height: 260px; }
.ai-emerging-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .ai-process { grid-template-columns: 1fr; gap: 3rem; } .ai-emerging { grid-template-columns: 1fr; } }

/* two panels: human-first (dark) + create-new (light) */
.ai-duo { max-width: 1320px; margin: 0 auto; padding: 0 2.4rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ai-panel { display: grid; overflow: hidden; }
.ai-panel.dark { grid-template-columns: 0.85fr 1fr; background: var(--teal-dark); }
.ai-panel.light { grid-template-columns: 1fr 0.85fr; background: var(--paper-2); border: 1px solid var(--line); }
.ai-panel-photo { background-size: cover; background-position: center; min-height: 320px; }
.ai-panel-text { padding: 2.2rem; }
.ai-panel h3 { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.ai-panel.dark h3 { color: var(--teal); }
.ai-panel.light h3 { color: var(--teal-deep); }
.ai-panel p { font-size: 0.8rem; line-height: 1.7; margin-bottom: 0.9rem; }
.ai-panel.dark p { color: rgba(242,241,236,0.82); }
.ai-panel.light p { color: var(--text); }
@media (max-width: 1024px) { .ai-duo { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ai-panel.dark, .ai-panel.light { grid-template-columns: 1fr; } .ai-panel-photo { min-height: 200px; } }

/* CTA leading icon */
.studio-cta .cta-lead { display: flex; align-items: center; gap: 1.2rem; }
.cta-lead-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.cta-lead-icon svg { width: 26px; height: 26px; }
.cta-lead p { font-size: 0.82rem; color: var(--on-dark-muted); margin-top: 0.3rem; }

/* ── VISUAL COMMUNICATION — 4-col What We Do + Showcase arrows ── */
.wwd-icons.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 1.6rem; }
@media (max-width: 900px) { .wwd-icons.grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wwd-icons.grid4 { grid-template-columns: 1fr; } }

.showcase-slider { display: flex; align-items: center; gap: 1.2rem; max-width: 1320px; margin: 0 auto; }
.showcase-slider .showcase-grid { flex: 1; margin: 0; }
.showcase-grid.four { grid-template-columns: repeat(4, 1fr); }
.sc-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; background: transparent; }
.sc-arrow:hover { border-color: var(--teal); color: var(--teal-deep); }
.sc-arrow svg { width: 18px; height: 18px; }
@media (max-width: 1024px) { .showcase-grid.four { grid-template-columns: repeat(2, 1fr); } .sc-arrow { display: none; } }
@media (max-width: 560px) { .showcase-grid.four { grid-template-columns: 1fr; } }

/* ── CUSTOM COLLECTIONS — intro image row + exclusive band ── */
.cc-intro-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.cc-intro-imgs .im { aspect-ratio: 2 / 3; overflow: hidden; background: var(--paper-3); }
.cc-intro-imgs .im img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cc-intro-imgs .im:hover img { transform: scale(1.04); }
@media (max-width: 560px) { .cc-intro-imgs { grid-template-columns: 1fr 1fr; } }

.cc-exclusive { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--paper-3); }
.cc-exclusive-photo { min-height: 420px; background-size: cover; background-position: center; align-self: stretch; }
.cc-exclusive-text { padding: 3.5rem 2.4rem; max-width: 680px; }
.cc-exclusive-text h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 2.4vw, 2.2rem); color: var(--ink); line-height: 1.25; margin-bottom: 1.2rem; }
.cc-exclusive-text p { font-size: 0.85rem; color: var(--text); line-height: 1.8; }
@media (max-width: 900px) { .cc-exclusive { grid-template-columns: 1fr; } .cc-exclusive-photo { min-height: 280px; } }

/* ============================================================
   STUDIO PAGE — Creative Systems
   ============================================================ */
.cs-daup { max-width: 1320px; margin: 0 auto; padding: 4.5rem 2.4rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.cs-photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.cs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-block-head { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1.2rem; }
.cs-text p { font-size: 0.83rem; color: var(--text); line-height: 1.8; margin-bottom: 0.9rem; }
.cs-vstep { display: flex; gap: 0.9rem; align-items: flex-start; }
.cs-vstep-ico { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--teal-deep); flex-shrink: 0; }
.cs-vstep-ico svg { width: 20px; height: 20px; }
.cs-vstep h4 { font-family: var(--body); font-weight: 500; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.15rem; }
.cs-vstep p { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }
.cs-arrow-down { color: var(--muted); padding-left: 19px; margin: 0.4rem 0; }
.cs-arrow-down svg { width: 18px; height: 18px; display: block; }
@media (max-width: 900px) { .cs-daup { grid-template-columns: 1fr; } }

.cs-initiatives { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cs-initiatives-inner { max-width: 1320px; margin: 0 auto; padding: 4rem 2.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cs-initiatives h2 { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1rem; }
.cs-initiatives .lead { font-size: 0.84rem; color: var(--text); line-height: 1.8; margin-bottom: 1.4rem; }
.cs-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.4rem; }
.cs-checklist li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--ink-soft); list-style: none; }
.cs-check { color: var(--teal-deep); flex-shrink: 0; display: flex; }
.cs-check svg { width: 18px; height: 18px; }
.cs-initiatives-img img { width: 100%; display: block; }
@media (max-width: 900px) { .cs-initiatives-inner { grid-template-columns: 1fr; } .cs-checklist { grid-template-columns: 1fr; } }

.cs-ahead { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.cs-ahead-text { padding: 3.5rem 2.4rem; max-width: 660px; margin-left: auto; }
.cs-ahead-text h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 2.4vw, 2.2rem); color: var(--ink); line-height: 1.25; margin-bottom: 1.2rem; }
.cs-ahead-text p { font-size: 0.84rem; color: var(--text); line-height: 1.8; margin-bottom: 0.9rem; }
.cs-ahead-photo { min-height: 400px; background-size: cover; background-position: center; align-self: stretch; }
@media (max-width: 900px) { .cs-ahead { grid-template-columns: 1fr; } .cs-ahead-photo { min-height: 260px; } }

/* ── MOBILE POLISH — collapse remaining 2-col blocks on small phones ── */
@media (max-width: 480px) {
  .scg-subs { grid-template-columns: 1fr; }
  .studio-collage { grid-template-columns: 1fr; }
  .dx-checklist.two { grid-template-columns: 1fr; }
}

/* ============================================================
   STUDIO PAGE — Photography
   ============================================================ */
.photo-band { display: grid; grid-template-columns: 0.8fr 1.15fr 1.5fr 0.8fr; align-items: stretch; }
.photo-band-photo { background-size: cover; background-position: center; min-height: 520px; }
.photo-band-col { padding: 3rem 2rem; }
.pg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 0.8rem; margin-top: 1rem; }
.pg-item { text-align: center; }
.pg-ico { color: var(--teal-deep); display: flex; justify-content: center; margin-bottom: 0.45rem; }
.pg-ico svg { width: 24px; height: 24px; }
.pg-item span { font-size: 0.66rem; color: var(--ink-soft); line-height: 1.3; display: block; }
@media (max-width: 1100px) { .photo-band { grid-template-columns: 1fr 1fr; } .photo-band-photo { min-height: 300px; } }
@media (max-width: 700px)  { .photo-band { grid-template-columns: 1fr; } .pg-grid { grid-template-columns: repeat(3, 1fr); } }

.spec-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.spec-card-img { aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: 0.8rem; background: var(--paper-3); }
.spec-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.spec-card:hover .spec-card-img img { transform: scale(1.05); }
.spec-card h3 { font-family: var(--body); font-weight: 600; font-size: 0.8rem; color: var(--ink); margin-bottom: 0.3rem; }
.spec-card p { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 1024px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .spec-grid { grid-template-columns: repeat(2, 1fr); } }

.ph-process { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; max-width: 1120px; margin: 0 auto; }
.ph-step { width: 180px; text-align: center; padding: 0 0.5rem; }
.ph-step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-deep); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; }
.ph-step-circle svg { width: 26px; height: 26px; }
.ph-step-num { position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-family: var(--display); font-size: 0.5rem; display: flex; align-items: center; justify-content: center; border: 2px solid var(--paper); }
.ph-step h4 { font-family: var(--body); font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.4rem; }
.ph-step p { font-size: 0.73rem; color: var(--muted); line-height: 1.5; }
.ph-arrow { display: flex; align-items: center; color: var(--muted); padding-top: 1.5rem; }
.ph-arrow svg { width: 18px; height: 18px; }
@media (max-width: 768px) { .ph-arrow { display: none; } .ph-step { width: 45%; margin-bottom: 1.5rem; } }

/* Photography CTA (two-part dark band) */
.ph-cta-box { border: 1px solid rgba(255,255,255,0.25); padding: 1.6rem 1.8rem; max-width: 360px; }
.ph-cta-box h4 { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem; }
.ph-cta-box p { font-size: 0.82rem; color: var(--on-dark-muted); margin-bottom: 1.2rem; line-height: 1.6; }
