/* Premium interior pages: services, pricing, about, contact. Static, monochrome, glass-led. */

.premium-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.052), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(255,255,255,.036), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.034), transparent 32%),
    var(--ink);
}

.premium-page main {
  position: relative;
  overflow: hidden;
}

.premium-page .eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 18px rgba(255,255,255,.24);
}

.page-hero {
  min-height: 84vh;
  padding-top: clamp(140px, 16vw, 210px);
  padding-bottom: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  position: relative;
}

.page-hero::before {
  content: attr(data-watermark);
  position: absolute;
  right: max(14px, 4vw);
  bottom: 4%;
  z-index: 0;
  color: rgba(244,245,240,.025);
  font-family: var(--serif);
  font-size: clamp(82px, 13vw, 220px);
  font-style: italic;
  letter-spacing: -.13em;
  line-height: 1;
  pointer-events: none;
}

.page-hero-copy,
.page-hero-visual {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8.8vw, 132px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.075em;
}

.page-hero h1 em,
.interior-heading h2 em,
.split-heading h2 em {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}

.page-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: #b5b7b0;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.75;
}

.page-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-visual {
  min-height: 520px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.orbit-mark {
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 30px auto;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.11), rgba(255,255,255,.024) 48%, rgba(0,0,0,.18));
  box-shadow: inset 0 0 76px rgba(255,255,255,.024), 0 28px 82px rgba(0,0,0,.32);
}

.orbit-mark::before,
.orbit-mark::after,
.orbit-mark span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.115);
  border-radius: 50%;
}

.orbit-mark::before { inset: 16% 0; }
.orbit-mark::after { inset: 0 30%; }
.orbit-mark span:nth-child(1) { inset: 8%; transform: rotate(42deg); }
.orbit-mark span:nth-child(2) { inset: 30% 0; }
.orbit-mark strong {
  position: relative;
  z-index: 2;
  color: rgba(244,245,240,.78);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 78px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.19em;
  margin-left: -.12em;
}

.hero-note-card {
  width: min(100%, 300px);
  align-self: flex-end;
  padding: 18px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(8,8,8,.74);
  box-shadow: 0 24px 70px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.07);
}

.hero-note-card span,
.hero-note-card small {
  display: block;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-note-card strong {
  display: block;
  margin: 9px 0 3px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.interior-section {
  padding-block: clamp(72px, 10vw, 136px);
}

.interior-heading,
.split-heading {
  margin-bottom: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
}

.interior-heading h2,
.split-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.055em;
}

.interior-heading p,
.split-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.detail-grid,
.price-grid,
.values-grid,
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-card,
.price-card,
.value-card,
.contact-card,
.note-card,
.faq-card,
.form-panel,
.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-card,
.price-card,
.value-card,
.contact-card,
.note-card,
.faq-card {
  min-height: 270px;
  padding: 26px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}

.detail-card:hover,
.price-card:hover,
.value-card:hover,
.contact-card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.086), rgba(255,255,255,.026));
}

.card-index,
.price-label,
.contact-label {
  display: block;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.detail-card h3,
.price-card h3,
.value-card h3,
.contact-card h3,
.faq-card h3,
.story-panel h2,
.form-panel h2 {
  margin: 42px 0 15px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.detail-card p,
.price-card p,
.value-card p,
.contact-card p,
.faq-card p,
.story-panel p,
.form-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.card-tags,
.price-list,
.contact-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span,
.price-list span,
.contact-list span {
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: rgba(244,245,240,.72);
  background: rgba(255,255,255,.025);
  font-size: 10px;
  letter-spacing: .05em;
}

.process-strip,
.quote-strip,
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.022);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.052), 0 16px 50px rgba(0,0,0,.2);
}

.process-step,
.quote-factor,
.about-stat {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line-soft);
}

.process-step:last-child,
.quote-factor:last-child,
.about-stat:last-child { border-right: 0; }

.process-step span,
.quote-factor span,
.about-stat span {
  display: block;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.process-step h3,
.quote-factor h3,
.about-stat strong {
  margin: 52px 0 14px;
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.process-step p,
.quote-factor p,
.about-stat small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 16px;
}

.story-panel {
  min-height: 470px;
  padding: clamp(30px, 5vw, 58px);
}

.story-panel h2 { margin-top: 0; }
.story-panel p { max-width: 720px; font-size: 15px; }
.story-panel p + p { margin-top: 20px; }
.story-panel.is-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 22%, rgba(255,255,255,.09), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
}
.story-panel .large-mark {
  color: rgba(244,245,240,.08);
  font-family: var(--serif);
  font-size: clamp(110px, 15vw, 230px);
  font-style: italic;
  letter-spacing: -.2em;
  margin-left: -.12em;
}

.price-card.is-featured {
  border-color: rgba(255,255,255,.2);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.09), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.026));
}

.price-card .price-mode {
  margin: 28px 0 0;
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.price-card h3 { margin-top: 24px; }
.price-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.note-card {
  min-height: auto;
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.note-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.note-card p { margin: 0; color: var(--muted); line-height: 1.8; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: start;
}

.contact-method-grid {
  grid-template-columns: 1fr;
}

.contact-card {
  min-height: auto;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  background: rgba(255,255,255,.028);
  color: rgba(244,245,240,.78);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 25px;
}

.contact-card p,
.contact-card a,
.contact-card span {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.55;
}

.contact-card a:hover { color: var(--white); }

.form-panel {
  padding: clamp(28px, 4vw, 44px);
}
.form-panel h2 { margin-top: 0; }
.form-panel p { max-width: 560px; margin-bottom: 28px; }

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.055);
}

.contact-form select option { background: #080808; color: var(--white); }
.form-note {
  margin: 6px 0 0;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.6;
}
.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-card { min-height: 250px; }
.faq-card h3 { margin-top: 35px; font-size: 29px; }

.final-panel {
  padding: clamp(50px, 8vw, 98px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.075), transparent 33%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
}

.final-panel::after {
  content: "NW";
  position: absolute;
  right: -1%;
  bottom: -20%;
  z-index: 0;
  color: rgba(244,245,240,.03);
  font-family: var(--serif);
  font-size: clamp(210px, 32vw, 480px);
  font-style: italic;
  letter-spacing: -.2em;
  pointer-events: none;
}

.final-panel > * {
  position: relative;
  z-index: 1;
}

.final-panel h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.055em;
}

.final-panel p:not(.section-kicker) {
  max-width: 620px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.page-footer-spacer { padding-bottom: clamp(48px, 6vw, 80px); }

@media (max-width: 1100px) {
  .page-hero,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .page-hero { min-height: auto; }
  .page-hero-visual { max-width: 680px; }
  .detail-grid,
  .price-grid,
  .values-grid,
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-strip,
  .quote-strip,
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(2),
  .quote-factor:nth-child(2),
  .about-stat:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2),
  .quote-factor:nth-child(-n+2),
  .about-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 820px) {
  .page-hero {
    padding-top: 118px;
    gap: 34px;
  }
  .page-hero::before { display: none; }
  .page-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: .95;
  }
  .page-lede { margin-top: 24px; font-size: 16px; }
  .page-hero-visual {
    min-height: 330px;
    padding: 20px;
    border-radius: 26px;
  }
  .orbit-mark { width: min(78vw, 280px); margin: 12px auto; }
  .hero-note-card { width: 230px; padding: 14px; }
  .hero-note-card strong { font-size: 27px; }
  .interior-heading,
  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }
  .detail-grid,
  .price-grid,
  .values-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .detail-card,
  .price-card,
  .value-card,
  .faq-card { min-height: 240px; padding: 24px; }
  .detail-card h3,
  .price-card h3,
  .value-card h3 { font-size: 34px; }
  .note-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 46px; height: 46px; }
}

@media (max-width: 580px) {
  .page-hero { padding-top: 106px; padding-bottom: 64px; }
  .page-hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .page-actions { flex-direction: column; }
  .page-actions .button { width: 100%; }
  .page-hero-visual { min-height: 292px; }
  .orbit-mark { width: min(74vw, 235px); }
  .orbit-mark strong { font-size: 50px; }
  .hero-note-card { align-self: stretch; width: 100%; }
  .interior-section { padding-block: 62px; }
  .interior-heading h2,
  .split-heading h2,
  .final-panel h2 { font-size: clamp(40px, 12.5vw, 58px); }
  .process-strip,
  .quote-strip,
  .about-stats { grid-template-columns: 1fr; }
  .process-step,
  .quote-factor,
  .about-stat,
  .process-step:nth-child(2),
  .quote-factor:nth-child(2),
  .about-stat:nth-child(2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .process-step:last-child,
  .quote-factor:last-child,
  .about-stat:last-child { border-bottom: 0; }
  .process-step h3,
  .quote-factor h3,
  .about-stat strong { margin-top: 38px; }
  .story-panel { min-height: 360px; padding: 28px 22px; }
  .story-panel .large-mark { font-size: 116px; }
  .contact-card { padding: 20px; }
  .form-panel { padding: 24px 18px; }
  .final-panel { padding: 42px 22px; border-radius: 24px; }
  .final-panel::after { font-size: 220px; bottom: -14%; }
}

@media (prefers-reduced-motion: reduce) {
  .detail-card,
  .price-card,
  .value-card,
  .contact-card,
  .faq-card { transition: none !important; }
  .detail-card:hover,
  .price-card:hover,
  .value-card:hover,
  .contact-card:hover,
  .faq-card:hover { transform: none; }
}
