:root {
  --ink: #111310;
  --deep: #18231e;
  --green: #234233;
  --gold: #d7aa47;
  --gold-soft: #f1d997;
  --paper: #f8f7f1;
  --white: #ffffff;
  --muted: #6f756e;
  --line: rgba(215, 170, 71, 0.24);
  --shadow: 0 24px 80px rgba(9, 12, 10, 0.22);
  --hero-scroll-height: 430vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  width: 100%;
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.76), rgba(8, 10, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}

.brand > span {
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(215, 170, 71, 0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cinzel", serif;
  font-size: 16px;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.brand .brand-location {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(241, 217, 151, 0.34);
  color: var(--white);
  background: rgba(5, 6, 5, 0.14);
  cursor: pointer;
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

body.nav-open {
  overflow: hidden;
}

.nav-links a:hover,
.header-call:hover {
  color: var(--gold-soft);
}

.header-call {
  border: 1px solid rgba(241, 217, 151, 0.54);
  padding: 12px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.scroll-hero {
  height: var(--hero-scroll-height);
  background: #050605;
}

.about-hero {
  height: var(--hero-scroll-height);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#idolCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 44%, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.92) 0%, rgba(5, 6, 5, 0.68) 34%, rgba(5, 6, 5, 0.12) 76%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.54), rgba(5, 6, 5, 0.04) 44%, rgba(5, 6, 5, 0.7));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, calc(100% - 36px));
  min-height: 100%;
  margin-left: clamp(18px, 8vw, 112px);
  padding-top: 72px;
  transition: opacity 500ms ease;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 9vw, 120px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  line-height: 1.75;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: 0.98;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.page-hero,
.inner-hero {
  position: relative;
  padding: clamp(96px, 12vw, 164px) clamp(18px, 6vw, 86px) clamp(56px, 7vw, 94px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 66, 51, 0.96), rgba(17, 19, 16, 0.98)),
    var(--deep);
  overflow: hidden;
}

.page-hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(241, 217, 151, 0.12), transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.page-hero-inner,
.inner-hero-inner {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.page-hero h1,
.inner-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 96px);
}

.page-hero p,
.inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 2vw, 20px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.btn.primary {
  color: #17130a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 42px rgba(215, 170, 71, 0.24);
}

.btn.ghost {
  border-color: rgba(241, 217, 151, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn.ghost.dark {
  border-color: rgba(241, 217, 151, 0.28);
  color: #315e4a;
  background: #4e3737;
}

.btn.whatsapp {
  color: var(--white);
  background: var(--green);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.scroll-cue span {
  width: 1px;
  height: 28px;
  background: rgba(241, 217, 151, 0.72);
  box-shadow: 0 0 0 1px rgba(241, 217, 151, 0.22);
  animation: cue-pulse 1.8s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes cue-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.intro-band,
.service-section,
.history-section,
.appointment-section,
.contact-section,
.about-trust-section,
.faq-section,
.page-cta,
.legal-page {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 6vw, 86px);
}

.section-grid,
.appointment-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section-grid > *,
.appointment-section > *,
.contact-section > *,
.history-panel,
.service-grid article,
.metrics div,
.owner-card,
.appointment-form {
  min-width: 0;
}

.intro-band {
  background: var(--paper);
}

.intro-copy {
  max-width: 760px;
  color: #343a35;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.metrics div,
.service-grid article,
.owner-card,
.appointment-form {
  border: 1px solid rgba(35, 66, 51, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(17, 19, 16, 0.06);
}

.metrics div {
  padding: 24px;
}

.metrics strong {
  display: block;
  color: var(--green);
  font-family: "Cinzel", serif;
  font-size: 36px;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.service-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 66, 51, 0.96), rgba(17, 19, 16, 0.98)),
    var(--deep);
}

#services {
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(241, 217, 151, 0.18);
  box-shadow: none;
}

.service-grid p {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.service-icon {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 28px;
}

.history-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(248, 247, 241, 0.96), rgba(248, 247, 241, 0.84)),
    url("assets/frames/frame_000150.jpg") center / cover fixed;
}

.history-panel {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 58px);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.history-panel p:not(.eyebrow) {
  color: #343a35;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.history-story,
.history-trust {
  min-height: 100%;
}

.history-story {
  justify-content: flex-start;
}

.history-trust {
  gap: 18px;
}

.founder-quote {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(35, 66, 51, 0.12);
  color: #263129;
}

.founder-quote p {
  margin: 0 0 12px;
  color: #263129;
  font-family: "Cinzel", serif;
  font-size: 24px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.founder-quote cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(35, 66, 51, 0.1);
}

.trust-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.trust-list strong {
  display: block;
  color: var(--green);
  font-family: "Cinzel", serif;
  font-size: 20px;
}

.trust-list span {
  display: block;
  margin-top: 8px;
  color: #4c544e;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.appointment-section {
  background: #fbfbf7;
}

.appointment-copy {
  position: sticky;
  top: 110px;
}

.appointment-copy > p {
  color: #4c544e;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.owner-card {
  display: grid;
  gap: 8px;
  max-width: 390px;
  margin-top: 30px;
  padding: 24px;
}

.owner-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.owner-card strong {
  font-family: "Cinzel", serif;
  font-size: 24px;
}

.owner-card a {
  color: var(--green);
  font-weight: 800;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  display: grid;
  gap: 9px;
  color: #263129;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(35, 66, 51, 0.18);
  border-radius: 0;
  padding: 14px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 170, 71, 0.54);
  outline-offset: 2px;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.contact-section {
  align-items: center;
  color: var(--white);
  background: #111310;
}

address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.page-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 66, 51, 0.96), rgba(17, 19, 16, 0.98)),
    var(--deep);
}

.page-cta-inner {
  display: grid;
  gap: 18px;
  width: min(960px, 100%);
}

.legal-page {
  background: var(--paper);
}

.legal-container {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(35, 66, 51, 0.12);
}

.legal-heading {
  margin-bottom: 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
}

.legal-subsection {
  margin-top: 26px;
}

.legal-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.legal-list li {
  line-height: 1.7;
}

.legal-notice {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.contact-information {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(35, 66, 51, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-information strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Cinzel", serif;
  font-size: 24px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
}

.faq-item {
  border: 1px solid rgba(35, 66, 51, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(17, 19, 16, 0.05);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-index {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 700;
}

.faq-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #4c544e;
  opacity: 0;
  transition: max-height 320ms ease, opacity 260ms ease, padding 260ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  padding: 0 20px 20px;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.62);
  background: #080908;
  font-size: 13px;
}

.site-footer > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer h3,
.site-footer strong {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.site-footer a {
  color: inherit;
}

.site-footer a,
.site-footer span,
.site-footer strong {
  overflow-wrap: anywhere;
}

.site-footer nav,
.site-footer .footer-links {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.site-footer .footer-contact {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.site-footer,
.legal-page,
.contact-information,
.faq-section,
.faq-answer,
.faq-title,
.intro-copy,
.appointment-copy,
.history-panel,
.service-grid,
.service-grid article,
.hero-copy,
.page-hero-inner,
.inner-hero-inner {
  min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-cue span {
    animation: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --hero-scroll-height: 360vh;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    z-index: 21;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(241, 217, 151, 0.18);
    background: rgba(8, 10, 9, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-call {
    display: none;
  }

  .section-grid,
  .appointment-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-section {
    grid-template-columns: 1fr;
  }

  .appointment-copy {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-actions .btn.whatsapp {
    position: fixed;
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 19;
    width: auto;
    max-width: calc(100vw - 32px);
    margin: 0;
    box-shadow: 0 18px 42px rgba(35, 66, 51, 0.28);
  }
}

@media (max-width: 480px) {
  .intro-band,
  .service-section,
  .history-section,
  .appointment-section,
  .contact-section,
  .about-trust-section,
  .faq-section,
  .page-cta,
  .legal-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    width: min(650px, calc(100% - 32px));
    margin-left: 16px;
  }

  .hero-actions .btn {
    min-height: 46px;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-scroll-height: 320vh;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero-sticky {
    min-height: 680px;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5, 6, 5, 0.26), rgba(5, 6, 5, 0.42)),
      linear-gradient(90deg, rgba(5, 6, 5, 0.72), rgba(5, 6, 5, 0.08));
  }

  .hero-copy {
    justify-content: flex-end;
    margin-left: 18px;
    padding-bottom: 108px;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 15vw, 56px);
    line-height: 0.96;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 30rem;
    font-size: clamp(15px, 4.3vw, 18px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .intro-band .metrics {
    grid-template-columns: 1fr;
  }

  .intro-band .metrics div {
    width: 100%;
  }

  .intro-band .metrics strong {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.05;
  }

  .intro-band .metrics span {
    overflow-wrap: anywhere;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
