:root {
  --black: #111111;
  --charcoal: #24211d;
  --text: #3d3933;
  --muted: #81786e;
  --paper: #fffdf8;
  --cream: #f5f0e7;
  --stone: #e7ded0;
  --gold: #b98a3c;
  --gold-light: #d8bd7a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-bottom: 1px solid rgba(185, 138, 60, 0.22);
  background: rgba(255, 253, 248, 0.94);
  color: var(--black);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(132px, 12vw, 180px);
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.scrolled .brand-logo-light,
.site-header.menu-active .brand-logo-light {
  display: none;
}

.site-header.scrolled .brand-logo-dark,
.site-header.menu-active .brand-logo-dark {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.54));
}

.hero-content {
  align-self: end;
  width: min(1320px, calc(100% - 40px));
  margin: 0 0 clamp(30px, 4.5vw, 58px) clamp(20px, 6vw, 96px);
}

.hero-locations {
  display: inline-block;
  max-width: min(900px, 100%);
  color: #e6c681;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  word-spacing: 0.16em;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 1320px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 4.9vw, 5.6rem);
  line-height: 0.98;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 26px;
  color: var(--black);
  font-size: clamp(2.4rem, 5.2vw, 5.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-content .hero-benefit {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid currentColor;
  padding: 0 26px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.button-light {
  color: var(--white);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.86);
}

.button-dark {
  color: var(--black);
}

.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 11vw, 150px) 0;
  scroll-margin-top: 106px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
}

.split-media img {
  height: min(760px, 72vw);
  object-fit: cover;
  object-position: center;
}

.split-copy p,
.section-heading p,
.contact-copy p,
.whatsapp-cta p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

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

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--stone);
}

.service-card,
.why-grid article {
  min-height: 270px;
  background: var(--paper);
  padding: 34px 28px;
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.service-card p,
.why-grid p,
.package-card p,
.package-card li {
  color: var(--muted);
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.service-showcase img {
  height: clamp(300px, 34vw, 520px);
  object-fit: cover;
}

.service-showcase img:nth-child(2) {
  margin-top: clamp(28px, 5vw, 72px);
}

.service-showcase img:nth-child(3) {
  margin-top: clamp(56px, 8vw, 118px);
}

.packages {
  background: var(--cream);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border: 1px solid var(--stone);
  background: rgba(255, 255, 255, 0.72);
  padding: 38px 30px;
}

.package-card.featured {
  border-color: var(--gold);
  background: var(--paper);
}

.package-card h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.label {
  margin-bottom: 16px;
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.package-fit {
  margin-top: -4px;
  font-size: 0.95rem;
}

.package-card li::before {
  color: var(--gold);
  content: "✓ ";
}

.package-card .button {
  margin-top: auto;
}

.image-band {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  scroll-margin-top: 106px;
}

.image-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.image-band-content {
  position: relative;
  display: grid;
  width: min(1040px, calc(100% - 40px));
  min-height: 82svh;
  margin: 0 auto;
  place-items: center;
  text-align: center;
}

.image-band-content h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
}

.image-band-content p:not(.eyebrow) {
  max-width: 840px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.image-band h2,
.whatsapp-cta h2 {
  color: var(--white);
}

.why .section-heading {
  margin-bottom: 44px;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(62px, 8vw, 96px) clamp(20px, 7vw, 104px);
  background: var(--charcoal);
  color: var(--white);
}

.whatsapp-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.contact-photo {
  height: clamp(260px, 32vw, 430px);
  margin-bottom: 42px;
  object-fit: cover;
}

.contact-links {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-links p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-links strong {
  color: var(--black);
}

.contact-links a {
  color: var(--black);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--stone);
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--stone);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  padding: 12px 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--gold);
  outline: 0;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--stone);
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
}

.footer-logo {
  width: min(260px, 70vw);
  height: auto;
}

.footer p {
  max-width: 680px;
  margin: 8px 0 0;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    border: 1px solid var(--stone);
    background: var(--paper);
    color: var(--black);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-bottom: 1px solid var(--stone);
    padding: 16px 8px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

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

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

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

  .service-showcase img:nth-child(2),
  .service-showcase img:nth-child(3) {
    margin-top: 0;
  }

  .service-showcase img:nth-child(3) {
    grid-column: 1 / -1;
  }

  .whatsapp-cta {
    display: grid;
  }
}

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

  .brand-logo {
    width: 128px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 54px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 2.9rem);
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .split-media img {
    height: auto;
  }

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

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

  .service-showcase img:nth-child(3) {
    grid-column: auto;
  }

  .service-showcase img {
    height: 320px;
  }

  .contact-photo {
    height: 260px;
  }

  .package-card {
    min-height: auto;
  }
}
