:root {
  --ink: #181512;
  --muted: #6f6962;
  --paper: #fbfaf6;
  --soft: #eee7de;
  --olive: #59684b;
  --gold: #b57a3c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand,
.nav,
.hero-actions,
.header-actions,
.language-switch,
.footer,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 64px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.36);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.36));
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
}

.nav {
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
}

.nav a,
.header-cta,
.social-link {
  opacity: 0.94;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 0.92rem;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #171410;
}

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

.hero-image {
  object-fit: cover;
  object-position: 64% center;
  background: #171410;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.56) 43%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(24, 21, 18, 0.84), rgba(24, 21, 18, 0.16) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 150px clamp(20px, 6vw, 72px) 76px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 800;
}

.button.primary {
  color: #16120f;
  background: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 72px);
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fffdf9;
}

.brand-showcase img {
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 8px;
}

.brand-showcase p:last-child {
  max-width: 680px;
  font-size: 1.08rem;
}

.intro,
.process,
.partner,
.booking-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.intro p:last-child,
.partner p {
  font-size: 1.08rem;
}

.photo-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px clamp(20px, 6vw, 72px);
  background: #ded3c7;
}

.photo-trust div {
  min-height: 136px;
  padding: 28px;
  background: #fffaf3;
}

.photo-trust strong,
.photo-trust span {
  display: block;
}

.photo-trust strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.02rem;
}

.photo-trust span {
  color: var(--muted);
  line-height: 1.55;
}

.occasions {
  background: #f3ece3;
}

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

.occasion-grid article {
  min-height: 238px;
  border-radius: 8px;
  padding: 25px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(24, 21, 18, 0.08);
}

.occasion-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #2f3527;
  background: #e8eedf;
  font-size: 0.78rem;
  font-weight: 900;
}

.occasion-grid h3 {
  max-width: 330px;
}

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

.gallery {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 0;
  cursor: zoom-in;
  background: var(--soft);
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  font-weight: 800;
}

.services-band {
  background: #24231e;
  color: var(--white);
}

.services-band p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-grid article,
.steps article {
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.service-grid article {
  min-height: 214px;
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 21, 18, 0.08);
}

.booking-cta {
  background: #fffaf3;
}

.booking-cta .button.primary {
  margin-top: 12px;
  color: var(--white);
  background: var(--olive);
}

.booking-list {
  display: grid;
  gap: 14px;
}

.booking-list article {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 21, 18, 0.08);
}

.booking-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.booking-list p {
  margin-bottom: 0;
}

.partner {
  background: var(--soft);
}

.gift-gallery-section {
  display: block;
}

.gift-copy {
  max-width: 860px;
  margin-bottom: 30px;
}

.partner .button.primary {
  justify-self: end;
  color: var(--white);
  background: var(--olive);
}

.gift-preview {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.gift-preview-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gift-preview-grid img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  border-radius: 8px;
  object-fit: contain;
  background: #fffaf3;
  box-shadow: 0 14px 38px rgba(24, 21, 18, 0.12);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 72px);
  color: var(--white);
  background: #151310;
}

.footer a {
  color: #f3c893;
  font-weight: 800;
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 18px 13px 15px;
  color: var(--white);
  background: #1f9d58;
  box-shadow: 0 18px 45px rgba(13, 94, 51, 0.34);
  font-weight: 900;
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 130px;
  }

  .intro,
  .brand-showcase,
  .process,
  .partner,
  .booking-cta,
  .photo-trust,
  .occasion-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .photo-trust {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .partner .button.primary {
    justify-self: start;
  }

  .gift-preview-grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 38px;
  }

  .social-link {
    position: fixed;
    z-index: 40;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.64);
    background: var(--white);
  }

  .social-link svg {
    width: 17px;
    height: 17px;
  }

  .hero-image {
    object-position: 66% center;
    opacity: 0.7;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-content {
    width: 100vw;
    max-width: 100vw;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content h1,
  .hero-content p {
    max-width: min(calc(100vw - 60px), 330px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 270px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
