:root {
  --ink: #110f0f;
  --muted: rgba(17, 15, 15, 0.68);
  --line: rgba(17, 15, 15, 0.12);
  --paper: #ffffff;
  --soft: #f5f3ef;
  --charcoal: #1d1d1f;
  --accent: #d6aa64;
  --accent-strong: #ad762c;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(17, 15, 15, 0.12);
  --max: 1512px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  height: 66px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 162px;
}

.brand-mark {
  width: 34px;
  height: auto;
}

.brand-wordmark {
  width: 133px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(29, 29, 31, 0.8);
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: rgba(17, 15, 15, 0.06);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--charcoal);
  color: #fff;
  padding-inline: 18px;
}

.site-nav .nav-cta:hover {
  background: #000;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: #24c35a;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(36, 195, 90, 0.28);
}

.section,
.section-tight {
  width: min(calc(100% - 120px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-head.centered {
  text-align: center;
  justify-items: center;
}

.section-head.compact {
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

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

h1 {
  color: #fff;
  font-size: clamp(58px, 7.3vw, 118px);
  line-height: 0.92;
  font-weight: 700;
}

h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.02;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  line-height: 1.16;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--charcoal);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 860px;
  width: min(calc(100% - 40px), var(--max));
  margin: 96px auto 0;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(250deg, rgba(0, 0, 0, 0) -16%, rgba(0, 0, 0, 0.82) 88%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 42px;
  padding: clamp(30px, 5vw, 78px);
}

.hero-copy {
  max-width: 820px;
  display: grid;
  gap: 22px;
  padding-bottom: 14px;
}

.hero-text {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quick-form,
.estimate-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quick-form h2 {
  font-size: 20px;
  line-height: 1.25;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(209, 209, 209, 0.8);
  border-radius: 10px;
  background: rgba(237, 237, 237, 0.22);
  padding: 0 14px;
  color: var(--ink);
  outline: none;
}

textarea {
  height: 120px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(214, 170, 100, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  min-height: 156px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  background: #fff;
  text-align: center;
}

.stat strong {
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
}

.stat span {
  color: var(--muted);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 16px;
  align-items: center;
}

.partner-strip img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.process-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px;
  font-size: 20px;
}

.estimation {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.estimate-art {
  min-height: 680px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
}

.estimate-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estimate-form {
  box-shadow: none;
  padding: clamp(24px, 3.2vw, 42px);
}

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

.personal-details {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.personal-details > p {
  font-weight: 700;
}

.estimate-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 12px;
  background: var(--soft);
}

.estimate-result span {
  color: var(--muted);
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.project-feature img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 24px;
}

.project-feature div {
  display: grid;
  gap: 14px;
  padding-bottom: 12px;
}

.project-feature p,
.project-card p {
  color: var(--muted);
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: var(--radius);
}

.project-card h3 {
  font-size: 20px;
}

.gallery-strip,
.tour-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.gallery-strip img,
.tour-strip img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
}

.testimonials {
  width: 100%;
  max-width: none;
  padding-inline: max(60px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(rgba(17, 15, 15, 0.76), rgba(17, 15, 15, 0.72)), url("testimonial-bg.png") center/cover;
  color: #fff;
}

.testimonials .eyebrow {
  color: var(--accent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.testimonial blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.36;
}

.testimonial figcaption {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.testimonial strong {
  color: #fff;
}

.packages {
  position: relative;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.package-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: var(--charcoal);
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.78) 100%);
}

.package-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card h3,
.package-card span,
.package-card strong {
  position: relative;
  z-index: 1;
}

.package-card strong {
  font-size: 38px;
}

.package-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.package-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.package-row:last-child {
  border-bottom: 0;
}

.package-row > * {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.package-row > *:last-child {
  border-right: 0;
}

.package-row span {
  font-weight: 700;
}

.package-row p {
  color: var(--muted);
  line-height: 1.45;
}

.package-heading {
  background: var(--soft);
}

.tour {
  width: 100%;
  max-width: none;
  padding-inline: max(60px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: #fff;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.6fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.tour-copy {
  display: grid;
  gap: 24px;
}

.tour-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  line-height: 1.55;
}

.tour-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tour-media video {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
  border-radius: var(--radius);
  background: #000;
}

.tour-strip {
  grid-template-columns: repeat(4, 1fr);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.about-images {
  position: sticky;
  top: 100px;
  min-height: 680px;
}

.about-images img:first-child {
  width: 74%;
  aspect-ratio: 0.68;
  object-fit: cover;
  border-radius: 24px;
}

.about-images img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  aspect-ratio: 0.75;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy .lead {
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.32;
  color: var(--ink);
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion button {
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.accordion button::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft);
}

.accordion button[aria-expanded="true"]::after {
  content: "−";
}

.accordion div {
  display: grid;
  gap: 14px;
  padding: 0 0 22px;
}

.footer {
  background: var(--charcoal);
  color: #fff;
}

.contact-panel {
  width: min(calc(100% - 120px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.6fr) minmax(0, 1fr);
  gap: 20px;
  padding-top: 90px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-info h2 {
  font-size: 24px;
}

.contact-info p {
  line-height: 1.45;
}

.contact-info a {
  color: var(--ink);
  text-decoration: underline;
}

.contact-panel iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.2);
}

.footer-main {
  width: min(calc(100% - 120px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 76px 0;
}

.footer-main img {
  width: 170px;
}

.footer-main p {
  max-width: 900px;
  color: #fff;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.45;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.socials a,
.socials span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
}

.credits {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.credits a {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

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

  .hero-content,
  .estimation,
  .project-feature,
  .about,
  .tour-layout,
  .contact-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .quick-form {
    max-width: 460px;
  }

  .service-grid,
  .project-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-images {
    position: relative;
    top: 0;
    min-height: 540px;
  }

  .footer-main {
    justify-items: center;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding-inline: 20px;
  }

  .brand-wordmark {
    width: 118px;
  }

  .hero {
    width: calc(100% - 40px);
    margin-top: 88px;
    border-radius: 16px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding: 28px;
    padding-top: 300px;
  }

  .hero-actions,
  .form-row {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .section,
  .section-tight,
  .contact-panel,
  .footer-main {
    width: calc(100% - 40px);
  }

  .section {
    padding: 76px 0;
  }

  .stats,
  .partner-strip,
  .process-grid,
  .service-grid,
  .project-grid,
  .testimonial-grid,
  .package-grid,
  .gallery-strip,
  .tour-strip,
  .tour-media {
    grid-template-columns: 1fr;
  }

  .partner-strip {
    grid-template-columns: 1fr 1fr;
  }

  .project-feature {
    gap: 18px;
  }

  .testimonials,
  .tour {
    padding-inline: 20px;
  }

  .package-row {
    grid-template-columns: 1fr;
  }

  .package-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-row > *:last-child {
    border-bottom: 0;
  }

  .about-images {
    min-height: 440px;
  }

  .contact-panel {
    padding-top: 60px;
  }

  .footer-main {
    padding: 54px 0;
  }

  .credits {
    flex-direction: column;
    gap: 6px;
  }
}
