: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);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-loading .hero-copy,
body.is-loading .scroll-cue {
  opacity: 0;
}

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

.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:100;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,0));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.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: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: 430vh;
  background: #050605;
}

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

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

.hero-vignette{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.55) 30%,
        rgba(0,0,0,.08) 65%,
        rgba(0,0,0,.15) 100%
    );
}
.hero-copy{
    position:absolute;
    left:7%;
    top:50%;
    transform:translateY(-50%);
    width:520px;
    max-width:90%;
    z-index:10;
}

.hero-copy h1{
    font-family:"Cinzel",serif;
    font-size:clamp(48px,5vw,78px);
    line-height:0.95;
    font-weight:600;
    letter-spacing:-1px;
    margin-bottom:28px;
    color:#fff;
    text-shadow:0 8px 40px rgba(0,0,0,.45);
}

.hero-copy p:not(.eyebrow){
    font-size:18px;
    line-height:1.8;
    max-width:470px;
    color:rgba(255,255,255,.85);
    margin-bottom:30px;
}

.hero-actions{
    margin-top:30px;
}
.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 {
  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(320px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

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

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

.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);
}

.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);
}

.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;
}

.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;
}

.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;
}

.appointment-section {
  background: #fbfbf7;
}

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

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

.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;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.62);
  background: #080908;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    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;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .header-call {
    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: 116px;
  }

  .scroll-cue {
    bottom: 176px;
  }

  h1 {
    font-size: 58px;
  }

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

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

  .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
@media(max-width:1500px){

.hero-copy{

left:60px;

width:470px;

}

.hero-copy h1{

font-size:64px;

}

}
@media(max-width:1000px){

.hero-copy{

left:40px;

top:55%;

width:420px;

}

.hero-copy h1{

font-size:52px;

}

}
@media(max-width:768px){

.hero-copy{

position:absolute;

left:24px;

right:24px;

top:auto;

bottom:80px;

transform:none;

width:auto;

}

.hero-copy h1{

font-size:42px;

line-height:1;

}

.hero-copy p{

font-size:16px;

}

.hero-actions{

flex-direction:column;

}

.hero-actions .btn{

width:100%;

}

}