/* Ada & Vale — styles.css — 2026-09-16 */
:root {
  --ivory: #f6f2ea; --ivory-2: #ece6da; --ink: #3b3a36; --ink-2: rgba(59, 58, 54, 0.66); --ink-3: rgba(59, 58, 54, 0.45);
  --line: rgba(59, 58, 54, 0.18); --rose: #b8776f; --rose-2: #a5655d;
  --display: "Syne", system-ui, sans-serif; --sans: "Public Sans", system-ui, sans-serif;
  --gutter: clamp(16px, 5vw, 72px); --nav-h: 66px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font: 400 15px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, figure, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.caps { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.h { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.05; }
.h1 { font-size: clamp(34px, 5vw, 68px); }
.h2 { font-size: clamp(26px, 3.2vw, 44px); }
.h3 { font-size: 15px; letter-spacing: 0.1em; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 24px; background: var(--rose); color: #fff; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s; }
.btn:hover { background: var(--rose-2); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { background: var(--ivory-2); }
.more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.more:hover { border-color: var(--ink); }
.more svg { width: 10px; height: 10px; }
.muted { color: var(--ink-2); }

/* the ruled page */
.page { border-inline: 1px solid var(--line); width: min(1300px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.rule { border-top: 1px solid var(--line); }
.cell { padding: clamp(20px, 3vw, 40px); }
.cols { display: grid; }
.cols > * { border-left: 1px solid var(--line); }
.cols > *:first-child { border-left: 0; }

/* nav */
.nav-wrap { position: fixed; inset: 0 0 auto 0; z-index: 30; background: var(--ivory); border-bottom: 1px solid var(--line); }
.nav { height: var(--nav-h); display: grid; grid-template-columns: auto 1fr auto; align-items: stretch; }
.brand { display: inline-flex; align-items: center; gap: 12px; padding: 0 clamp(16px, 2.4vw, 32px); border-right: 1px solid var(--line); font-family: var(--display); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; padding: 0 clamp(16px, 2.4vw, 32px); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--ink); }
.nav-book { display: inline-flex; align-items: center; padding: 0 clamp(16px, 2.4vw, 32px); border-left: 1px solid var(--line); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s; }
.nav-book:hover { background: var(--ivory-2); }
.nav-toggle { display: none; padding: 0 20px; border-left: 1px solid var(--line); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.sheet { position: fixed; inset: 0; z-index: 40; background: var(--ivory); display: grid; grid-template-rows: var(--nav-h) 1fr auto; padding: 0 var(--gutter) 32px; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; }
.sheet nav { align-self: center; display: grid; gap: 10px; }
.sheet nav a { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(28px, 8vw, 44px); }
.sheet p { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
main { padding-top: var(--nav-h); }

/* hero carousel */
.hero { padding: clamp(20px, 3vw, 40px); }
.carousel { position: relative; aspect-ratio: 16 / 8; overflow: hidden; background: var(--ivory-2); }
.carousel figure { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.carousel figure.is-on { opacity: 1; }
.carousel img { width: 100%; height: 100%; object-fit: cover; }
.carousel figcaption { position: absolute; left: 24px; bottom: 20px; color: #fff; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); }
.carousel-nav { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 12px; pointer-events: none; }
.carousel-nav button { pointer-events: auto; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4)); }
.carousel-nav svg { width: 22px; height: 22px; }
.dots { position: absolute; right: 24px; bottom: 22px; display: flex; gap: 8px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); }
.dots i.is-on { background: #fff; }

/* statement row */
.statements { grid-template-columns: repeat(3, 1fr); }
.statement { display: grid; gap: 18px; align-content: start; }
.statement p { color: var(--ink-2); max-width: 40ch; }
.statement .btn { justify-self: start; }

/* services */
.section-head { display: grid; gap: 12px; max-width: 60ch; }
.section-head p { color: var(--ink-2); }
.services { grid-template-columns: repeat(3, 1fr); }
.service { display: grid; gap: 12px; padding: clamp(16px, 2vw, 28px); border-top: 1px solid var(--line); }
.service:nth-child(-n+3) { border-top: 0; }
.service figure { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory-2); }
.service img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.service:hover img { transform: scale(1.03); }
.service .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.service .pin { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-2); }
.service .pin svg { width: 11px; height: 11px; }
.service .price { font-size: 13px; color: var(--ink-2); }

/* studios */
.studios { grid-template-columns: 1fr 1fr; }
.studio { position: relative; min-height: 420px; display: grid; align-items: end; padding: 28px; isolation: isolate; color: #fff; }
.studio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.studio::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(59, 58, 54, 0), rgba(59, 58, 54, 0.7)); }
.studio div { display: grid; gap: 6px; }
.studio .h2 { font-size: clamp(22px, 2.4vw, 32px); }
.studio address { font-style: normal; font-size: 13.5px; opacity: 0.9; }
.studio .btn { position: absolute; right: 28px; bottom: 28px; background: rgba(246, 242, 234, 0.9); color: var(--ink); }
.studio .btn:hover { background: var(--ivory); }

/* story splits inside the grid */
.story { grid-template-columns: 1fr 1fr; align-items: center; }
.story figure { aspect-ratio: 4 / 5; overflow: hidden; margin: clamp(20px, 3vw, 48px); }
.story img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { display: grid; gap: 20px; padding: clamp(24px, 4vw, 64px); }
.story-copy p { color: var(--ink-2); max-width: 46ch; }
.story-copy .btn { justify-self: start; }
.story.is-flipped figure { order: 2; }

/* footer */
.footer-cols { grid-template-columns: 1.4fr 1fr 1.4fr; }
.footer-cols h3 { margin-bottom: 14px; }
.footer-cols p { color: var(--ink-2); font-size: 14px; max-width: 40ch; }
.footer-cols li { margin-bottom: 8px; font-size: 14px; }
.footer-cols a:hover { color: var(--rose); }
.subscribe { display: flex; gap: 10px; }
.subscribe input { flex: 1; font: inherit; height: 46px; padding: 0 14px; border: 1px solid var(--line); background: transparent; color: var(--ink); min-width: 0; }
.legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-2); }
.legal span { display: inline-flex; gap: 20px; }
.form-status { font-size: 13px; color: var(--rose); min-height: 1em; }

/* inner pages */
.page-head { display: grid; gap: 16px; max-width: 70ch; }
.page-head p { color: var(--ink-2); font-size: 16px; }
.prices { grid-template-columns: 1fr 1fr; }
.price-list li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 1px solid var(--line); }
.price-list b { font-weight: 500; display: block; }
.price-list small { color: var(--ink-2); font-size: 13px; }
.artists { grid-template-columns: repeat(4, 1fr); }
.artist { display: grid; gap: 12px; padding: clamp(16px, 2vw, 28px); }
.artist figure { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ivory-2); }
.artist img { width: 100%; height: 100%; object-fit: cover; }
.artist p { font-size: 13.5px; color: var(--ink-2); }
.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.form input, .form select, .form textarea { font: 400 15px/1.5 var(--sans); letter-spacing: 0; text-transform: none; color: var(--ink); background: transparent; border: 1px solid var(--line); padding: 11px 12px; }
.form textarea { min-height: 110px; resize: vertical; }
.form .btn { justify-self: start; margin-top: 6px; }
.detail dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; font-size: 14.5px; }
.detail dt { color: var(--ink-3); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 3px; }

/* demo note */
.demo-note { position: fixed; left: 12px; bottom: 12px; z-index: 50; padding: 6px 10px; border-radius: 999px; background: rgba(59, 58, 54, 0.6); color: rgba(246, 242, 234, 0.75); font: 400 11px/1 var(--sans); backdrop-filter: blur(6px); }
.demo-note:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) { * { transition-duration: 0.001s !important; } html { scroll-behavior: auto; } }
@media (max-width: 960px) {
  .nav-links, .nav-book { display: none; }
  .nav-toggle { display: inline-block; }
  .nav { grid-template-columns: auto 1fr auto; }
  .statements, .services, .studios, .story, .footer-cols, .prices { grid-template-columns: 1fr; }
  .cols > * { border-left: 0; border-top: 1px solid var(--line); }
  .cols > *:first-child { border-top: 0; }
  .service:nth-child(-n+3) { border-top: 1px solid var(--line); }
  .service:first-child { border-top: 0; }
  .story.is-flipped figure { order: 0; }
  .story figure { aspect-ratio: 4 / 3; }
  .artists { grid-template-columns: 1fr 1fr; }
  .carousel { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .artists { grid-template-columns: 1fr; }
  .subscribe { flex-direction: column; }
  .studio { min-height: 320px; }
  .studio .btn { position: static; justify-self: start; margin-top: 12px; }
}
