/* ============================================================
   PULSE MASTERS — Mastering Hybride, Paris
   Design tokens
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:        #06211b;
  --bg-alt:    #0d251d;
  --bg-deep:   #041712;
  --ink:       #ece5d4;
  --ink-dim:   #b7bdb0;
  --sage:      #8a9c8f;
  --brass:     #c9a76a;
  --brass-dim: #8c754a;
  --brass-bright: #e8c688;
  --line:      rgba(247, 246, 241, 0.12);

  --display: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --accent: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --edge: clamp(24px, 6vw, 88px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--brass); color: var(--bg-deep); }

:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--edge);
  background: rgba(0, 25, 20, 0.92);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(0, 20, 16, 0.92);
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
  padding-top: 8px;
}

.brand img {
  width: 72px;
  height: 72px;
}

.brand-word {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
}

.brand-word span { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.main-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active { color: var(--ink); }

.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0 0 4px;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle { color: var(--ink); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  width: 150px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-dim);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 167, 106, 0.08);
  color: var(--brass-bright);
}

.nav-dropdown-menu svg { width: 16px; height: 16px; flex: 0 0 auto; }

@media (max-width: 880px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: none;
    border: none;
    padding: 4px 0 0 14px;
    width: auto;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-toggle { font-size: 1rem; }
}

.hero-dropdown { display: inline-flex; }

.hero-dropdown .nav-dropdown-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 26px;
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-dropdown .nav-dropdown-toggle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.hero-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(1px);
}

.hero-dropdown .nav-dropdown-toggle:hover,
.hero-dropdown.is-open .nav-dropdown-toggle {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-2px);
}

.hero-dropdown .nav-dropdown-menu { position: fixed; left: 0; top: 0; transform: translateX(-8px); }
.hero-dropdown.is-open .nav-dropdown-menu { transform: translateX(0); }

@media (max-width: 720px) {
  .hero-dropdown .nav-dropdown-menu { left: auto; right: 0; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--ink-dim);
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button.is-active,
.lang-switch button[aria-pressed="true"] {
  background: var(--brass);
  color: var(--bg-deep);
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-wrap {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--bg-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
    padding: 40px var(--edge);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.65,0,.35,1);
    border-left: 1px solid var(--line);
  }
  .nav-wrap.is-open { transform: translateX(0); }
  .main-nav { flex-direction: column; gap: 22px; }
  .main-nav a { font-size: 1rem; }
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
  filter: saturate(0.92) brightness(0.78);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--bg) 0%, rgba(4,23,18,0.97) 34%, rgba(4,23,18,0.75) 58%, rgba(4,23,18,0.35) 78%, rgba(4,23,18,0.05) 92%),
    linear-gradient(to top, var(--bg) 0%, rgba(4,23,18,0.25) 30%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--edge) 100px;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 340;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.hero-title em { font-style: italic; color: var(--brass); font-weight: 400; }

.hero-sub {
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  margin: 0 0 30px;
  opacity: 0;
  animation: rise 0.9s ease 0.5s forwards;
}

.hero-sub .divider { color: var(--brass-dim); margin: 0 10px; }

.hero-body {
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 0 40px;
  opacity: 0;
  animation: rise 0.9s ease 0.65s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroActionsFade 0.9s ease 0.8s forwards;
  text-shadow: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroActionsFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary { background: var(--brass); color: var(--bg-deep); border: 1px solid var(--brass); }
.btn-primary:hover { transform: translateY(-2px); background: #dab97e; }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

@media (max-width: 720px) {
  .hero { align-items: flex-end; }
  .hero-photo { object-position: 62% 38%; }
  .hero-content { padding: 0 var(--edge) 70px; }
}

/* ------------------------------------------------------------
   Generic page sections
   ------------------------------------------------------------ */

.page-hero { padding: 195px var(--edge) 44px; }

.page-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 18px;
}

.page-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 340;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 0;
  max-width: 780px;
}

.page-hero--center { text-align: center; }
.page-hero--center .page-title { max-width: none; }

.placeholder-section { padding: 90px var(--edge) 160px; max-width: 680px; }
.placeholder-section p {
  color: var(--ink-dim);
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   Legal content
   ------------------------------------------------------------ */

.legal-content { padding: 0 var(--edge) 150px; max-width: 720px; }

.legal-updated {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--sage);
  margin: 0 0 40px;
}

.legal-content h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 46px 0 14px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-dim);
  margin: 0 0 14px;
}

.legal-content .btn { margin-top: 40px; }

/* ------------------------------------------------------------
   Portfolio embed (Samply)
   ------------------------------------------------------------ */

.home-refs { padding: 30px 0 10px; }

.home-refs-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 22px;
  padding: 0 var(--edge);
  text-align: center;
}

.home-refs-intro {
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0 0 32px;
  padding: 0 var(--edge);
  max-width: 640px;
}

.portfolio-embed {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--edge) 30px;
}

.portfolio-embed iframe {
  width: 100%;
  height: 640px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-alt);
}

.portfolio-fallback {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-align: center;
}

.portfolio-fallback a { color: var(--sage); transition: color 0.2s ease; }
.portfolio-fallback a:hover { color: var(--brass); }

@media (max-width: 720px) {
  .portfolio-embed iframe { height: 520px; }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--edge) 32px;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 16px;
  color: var(--sage);
}

.footer-bottom .footer-address {
  color: var(--ink-dim);
  line-height: 16px;
}

.footer-address a {
  color: var(--ink-dim);
  position: relative;
  line-height: 16px;
  display: inline-block;
  padding-right: 14px;
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-address a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-address a:hover {
  color: var(--brass);
  text-decoration: underline;
  text-decoration-color: var(--brass);
}

.footer-address a:hover::after { opacity: 1; }

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 16px;
}

.footer-links a {
  color: var(--sage);
  line-height: 16px;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--brass); }

.footer-links .dot { color: var(--line); line-height: 16px; }

.footer-legal-line {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  line-height: 16px;
}

.footer-legal-line > div {
  line-height: 16px;
}

@media (max-width: 720px) {
  .footer-legal-line { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ------------------------------------------------------------
   Services page
   ------------------------------------------------------------ */

.services-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  opacity: 0.32;
  filter: saturate(0.7) brightness(0.55);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
}

.services-intro {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 0 var(--edge) 70px;
  max-width: 1080px;
  margin: 0 auto;
}

.page-hero--services {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.services-intro p {
  flex: 1 1 320px;
  color: var(--ink-dim);
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

.service-list {
  padding: 0 var(--edge) 150px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr 1.1fr;
  gap: 28px;
  padding: 40px 0;
}


.service-head, .service-price, .service-desc { position: relative; z-index: 1; }
.service-head { display: flex; align-items: baseline; gap: 16px; }

.service-name {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--ink);
}

.service-desc {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink-dim);
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  line-height: 1.2;
}

.service-price-main {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  color: var(--brass-bright);
}

.service-price-detail {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
  text-transform: none;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .service-price { text-align: left; }
}

/* ------------------------------------------------------------
   Equipment page
   ------------------------------------------------------------ */

.equip-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/studio-1.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.32;
  filter: saturate(0.6) brightness(0.7);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
}

.home-equip { padding: 70px 0 10px; }

.home-equip-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 28px;
  padding: 0 var(--edge);
}

.equip-groups {
  max-width: 1500px;
  padding: 0 var(--edge) 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

.equip-groups--page {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  gap: 90px 40px;
  max-width: calc(100% - 2 * var(--edge));
}

.equip-group { position: relative; }

.equip-group h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-style: normal;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
  min-height: 2.9em;
}

.equip-group p {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 1080px) {
  .equip-groups { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .equip-groups { grid-template-columns: 1fr; gap: 22px; }
  .equip-group h3 { min-height: 0; }
}

/* ------------------------------------------------------------
   Contact section (homepage)
   ------------------------------------------------------------ */

.contact-section { padding: 40px var(--edge) 90px; background: var(--bg); }
.contact-inner { max-width: 620px; margin: 0 auto; }

.contact-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 340;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin: 0 0 34px;
  line-height: 1.18;
}

.contact-sub { color: var(--ink-dim); font-size: 0.98rem; margin: 0 0 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row label {
  font-family: var(--accent);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
  line-height: 1.3;
  min-height: 1.3em;
  display: block;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-alt);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  transition: background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  min-height: 48px;
}

.form-row select {
  font-family: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--sage);
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  background: #102a21;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a76a' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.form-row select option {
  background: var(--bg-alt);
  color: var(--ink);
  font-family: var(--accent);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  background: #102a21;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201, 167, 106, 0.18);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.contact-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 15px 34px;
  margin-top: 6px;
}

.form-note { font-family: var(--mono); font-size: 0.75rem; color: var(--sage); margin-top: 4px; }

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

/* ------------------------------------------------------------
   About page — background photo + vertical content
   ------------------------------------------------------------ */

.about-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/studio-2.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: saturate(0.6) brightness(0.4);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 78%, transparent 100%);
}

.about-intro {
  padding: 0 var(--edge) 70px;
  max-width: 1080px;
}

.about-intro p {
  color: var(--ink);
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

.about-blocks {
  padding: 0 var(--edge) 150px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-block {
  padding: 40px 0;
}

.about-label {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 14px;
}

.about-block p {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}

/* About — mobile adjustments */
@media (max-width: 720px) {
  .about-block { padding: 30px 0; }
  .about-blocks { padding-bottom: 100px; }
}

/* ------------------------------------------------------------
   Export guide
   ------------------------------------------------------------ */

.guide-intro { padding: 0 var(--edge) 60px; max-width: 640px; }

.guide-intro p {
  color: var(--ink-dim);
  font-family: var(--accent);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.5;
  margin: 0;
}

.carousel-block { padding: 0 var(--edge) 90px; max-width: 1080px; }
.carousel-heading { margin: 0; }

.carousel-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 620;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 640px;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.carousel-block { padding-bottom: 0; }

.section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: padding 0.25s ease;
}

.section-toggle:hover { padding-left: 8px; }

.carousel-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 620;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 640px;
  line-height: 1.25;
  transition: color 0.25s ease;
  flex: 1;
  min-width: 0;
}

.section-toggle:hover .carousel-title { color: var(--brass-bright); }

.section-chevron {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  transition: transform 0.3s ease, color 0.25s ease;
}

.section-chevron svg {
  width: 20px;
  height: 20px;
}

.section-toggle:hover .section-chevron { color: var(--brass-bright); }

.section-group.is-open .section-chevron {
  transform: rotate(180deg);
}

.section-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.section-panel .guide-accordion { padding-bottom: 40px; }

@media (max-width: 640px) {
  .section-toggle { padding: 26px 0; gap: 14px; }
  .section-icon { font-size: 1.6rem; }
}

.carousel-soon { font-family: var(--mono); font-size: 0.85rem; color: var(--sage); margin: 0; }

.guide-accordion { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.guide-item { border-bottom: 1px solid var(--line); padding: 26px 4px; }
.guide-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 10px; }

.guide-num {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--brass-bright);
  flex: 0 0 auto;
}

.guide-lead {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
}

.guide-item p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-dim);
  margin: 0;
  padding-left: 74px;
  max-width: 560px;
}

@media (max-width: 640px) {
  .guide-item { padding: 22px 2px; }
  .guide-num { font-size: 1.2rem; }
  .guide-lead { font-size: 1.05rem; }
  .guide-item p { padding-left: 0; margin-top: 6px; }
}