:root {
  --brown: #332114;
  --brown-2: #5a3a22;
  --gold: #c8a45d;
  --gold-2: #f0d695;
  --beige: #f3eadb;
  --cream: #fffaf1;
  --white: #ffffff;
  --ink: #211811;
  --muted: #75695e;
  --line: rgba(90, 58, 34, 0.16);
  --shadow: 0 24px 70px rgba(35, 22, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(37, 24, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(240, 214, 149, 0.7);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 700;
}

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

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

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

.header-call {
  padding: 10px 16px;
  color: var(--brown);
  background: var(--gold-2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 16, 9, 0.9), rgba(54, 35, 20, 0.48), rgba(26, 16, 9, 0.25)),
    linear-gradient(0deg, rgba(26, 16, 9, 0.76), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) 12vh;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 9vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold-2);
}

.hero-content > p:not(.eyebrow) {
  width: min(630px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.1vw, 21px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--brown);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(200, 164, 93, 0.28);
}

.btn-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: var(--cream);
  background: var(--brown);
}

.trust-strip div {
  padding: 26px clamp(18px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(72px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.section-copy,
.contact-copy {
  max-width: 620px;
}

h2 {
  margin-bottom: 18px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--brown);
  line-height: 1.2;
}

.section-copy p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brown);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.image-stack {
  position: relative;
  min-height: 500px;
}

.main-img {
  width: 88%;
  height: 500px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-panel {
  position: absolute;
  left: 0;
  bottom: 36px;
  max-width: 280px;
  padding: 22px;
  color: var(--brown);
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-panel strong,
.mini-panel span {
  display: block;
}

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

.service-section,
.testimonials {
  background: var(--beige);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.service-card,
.package-card,
blockquote,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(51, 33, 20, 0.06);
}

.service-card {
  min-height: 218px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 93, 0.58);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.service-card p,
.package-card li,
blockquote p,
.form-note {
  color: var(--muted);
}

.packages {
  color: var(--white);
  background:
    linear-gradient(rgba(51, 33, 20, 0.9), rgba(51, 33, 20, 0.92)),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.packages h2 {
  color: var(--white);
}

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

.package-card {
  padding: 28px;
  background: rgba(255, 250, 241, 0.94);
}

.package-card.featured {
  border-color: var(--gold);
  transform: translateY(-14px);
}

.package-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.package-card h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.package-card ul {
  min-height: 116px;
  margin: 0 0 26px;
  padding-left: 18px;
}

.package-card a {
  display: inline-flex;
  color: var(--brown);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  font-size: 18px;
}

cite {
  color: var(--brown);
  font-weight: 900;
  font-style: normal;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  padding-bottom: 12px;
  color: var(--brown);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--brown);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(90, 58, 34, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(200, 164, 93, 0.22);
  border-color: var(--gold);
}

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

.booking-form .btn {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  text-align: center;
  font-size: 14px;
}

.map-section {
  height: 420px;
  background: var(--beige);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--brown);
}

.site-footer strong {
  color: var(--gold-2);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-actions a {
  color: var(--white);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(35, 22, 12, 0.24);
}

.float-call {
  background: var(--gold-2);
}

.float-whatsapp {
  color: var(--white) !important;
  background: #1fa463;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .header-call {
    display: none;
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(51, 33, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-bottom: 9vh;
  }

  .trust-strip,
  .split,
  .contact-section,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .package-card.featured {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }

  .image-stack {
    min-height: auto;
  }

  .main-img {
    width: 100%;
    height: 420px;
  }
}

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

  .brand strong {
    max-width: 180px;
    font-size: 14px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: 44px;
  }

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

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-column: auto;
  }

  .main-img {
    height: 340px;
  }

  .mini-panel {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -46px 16px 0;
  }

  .site-footer {
    display: grid;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 52px;
    height: 52px;
  }
}

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

  .reveal,
  .btn,
  .service-card {
    transition: none;
  }
}
