:root {
  --ink: #111216;
  --paper: #fffafc;
  --blush: #f6e8ed;
  --rose: #d52cad;
  --coral: #f25445;
  --wine: #62494d;
  --muted: #7e7379;
  --line: rgba(98, 73, 77, 0.2);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(17, 18, 22, .94);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--display); font-size: 18px; }
.brand small { margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.site-header nav { display: flex; gap: clamp(18px, 3vw, 42px); font-size: 12px; font-weight: 600; }
.site-header nav a { position: relative; padding: 8px 0; }
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--rose), var(--coral));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(213, 44, 173, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(213, 44, 173, .3); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 11px; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link.dark { color: var(--wine); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 50% 48%; transform: scale(1.03); animation: hero-image 1.4s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-shade { background: linear-gradient(90deg, rgba(10,9,11,.85) 0%, rgba(10,9,11,.52) 43%, rgba(10,9,11,.08) 76%), linear-gradient(0deg, rgba(10,9,11,.58) 0%, transparent 40%); }
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, 76%);
  padding: 140px clamp(24px, 8vw, 128px) 10vh;
}
.eyebrow, .section-index {
  margin: 0 0 24px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero .eyebrow { color: rgba(255,255,255,.72); }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 500; line-height: .98; }
h1 { max-width: 720px; font-size: clamp(52px, 5.8vw, 88px); letter-spacing: -.045em; }
.hero-text { max-width: 480px; margin: 28px 0 32px; color: rgba(255,255,255,.82); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 72px);
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note i { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); }
@keyframes hero-image { from { transform: scale(1.09); } to { transform: scale(1.03); } }

.section-pad { padding: clamp(78px, 10vw, 150px) clamp(22px, 8vw, 128px); }
.intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; align-items: start; }
.intro h2, .section-heading h2, .order-copy h2, .faq h2 { font-size: clamp(41px, 5.3vw, 75px); letter-spacing: -.035em; }
.intro > div > p { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

.portfolio { padding-bottom: clamp(85px, 10vw, 150px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 45px; }
.section-heading h2 { max-width: 700px; }
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 32px;
}
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-filters button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.portfolio-filters button:hover { border-color: var(--rose); transform: translateY(-1px); }
.portfolio-filters button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.portfolio-controls > p { margin: 0; color: var(--muted); font-size: 10px; white-space: nowrap; }
.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  padding: 0 8px;
}
.portfolio-grid.is-loading { min-height: 32vw; place-items: center; }
.portfolio-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 56px 22px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.portfolio-state-error { color: #9b392f; }
.portfolio-noscript { display: block; color: var(--muted); text-align: center; }
.menu { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: #fffafc; }
.menu > .section-heading { padding: 0; }
.menu-intro { max-width: 500px; margin: 22px 0 38px; color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.menu-grid.is-loading { min-height: 280px; display: grid; place-items: center; background: transparent; }
.menu-state { color: var(--muted); text-align: center; }
.menu-item { min-width: 0; background: #fff; }
.menu-item img { width: 100%; aspect-ratio: 1.05; object-fit: cover; display: block; }
.menu-item > div { padding: 22px 22px 25px; }
.menu-item small { color: var(--rose); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.menu-item h3 { margin: 8px 0 7px; font-family: var(--display); font-size: clamp(23px, 2.2vw, 32px); font-weight: 500; }
.menu-item p { min-height: 42px; margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.menu-item strong { display: block; margin-bottom: 18px; color: var(--ink); font-size: 13px; }
.menu-item a { color: var(--ink); font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); }
.menu-item-featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.menu-item-featured > div { align-self: center; }
.portfolio-item {
  position: relative;
  grid-column: span 3;
  min-height: 28vw;
  overflow: hidden;
  background: var(--blush);
  animation: portfolio-in .45s cubic-bezier(.2,.8,.2,1) both;
}
.portfolio-item[hidden] { display: none; }
.portfolio-item.portfolio-featured { grid-column: span 6; grid-row: span 2; }
.portfolio-item.portfolio-wide { grid-column: span 6; min-height: 22vw; }
.portfolio-grid.is-filtered .portfolio-item { grid-column: span 6; grid-row: auto; min-height: 38vw; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.portfolio-item:hover img { transform: scale(1.035); }
.portfolio-item > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 50px 22px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.68));
  color: #fff;
}
.portfolio-item small { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.portfolio-item strong { font-family: var(--display); font-size: 20px; font-weight: 500; }
@keyframes portfolio-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; background: var(--ink); color: #fff; }
.section-index.light { color: rgba(255,255,255,.48); }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process h2 { max-width: 550px; font-size: clamp(44px, 5.6vw, 78px); letter-spacing: -.04em; }
.process-intro > p:last-child { max-width: 480px; margin: 30px 0 0; color: #aaa3a7; line-height: 1.7; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li > span { color: var(--coral); font-size: 10px; font-weight: 700; }
.process-list strong { font-family: var(--display); font-size: 29px; font-weight: 500; }
.process-list p { margin: 8px 0 0; color: #aaa3a7; font-size: 13px; line-height: 1.5; }

.order-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; background: var(--blush); }
.order-copy { position: sticky; top: 110px; }
.order-copy h2 { max-width: 560px; }
.order-copy > p:not(.section-index) { max-width: 500px; margin: 28px 0; color: var(--muted); line-height: 1.7; }
.contact-note { display: grid; gap: 5px; margin-top: 42px; }
.contact-note span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-note a { width: max-content; font-family: var(--display); font-size: 24px; }
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 14px; padding: clamp(22px, 4vw, 48px); background: var(--paper); }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--wine); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); }
.consent { display: flex; align-items: start; gap: 10px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--rose); }
.order-form .button { margin-top: 6px; }
.form-status { min-height: 18px; margin: -10px 0 0; color: #9b392f; font-size: 11px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 44px 25px 0; font-family: var(--display); font-size: 21px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; color: var(--rose); font-family: var(--sans); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 680px; margin: -8px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.final-cta { position: relative; min-height: 72svh; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.final-cta > img, .final-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; }
.final-shade { background: rgba(10,9,11,.58); }
.final-cta > div:last-child { position: relative; z-index: 2; padding: 30px; }
.final-cta p { margin: 0 0 15px; font-size: 12px; letter-spacing: .06em; }
.final-cta h2 { margin-bottom: 30px; font-size: clamp(54px, 8vw, 112px); letter-spacing: -.05em; }

footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding: 46px clamp(22px, 6vw, 90px); background: var(--ink); color: #fff; }
footer p { color: #aaa3a7; font-size: 11px; text-align: center; }
footer > div { display: flex; gap: 18px; font-size: 11px; font-weight: 700; }
footer > small { grid-column: 1 / -1; color: #777176; font-size: 9px; }
.mobile-whatsapp { display: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; padding: 10px 16px; }
  .site-header nav, .site-header > .button { display: none; }
  .brand img { width: 43px; height: 43px; }
  .hero { min-height: 92svh; }
  .hero-image { object-position: 57% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,9,11,.85) 0%, rgba(10,9,11,.42) 60%, rgba(10,9,11,.15)); }
  .hero-copy { width: 100%; padding: 120px 22px 14vh; }
  h1 { max-width: 520px; font-size: clamp(49px, 15vw, 72px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-note { right: auto; left: 22px; bottom: 20px; }
  .section-pad { padding: 78px 20px; }
  .intro, .process, .order-section, .faq { grid-template-columns: 1fr; gap: 42px; }
  .intro > div > p { font-size: 15px; }
  .section-heading { align-items: start; flex-direction: column; padding-bottom: 30px; }
  .portfolio-controls { align-items: start; flex-direction: column; gap: 15px; padding-bottom: 24px; }
  .menu { padding-top: 80px; padding-bottom: 80px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-item-featured { grid-column: 1 / -1; }
  .portfolio-filters {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .portfolio-filters::-webkit-scrollbar { display: none; }
  .portfolio-filters button { flex: 0 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 4px; padding: 0 4px; }
  .portfolio-grid.is-loading { min-height: 72vw; }
  .portfolio-item, .portfolio-grid.is-filtered .portfolio-item { grid-column: span 1; min-height: 64vw; }
  .portfolio-item.portfolio-featured, .portfolio-item.portfolio-wide { grid-column: 1 / -1; grid-row: auto; min-height: 98vw; }
  .portfolio-grid.is-filtered .portfolio-item.portfolio-featured,
  .portfolio-grid.is-filtered .portfolio-item.portfolio-wide { grid-column: span 1; min-height: 64vw; }
  .portfolio-item > span { padding: 42px 13px 14px; }
  .portfolio-item strong { font-size: 16px; }
  .process-intro, .order-copy { position: static; }
  .process-list strong { font-size: 25px; }
  .order-form { grid-template-columns: 1fr; padding: 27px 18px; }
  .field-wide { grid-column: auto; }
  .faq summary { font-size: 19px; }
  .final-cta { min-height: 70svh; }
  footer { grid-template-columns: 1fr; text-align: left; padding: 42px 22px; }
  footer p { text-align: left; }
  footer > small { grid-column: auto; }
  .mobile-whatsapp {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(0,0,0,.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
