:root {
  --ink: #111;
  --muted: #68635d;
  --paper: #f4f1ea;
  --surface: #fff;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #8d7a5d;
  --accent-dark: #4c4031;
  --sage: #7f8376;
  --night: #111;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1240px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: rgba(244, 241, 234, 0.78);
  color: var(--ink);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 180px;
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-dark);
  font-family: "Playfair Display", Georgia, serif;
}

.nav {
  gap: 4px;
}

.nav a {
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 700;
}

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

.nav .nav-cta {
  background: var(--ink);
  color: #fff;
}

.nav .nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 98vh;
  align-items: end;
  overflow: hidden;
  padding: 144px max(24px, calc((100vw - 1240px) / 2)) 46px;
  color: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(244, 241, 234, 0.9), rgba(244, 241, 234, 0.42) 42%, rgba(244, 241, 234, 0.04));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

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

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 116px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
}

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

.hero-copy {
  max-width: 520px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 19px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 30px;
}

.hero-proof span {
  min-height: 88px;
  padding: 14px;
  border-left: 2px solid var(--ink);
  background: rgba(244, 241, 234, 0.68);
  color: rgba(17, 17, 17, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  text-transform: none;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

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

.button.secondary {
  border-color: rgba(17, 17, 17, 0.22);
  color: var(--ink);
}

.hero-panel {
  justify-self: end;
  width: min(320px, 100%);
  margin-top: 46px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  background: rgba(244, 241, 234, 0.72);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small,
.package-card span,
.stats span {
  display: block;
}

.hero-panel span,
.hero-panel small {
  color: rgba(17, 17, 17, 0.62);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.15;
}

section {
  padding: 104px max(24px, calc((100vw - 1240px) / 2));
}

.awards-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: end;
  padding-top: 62px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.awards-section .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.awards-intro h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 56px);
}

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

.awards-grid article {
  min-height: 170px;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.awards-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.9;
}

.awards-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.awards-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1040px);
  justify-self: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.awards-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #242424;
}

.awards-gallery img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.awards-gallery figure:hover img {
  transform: scale(1.025);
}

.awards-gallery figcaption {
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.same-day-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
  background: #ded8cd;
}

.same-day-copy {
  display: grid;
  align-content: center;
}

.same-day-copy h2 {
  max-width: 620px;
}

.same-day-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.same-day-copy .button {
  justify-self: start;
  margin-top: 14px;
}

.same-day-video {
  overflow: hidden;
  border-radius: 0;
  background: #111;
  box-shadow: var(--shadow);
  justify-self: end;
  width: min(760px, 100%);
}

.same-day-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 430px;
  object-fit: cover;
  background: #111;
}

.intro-section,
.experience-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 118px;
}

.feature-grid,
.package-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.package-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(28, 25, 22, 0.06);
}

.feature-grid article {
  min-height: 250px;
  padding: 24px;
}

.feature-grid span {
  color: var(--sage);
  font-weight: 800;
}

.feature-grid p,
.experience-copy p,
.contact-copy p,
.package-card p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.contact-details a {
  color: var(--accent-dark);
}

.portfolio-section {
  background: var(--night);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  background: #fff;
  color: var(--night);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #2c3135;
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 5;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(3),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6) {
  grid-column: span 7;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--night);
  font-size: 13px;
  font-weight: 800;
}

.gallery figure.hidden {
  display: none;
}

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

.album-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #2c3135;
  color: #fff;
  cursor: pointer;
}

.album-card.hidden {
  display: none;
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.album-card:hover img {
  transform: scale(1.04);
}

.album-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.08) 62%);
}

.album-info {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.album-info span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-info h3 {
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.album-info p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.album-info strong {
  font-size: 13px;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  overflow: auto;
  padding: 24px;
  background: rgba(12, 13, 14, 0.88);
}

.lightbox.open {
  display: block;
}

.lightbox-panel {
  min-height: calc(100vh - 48px);
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.lightbox-close {
  position: sticky;
  z-index: 1;
  top: 0;
  float: right;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.lightbox-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.lightbox-heading h2 {
  margin-bottom: 8px;
}

.lightbox-heading span {
  color: var(--muted);
  font-weight: 800;
}

.lightbox-story {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #ddd;
}

.experience-section {
  align-items: center;
}

.experience-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stats span {
  min-height: 108px;
  padding: 16px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
}

.stats strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.packages-section {
  background: #ebe2d6;
}

.section-heading.compact {
  display: block;
  max-width: 680px;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.package-card {
  display: grid;
  min-height: 310px;
  align-content: space-between;
  padding: 26px;
}

.package-card span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.featured {
  background: var(--night);
  color: #fff;
  transform: translateY(-16px);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.package-card a {
  font-weight: 900;
  color: var(--accent-dark);
}

.package-card.featured a {
  color: #f3b2a6;
}

.contact-section {
  background: var(--surface);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f5ef;
  color: var(--ink);
  font: inherit;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - 1120px) / 2));
  background: var(--night);
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #101010;
  color: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.22);
  font-size: 14px;
  font-weight: 900;
}

.site-footer span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 28px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
    background: rgba(244, 241, 234, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    text-align: center;
  }

  .intro-section,
  .experience-section,
  .contact-section,
  .feature-grid,
  .package-grid,
  .album-grid,
  .awards-section,
  .awards-grid,
  .same-day-section,
  .stats {
    grid-template-columns: 1fr;
  }

  .same-day-copy .button {
    justify-self: stretch;
  }

  .intro-copy {
    position: static;
  }

  .feature-grid article {
    min-height: auto;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 92vh;
    padding-top: 122px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading {
    display: block;
  }

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

  .awards-gallery {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
  }

  .awards-gallery img {
    height: 170px;
  }

  .gallery figure,
  .gallery figure:nth-child(n) {
    grid-column: 1;
    min-height: 310px;
  }

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

  .lightbox {
    padding: 10px;
  }

  .lightbox-panel {
    min-height: calc(100vh - 20px);
    padding: 18px;
  }

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

@media (max-width: 480px) {
  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 132px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .hero-panel {
    padding: 16px;
  }
}
