:root {
  --cream: #f8f4ee;
  --white: #ffffff;
  --black: #161311;
  --text: #403a36;
  --muted: #7a716b;
  --gold: #b9925a;
  --gold-dark: #936f3e;
  --line: rgba(22, 19, 17, 0.12);
  --green: #25d366;
  --shadow: 0 24px 70px rgba(24, 20, 16, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: .3s ease;
}

.header.scrolled {
  background: rgba(18, 15, 13, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  color: #f3d7ad;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
  font-size: .95rem;
}

.nav-links a {
  opacity: .9;
}

.nav-links a:hover {
  opacity: 1;
  color: #f1d09e;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  padding: 10px 18px;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
  display: block;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  background:
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1900&q=90")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,12,10,.88) 0%, rgba(14,12,10,.65) 45%, rgba(14,12,10,.25) 100%),
    linear-gradient(0deg, rgba(14,12,10,.55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 95px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  color: #f3d2a4;
  margin-bottom: 20px;
}

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

.eyebrow.light {
  color: #eac998;
}

.hero h1,
.section h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  color: var(--black);
}

.hero h1 {
  color: white;
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.035em;
}

.hero h1 em {
  color: #e8c68f;
  font-weight: 600;
}

.hero-content > p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.04);
}

.btn-dark {
  color: white;
  background: var(--black);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  margin-top: 70px;
  display: flex;
  gap: 50px;
}

.hero-badges div {
  display: flex;
  flex-direction: column;
}

.hero-badges strong {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #f0cf9d;
}

.hero-badges span {
  color: rgba(255,255,255,.72);
  font-size: .85rem;
}

.trust-strip {
  background: #171310;
  color: #d9d0c8;
  padding: 18px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  font-size: .9rem;
}

.section {
  padding: 110px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.about-gallery {
  position: relative;
  min-height: 610px;
}

.about-main {
  width: 78%;
  height: 540px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-small {
  position: absolute;
  width: 48%;
  height: 270px;
  right: 0;
  bottom: 0;
  border: 10px solid var(--cream);
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  left: 8%;
  bottom: 18px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow);
}

.experience-card strong {
  font: 700 2rem "Playfair Display", serif;
  color: #e7c28e;
}

.experience-card span {
  width: 110px;
  font-size: .78rem;
  line-height: 1.3;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  letter-spacing: -.025em;
}

.section-copy > p {
  color: var(--muted);
  margin-top: 20px;
}

.features {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.feature > span {
  color: var(--gold);
  font-size: 1.35rem;
}

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

.feature p {
  color: var(--muted);
  font-size: .93rem;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-dark);
  font-weight: 700;
  border-bottom: 1px solid #c8a776;
}

.events {
  background: #eee7dc;
}

.section-heading {
  margin-bottom: 48px;
  max-width: 760px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading > p {
  color: var(--muted);
  margin-top: 16px;
}

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

.event-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26,20,16,.08);
}

.event-card img {
  height: 320px;
  transition: transform .5s ease;
}

.event-card:hover img {
  transform: scale(1.035);
}

.event-card-content {
  padding: 28px;
}

.event-card-content > span {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
}

.event-card h3 {
  margin-top: 7px;
  font: 700 1.55rem "Playfair Display", serif;
  color: var(--black);
}

.event-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  grid-template-rows: 260px 300px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
}

.g1 { grid-row: 1 / 3; }
.g2 { grid-column: 2; grid-row: 1; }
.g3 { grid-column: 3; grid-row: 1; }
.g4 { grid-column: 2; grid-row: 2; }
.g5 { grid-column: 3; grid-row: 2; }

.gallery-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.gallery-note p {
  color: var(--muted);
  max-width: 640px;
}

.testimonials {
  background: #171310;
  color: white;
}

.testimonials h2 {
  color: white;
}

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

.testimonial {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  padding: 30px;
}

.stars {
  color: #e0b779;
  letter-spacing: .12em;
}

.testimonial > p {
  margin: 22px 0 26px;
  color: rgba(255,255,255,.78);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e0b779;
  color: #171310;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.person div:last-child {
  display: flex;
  flex-direction: column;
}

.person span {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

.contact {
  background: #f3eee6;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy > p {
  margin-top: 20px;
  color: var(--muted);
}

.contact-info {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.contact-info > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.contact-info span {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.contact-info p {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: .92rem;
}

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

.quote-form {
  background: white;
  padding: 38px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--black);
  font-size: .88rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd4c8;
  border-radius: 6px;
  background: #fbfaf8;
  color: var(--black);
  padding: 13px 14px;
  outline: none;
  transition: .2s;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,146,90,.12);
}

.quote-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: var(--muted);
}

.footer {
  background: #0f0d0b;
  color: #c9c0b7;
  padding: 65px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid p {
  max-width: 330px;
}

.footer-grid strong {
  color: white;
  margin-bottom: 7px;
}

.footer-grid a:hover {
  color: #e5bd83;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 45px;
  padding-top: 22px;
  font-size: .82rem;
  color: #8f8780;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 40;
  transition: .2s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
    z-index: 55;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(15,13,11,.98);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .event-card img {
    height: 100%;
    min-height: 240px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .g1 { grid-column: 1; grid-row: 1 / 3; }
  .g2 { grid-column: 2; grid-row: 1; }
  .g3 { grid-column: 2; grid-row: 2; }
  .g4 { grid-column: 1; grid-row: 3; }
  .g5 { grid-column: 2; grid-row: 3; }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-badges {
    gap: 24px;
    justify-content: space-between;
  }

  .hero-badges strong {
    font-size: 1.35rem;
  }

  .hero-badges span {
    font-size: .72rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-gallery {
    min-height: 510px;
  }

  .about-main {
    width: 88%;
    height: 430px;
  }

  .about-small {
    width: 56%;
    height: 220px;
  }

  .experience-card {
    width: 125px;
    height: 125px;
    left: 4%;
  }

  .event-card {
    display: block;
  }

  .event-card img {
    height: 280px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid img {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 260px;
  }

  .gallery-note {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-note .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 24px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
