:root {
  --accent: #ff5436;
  --ink: #191512;
  --paper: #f7f3ec;
  --paper-2: #efe8dc;
  --muted: #6b6259;
  --line: rgba(25, 21, 18, 0.14);
  --maxw: 1180px;
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display { font-family: "Fraunces", Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.98rem;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(247, 243, 236, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { font-family: "Fraunces", serif; font-size: 1.55rem; font-weight: 600; }
.brand em { color: var(--accent); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 0.96rem; color: var(--ink); position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--accent); transition: width 0.25s;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s; }

/* Hero */
.hero { padding: 90px 0 70px; }
.hero__inner { max-width: 960px; }
.hero__title { font-size: clamp(3rem, 8vw, 6rem); line-height: 1.02; margin: 22px 0 26px; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: 1.25rem; color: var(--muted); max-width: 620px; }
.hero__cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero__platforms { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__platforms .label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.hero__platform-list { display: flex; flex-wrap: wrap; gap: 14px 40px; }
.hero__platform-list span { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--ink); }

/* Section head */
.section { padding: 100px 0; border-top: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; margin-top: 14px; }

/* Services - editorial list */
.svc__row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.3s;
}
.svc__row:last-child { border-bottom: 1px solid var(--line); }
.svc__row:hover { padding-left: 14px; }
.svc__num { font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--accent); }
.svc__title { font-family: "Fraunces", serif; font-size: 1.9rem; }
.svc__text { color: var(--muted); font-size: 1.05rem; padding-top: 6px; }

/* Studio */
.studio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.studio__body { font-size: 1.2rem; color: var(--muted); }
.studio__stats { display: flex; flex-direction: column; gap: 0; }
.studio__stat { padding: 26px 0; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 18px; }
.studio__stat:last-child { border-bottom: 1px solid var(--line); }
.studio__num { font-family: "Fraunces", serif; font-size: 3rem; line-height: 1; }
.studio__num .suffix { color: var(--accent); }
.studio__label { color: var(--muted); }

/* Work cards */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work__card { background: var(--paper-2); border-radius: 20px; padding: 34px 30px; transition: transform 0.25s; }
.work__card:hover { transform: translateY(-6px); }
.work__client { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.work__result { font-family: "Fraunces", serif; font-size: 2rem; color: var(--accent); margin: 12px 0 14px; line-height: 1.1; }
.work__text { color: var(--muted); }

/* Quote */
.quote { padding: 110px 0; border-top: 1px solid var(--line); }
.quote__text { font-family: "Fraunces", serif; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.3; max-width: 1000px; font-weight: 500; }
.quote__meta { margin-top: 32px; color: var(--muted); }
.quote__meta strong { color: var(--ink); font-weight: 600; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__heading { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin: 14px 0 20px; }
.contact__text { color: var(--muted); font-size: 1.1rem; max-width: 420px; }
.contact__details { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; }
.contact__details a, .contact__details span { color: var(--ink); font-family: "Fraunces", serif; font-size: 1.3rem; }
.contact__details a:hover { color: var(--accent); }
.form { background: var(--paper-2); border-radius: 22px; padding: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.form__status { margin-top: 14px; min-height: 20px; font-size: 0.92rem; }
.form__status.success { color: #2c7a4b; }
.form__status.error { color: #c0392b; }

/* Footer */
.footer { padding: 80px 0 36px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { font-size: 2rem; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 320px; }
.footer__col h4 { font-family: "Inter"; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

/* Legal pages */
.legal { padding: 80px 0 100px; }
.legal__header { max-width: 760px; margin-bottom: 44px; }
.legal__header h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.03; }
.legal__updated { color: var(--muted); margin-top: 14px; }
.legal__body { max-width: 800px; }
.legal__body h2 { font-family: "Fraunces", serif; font-size: 1.6rem; margin: 42px 0 12px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal__body h2:first-of-type { border-top: none; padding-top: 0; }
.legal__body p, .legal__body li { color: var(--muted); margin-bottom: 12px; }
.legal__body ul { padding-left: 22px; margin-bottom: 12px; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--accent); }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__back { display: inline-flex; gap: 8px; margin-top: 44px; font-weight: 500; }
.legal__back:hover { color: var(--accent); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .studio__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .work__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .svc__row { grid-template-columns: 50px 1fr; }
  .svc__text { grid-column: 2; }
}
@media (max-width: 680px) {
  .nav__links {
    position: fixed; top: 80px; right: 0; height: calc(100vh - 80px); width: 78%; max-width: 320px;
    flex-direction: column; align-items: flex-start; gap: 24px; padding: 36px 30px;
    background: var(--paper-2); transform: translateX(100%); transition: transform 0.3s;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .footer__inner { grid-template-columns: 1fr; }
}
