@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/InstrumentSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/InstrumentSerif-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f5f2;
  --white: #fff;
  --ink: #100d12;
  --muted: #68636b;
  --line: #d8d2d9;
  --soft: #ece8ed;
  --accent: #6545e6;
  --accent-dark: #4f35bd;
  --night: #110d18;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: min(1320px, calc(100vw - clamp(56px, 8vw, 144px)));
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

button,
summary,
a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.wrap { width: var(--wrap); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 74px;
}

.wm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.wm .n {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: .07em;
}

.wm .n em { color: var(--accent); font-style: italic; }

.wm .t {
  font-size: 8px;
  line-height: 1.45;
  letter-spacing: .29em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
}

.desktop-nav a,
.header-phone,
.button,
.text-link,
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; padding-block: 8px; }
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  position: relative;
  padding-block: 8px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::before { content: ""; position: absolute; right: 0; bottom: 1px; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.nav-dropdown summary:hover::before,
.nav-dropdown summary:focus-visible::before,
.nav-dropdown[open] summary::before,
.nav-dropdown--current summary::before { transform: scaleX(1); transform-origin: left; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: 230px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(20,16,24,.14);
  transform: translateX(-50%);
}
.nav-dropdown-panel a { padding: 11px 2px; border-bottom: 1px solid var(--line); }
.nav-dropdown-panel a:last-child { border-bottom: 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { color: var(--accent); text-align: right; }
.header-phone small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .16em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--outline:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; border-color: var(--white); }

.mobile-menu { display: none; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow { margin: 0 0 18px; color: var(--accent); }

.section--night .eyebrow { color: #9b87f4; }

.display-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .95;
}

.display-title { font-size: clamp(64px, 7.2vw, 112px); }
.section-title { font-size: clamp(46px, 5vw, 76px); }
.section-title--compact { font-size: clamp(40px, 4.2vw, 62px); }

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #37323a;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
}
.text-link::after { content: "↗"; font-size: 15px; }

.section { padding-block: clamp(74px, 8vw, 116px); }
.section--white { background: var(--white); }
.section--night { color: var(--white); background: var(--night); }
.section--night .lead { color: rgba(255,255,255,.72); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 72px);
}
.section-head .lead { margin: 0; }

.media-frame { overflow: hidden; background: #1c1820; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.quote-mark { color: var(--accent); font-family: var(--serif); }

.faq-list { max-width: 920px; margin: 44px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding-block: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.1;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 22px; text-align: right; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; margin: 0 0 24px; color: var(--muted); }

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  padding: clamp(44px, 6vw, 82px);
  background: #ece8f7;
}
.contact-panel .section-title { max-width: 820px; }
.contact-panel p { margin: 20px 0 0; color: #4d4654; }
.contact-links { display: grid; gap: 12px; }
.contact-links a { min-height: 54px; }

.site-footer { padding-block: 34px; border-top: 1px solid var(--line); background: var(--white); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 24px; font-size: 12px; }

:focus-visible { outline: 3px solid #f0b4ff; outline-offset: 3px; }

@media (max-width: 980px) {
  :root { --wrap: min(100% - 48px, 900px); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions .button { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--ink);
    cursor: pointer;
    list-style: none;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 26px;
    background: var(--white);
    border-block: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(20, 16, 24, .14);
  }
  .mobile-menu nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-menu nav a:last-child { color: var(--accent); border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 680px) {
  :root { --wrap: calc(100% - 40px); }
  body { font-size: 15px; line-height: 1.6; }
  .header-inner { min-height: 62px; gap: 12px; }
  .wm { gap: 7px; }
  .wm .n { font-size: 29px; }
  .wm .t { font-size: 6.7px; }
  .header-phone { margin-left: auto; font-size: 10px; letter-spacing: .08em; }
  .header-phone small { font-size: 7px; }
  .mobile-menu summary { width: 44px; height: 44px; }
  .mobile-menu nav { top: 62px; }
  .display-title { font-size: clamp(52px, 15vw, 68px); line-height: .92; }
  .section-title { font-size: clamp(42px, 12vw, 54px); }
  .section-title--compact { font-size: 40px; }
  .lead { margin-top: 20px; font-size: 15px; }
  .button { width: 100%; min-height: 52px; }
  .hero-actions { display: grid; gap: 10px; margin-top: 26px; }
  .text-link { justify-self: start; width: max-content; }
  .section { padding-block: 64px; }
  .section-head { margin-bottom: 34px; }
  .contact-panel { grid-template-columns: 1fr; padding: 34px 24px; }
  .footer-inner { display: grid; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026-08-21: occasions group in the mobile menu (consistent 6-item nav) */
.mobile-menu .m-nav-group { border-bottom: 1px solid var(--line); }
.mobile-menu .m-nav-group summary { display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; list-style: none; }
.mobile-menu .m-nav-group summary::-webkit-details-marker { display: none; }
.mobile-menu .m-nav-group summary::after { content: "+"; }
.mobile-menu .m-nav-group[open] summary::after { content: "\2212"; }
.mobile-menu .m-nav-group a { padding-left: 18px; font-size: 12px; }
.mobile-menu .m-nav-group a:last-child { border-bottom: 0; }

/* 2026-08-21b: menu polish: occasions last, no accent links */
.mobile-menu nav a:last-child { color: inherit; }
.mobile-menu .m-nav-group { border-bottom: 0; }
.mobile-menu .m-nav-group[open] summary { border-bottom: 1px solid var(--line); }
.mobile-menu .m-nav-group a:last-child { color: inherit; border-bottom: 0; }

/* 2026-08-22: refined wordmark asset; mobile menu matched to homepage look */
.wm img { display: block; height: 40px; width: auto; }
.site-footer .wm img { height: 36px; }
.mobile-menu summary { display: grid; place-items: center; width: auto; height: auto; min-width: 46px; min-height: 44px; padding: 0 9px; color: var(--ink); background: transparent; border: 1px solid #aaa4af; cursor: pointer; list-style: none; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; }
.mobile-menu[open] summary { color: #fff; background: var(--ink); border-color: var(--ink); }
.mobile-menu nav { position: absolute; top: calc(100% + 10px); right: 0; display: grid; width: 208px; color: var(--ink); background: #fff; border: 1px solid #d8d3dc; box-shadow: 0 18px 42px rgba(29, 22, 34, .16); }
.mobile-menu nav a { display: flex; align-items: center; min-height: 46px; padding: 0 15px; border-bottom: 1px solid #e4e0e7; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu nav a:last-child { color: inherit; }
.mobile-menu .m-nav-group summary { display: flex; justify-content: space-between; align-items: center; min-width: 0; min-height: 46px; padding: 0 15px; border: 0; background: transparent; color: var(--ink); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu[open] .m-nav-group summary { color: var(--ink); background: transparent; border: 0; }
.mobile-menu .m-nav-group[open] summary { border-bottom: 1px solid #e4e0e7; }
.mobile-menu .m-nav-group a { padding-left: 26px; }
.mobile-menu nav { left: auto; padding: 0; }
/* 2026-08-22b: cropped wordmark, unified sizing to match homepage */
.wm img { height: 44px; }
.site-footer .wm img { height: 36px; }
@media (max-width: 768px) { .wm img { height: 36px; } .site-footer .wm img { height: 32px; } }
/* 2026-08-22c: wordmark optical parity with homepage */
.wm img { height: 36px; }
@media (max-width: 768px) { .wm img { height: 32px; } }

/* 2026-08-22d: footer unified with the homepage design */
.site-footer { padding: 34px 0 26px; color: var(--muted, #6b6377); background: #f4f0fa; border-top: 1px solid #d5ccdf; font-size: 11px; }
.site-footer .footer-top { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding-bottom: 28px; }
.site-footer .footer-links { display: flex; gap: 31px; letter-spacing: .07em; text-transform: none; }
.site-footer .footer-links a { padding: 0; border: 0; color: inherit; }
.site-footer .footer-fine { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid #cfc6d8; font-size: 10px; }
@media (max-width: 768px) {
  .site-footer { padding: 20px 0 24px; }
  .site-footer .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 20px; }
  .site-footer .footer-links { flex-wrap: wrap; gap: 10px 18px; }
  .site-footer .footer-fine { flex-direction: column; gap: 6px; }
}
/* 2026-08-22e: contact line in the unified footer */
.footer-contact-line { display: flex; flex-wrap: wrap; gap: 6px 28px; padding-bottom: 20px; font-size: 11px; }
.footer-contact-line a { color: var(--ink); }
