* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ivory: #fff9f3;
  --cream: #fff2e5;
  --blush: #f6c8c8;
  --rose: #d98b8b;
  --champagne: #e8d3b0;
  --cocoa: #3a2a24;
  --muted: rgba(58, 42, 36, 0.68);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(58, 42, 36, 0.16);
  --soft-shadow: 0 14px 38px rgba(58, 42, 36, 0.1);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(246, 200, 200, 0.45), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(232, 211, 176, 0.35), transparent 25%),
    var(--ivory);
  color: var(--cocoa);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

button {
  font-family: inherit;
}

.container {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(58, 42, 36, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 42, 36, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.nav-container {
  height: 76px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(58, 42, 36, 0.08);
  border: 1px solid rgba(58, 42, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
  line-height: 0.9;
}

.logo span {
  display: block;
  margin-top: 6px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  opacity: 0.55;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.95rem;
  opacity: 0.72;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--rose);
}

.nav-cta {
  background: var(--cocoa);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--rose);
}

section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 200, 200, 0.58);
  border: 1px solid rgba(217, 139, 139, 0.18);
  color: var(--cocoa);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-heading h2,
.experience-copy h2,
.final-cta-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.section-heading p,
.experience-copy p,
.final-cta-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(217, 139, 139, 0.32);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(217, 139, 139, 0.42);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(58, 42, 36, 0.12);
  color: var(--cocoa);
}

.btn.secondary:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.7rem, 8.8vw, 7.7rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}

.hero-content p {
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons.center {
  justify-content: center;
}

.hero-mini {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mini div {
  min-width: 128px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(58, 42, 36, 0.08);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.hero-mini strong {
  display: block;
  font-size: 1.05rem;
}

.hero-mini span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-collage {
  position: relative;
  height: 640px;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.8;
}

.blob-one {
  width: 330px;
  height: 330px;
  background: rgba(246, 200, 200, 0.72);
  top: 20px;
  right: 60px;
}

.blob-two {
  width: 260px;
  height: 260px;
  background: rgba(232, 211, 176, 0.72);
  bottom: 40px;
  left: 60px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow);
  background: var(--champagne);
  border: 8px solid rgba(255, 249, 243, 0.72);
}

.hero-photo img {
  height: 100%;
}

.photo-main {
  width: 68%;
  height: 470px;
  top: 40px;
  right: 0;
}

.photo-small-one {
  width: 47%;
  height: 320px;
  left: 0;
  bottom: 70px;
}

.photo-small-two {
  width: 34%;
  height: 230px;
  right: 14%;
  bottom: 0;
  border-width: 10px;
}

.float-one {
  animation: floatOne 7s ease-in-out infinite;
}

.float-two {
  animation: floatTwo 8s ease-in-out infinite;
}

.float-three {
  animation: floatThree 6.5s ease-in-out infinite;
}

@keyframes floatOne {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes floatTwo {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(16px) rotate(1deg);
  }
}

@keyframes floatThree {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

.floating-card {
  position: absolute;
  right: 8px;
  bottom: 105px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(58, 42, 36, 0.1);
  border-radius: 22px;
  padding: 17px 20px;
  box-shadow: var(--soft-shadow);
  animation: cardPulse 4s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.floating-card strong {
  display: block;
  font-size: 1rem;
}

@keyframes cardPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

.sessions {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 242, 229, 0.72));
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.session-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(58, 42, 36, 0.08);
  box-shadow: 0 12px 32px rgba(58, 42, 36, 0.055);
  display: flex;
  align-items: flex-end;
  transition: 0.3s ease;
}

.session-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.session-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 42, 36, 0.55), rgba(58, 42, 36, 0.02));
  opacity: 0;
  transition: 0.35s ease;
}

.session-card div {
  position: relative;
  z-index: 2;
}

.session-card span {
  display: inline-block;
  color: var(--rose);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.session-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.session-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.session-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(58, 42, 36, 0.13);
}

.session-card:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.session-card:hover::after {
  opacity: 1;
}

.session-card:hover h3,
.session-card:hover p,
.session-card:hover span {
  color: white;
}

.booking-strip {
  padding: 70px 0;
}

.booking-strip-inner {
  background: var(--cocoa);
  color: white;
  border-radius: var(--radius-xl);
  padding: 46px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.booking-strip-inner p {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.booking-strip-inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.booking-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-strip .btn.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(58, 42, 36, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
}

.gallery-image-wrap {
  height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--champagne);
}

.gallery-image-wrap img {
  height: 100%;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.gallery-info {
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 200, 200, 0.75), transparent 45%),
    var(--cream);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-info span,
.gallery-info h3,
.gallery-info p {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gallery-text-out {
  opacity: 0;
  transform: translateY(10px);
}

.gallery-text-in {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info span {
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.gallery-info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.gallery-info p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
  margin-bottom: 30px;
}

.gallery-link {
  width: fit-content;
  font-weight: 900;
  color: var(--rose);
  border-bottom: 2px solid currentColor;
  padding-bottom: 5px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(58, 42, 36, 0.88);
  color: white;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(58, 42, 36, 0.18);
  transition: 0.25s ease;
}

.gallery-arrow:hover {
  background: var(--rose);
  transform: translateY(-50%) scale(1.07);
}

.gallery-arrow.left {
  left: 14px;
}

.gallery-arrow.right {
  right: 14px;
}

.experience {
  background:
    linear-gradient(180deg, rgba(255, 242, 229, 0.58), rgba(255, 255, 255, 0.58));
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.experience-copy p {
  margin-bottom: 28px;
}

.steps {
  display: grid;
  gap: 18px;
}

.step-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(58, 42, 36, 0.08);
  box-shadow: var(--soft-shadow);
  border-radius: 30px;
  padding: 30px;
  transition: 0.25s ease;
}

.step-card:hover {
  transform: translateX(8px);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--blush);
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

.image-break {
  padding: 40px 0 110px;
}

.image-break-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 18px;
  align-items: center;
}

.image-break-grid img {
  height: 360px;
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
}

.image-break-grid img:nth-child(2) {
  height: 460px;
}

.reviews {
  background: rgba(255, 255, 255, 0.72);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--ivory);
  border: 1px solid rgba(58, 42, 36, 0.08);
  box-shadow: var(--soft-shadow);
  transition: 0.25s ease;
}

.review-card:hover {
  transform: translateY(-7px);
}

.stars {
  color: var(--rose);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-card p {
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}

.review-card strong {
  font-size: 0.95rem;
}

.final-cta {
  padding-bottom: 90px;
}

.final-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 48px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cocoa);
}

.cta-bg-photo {
  position: absolute;
  inset: 0;
}

.cta-bg-photo img {
  height: 100%;
  opacity: 0.32;
  transform: scale(1.08);
  animation: slowZoom 13s ease-in-out infinite alternate;
}

.final-cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(246, 200, 200, 0.35), transparent 40%),
    linear-gradient(to top, rgba(58, 42, 36, 0.7), rgba(58, 42, 36, 0.24));
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px;
  color: white;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
}

.final-cta-content .section-kicker {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.final-cta .btn.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.13);
  }
}

footer {
  padding: 28px 0 120px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(58, 42, 36, 0.55);
  font-size: 0.92rem;
}

.footer-inner a {
  font-weight: 800;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact a {
  color: rgba(58, 42, 36, 0.72);
  transition: 0.25s ease;
}

.footer-contact a:hover {
  color: var(--rose);
}

.atlas-whitelabel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(58, 42, 36, 0.1);
  text-align: center;
  color: rgba(58, 42, 36, 0.58);
  font-size: 0.86rem;
  line-height: 1.7;
}

.atlas-whitelabel strong {
  color: var(--cocoa);
  font-weight: 900;
}

.atlas-whitelabel a {
  font-weight: 800;
  color: rgba(58, 42, 36, 0.74);
  transition: 0.25s ease;
}

.atlas-whitelabel a:hover {
  color: var(--rose);
}

.mobile-booking-bar {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(58, 42, 36, 0.1);
  box-shadow: 0 18px 45px rgba(58, 42, 36, 0.22);
  gap: 9px;
}

.mobile-booking-bar a {
  flex: 1;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.93rem;
}

.mobile-booking-bar a:first-child {
  background: var(--rose);
  color: white;
}

.mobile-booking-bar a:last-child {
  background: white;
  color: var(--cocoa);
}

@media (max-width: 1020px) {
  .hero-grid,
  .experience-grid,
  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-collage {
    height: 580px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .session-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-image-wrap {
    height: 540px;
  }

  .gallery-info {
    min-height: 300px;
  }

  .booking-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 780px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(246, 200, 200, 0.38), transparent 34%),
      radial-gradient(circle at 90% 10%, rgba(232, 211, 176, 0.28), transparent 25%),
      var(--ivory);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    top: 10px;
  }

  .nav-container {
    width: 94%;
    height: 68px;
    padding: 0 14px;
  }

  .nav-cta {
    padding: 11px 17px;
  }

  section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading p,
  .experience-copy p,
  .final-cta-content p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 72px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-content h1 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
    line-height: 0.86;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons,
  .booking-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-mini {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-mini div {
    width: 100%;
  }

  .hero-collage {
    height: 470px;
  }

  .photo-main {
    width: 78%;
    height: 340px;
    top: 18px;
  }

  .photo-small-one {
    width: 56%;
    height: 230px;
    bottom: 52px;
  }

  .photo-small-two {
    width: 42%;
    height: 170px;
    right: 4%;
  }

  .floating-card {
    right: 0;
    bottom: 80px;
    padding: 14px 16px;
  }

  .session-grid {
    grid-template-columns: 1fr;
  }

  .session-card {
    min-height: 190px;
  }

  .session-card img {
    opacity: 0.26;
  }

  .session-card::after {
    opacity: 0.12;
  }

  .booking-strip {
    padding: 42px 0;
  }

  .booking-strip-inner {
    padding: 34px 26px;
    border-radius: 34px;
  }

  .gallery-shell {
    padding: 18px;
    border-radius: 34px;
    gap: 18px;
  }

  .gallery-image-wrap {
    height: 410px;
    border-radius: 26px;
  }

  .gallery-info {
    border-radius: 26px;
    padding: 30px;
    min-height: auto;
  }

  .gallery-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .gallery-arrow.left {
    left: 6px;
  }

  .gallery-arrow.right {
    right: 6px;
  }

  .experience-grid {
    gap: 34px;
  }

  .step-card {
    padding: 25px;
  }

  .step-card:hover {
    transform: translateY(-4px);
  }

  .image-break {
    padding: 28px 0 82px;
  }

  .image-break-grid {
    grid-template-columns: 1fr;
  }

  .image-break-grid img,
  .image-break-grid img:nth-child(2) {
    height: 320px;
  }

  .review-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-booking-bar {
    display: flex;
  }
}

@media (max-width: 460px) {
  .container {
    width: 92%;
  }

  .page-noise {
    opacity: 0.03;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo span {
    font-size: 0.5rem;
  }

  .nav-cta {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  section {
    padding: 74px 0;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.68rem;
    padding: 8px 12px;
    letter-spacing: 0.1em;
  }

  .section-heading h2,
  .experience-copy h2,
  .final-cta-content h2 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero {
    padding-top: 118px;
  }

  .hero-content h1 {
    margin-bottom: 22px;
  }

  .hero-collage {
    height: 430px;
  }

  .hero-photo {
    border-width: 6px;
    border-radius: 28px;
  }

  .photo-main {
    height: 310px;
  }

  .photo-small-one {
    height: 205px;
  }

  .photo-small-two {
    height: 150px;
  }

  .floating-card {
    display: none;
  }

  .booking-strip-inner {
    padding: 32px 24px;
    border-radius: 34px;
  }

  .gallery-image-wrap {
    height: 360px;
  }

  .gallery-info {
    padding: 26px;
  }

  .gallery-info h3 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .final-cta-box {
    min-height: 520px;
    border-radius: 34px;
  }

  .final-cta-content {
    padding: 28px;
  }

  footer {
    padding-bottom: 115px;
  }

  .atlas-whitelabel {
    font-size: 0.8rem;
  }

  .mobile-booking-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.photo-cover-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 50px;
}

.photo-cover-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
}

.photo-cover-grid img:first-child {
  object-fit: contain;
  object-position: center top;
  background: #f7efe7;
}

.photo-cover-grid img:nth-child(1) {
  grid-row: span 2;
}

.photo-cover-grid img:nth-child(3) {
  grid-column: span 2;
}

.photo-cover-grid img:nth-child(5) {
  grid-column: span 2;
}

@media (max-width: 780px) {
  .photo-cover-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .photo-cover-grid img:nth-child(1),
  .photo-cover-grid img:nth-child(3),
  .photo-cover-grid img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}
/* =========================
   MARIU PHOTOS FINAL FIXES
========================= */

/* Session cards always visible */
.session-card img {
  opacity: 1 !important;
  object-fit: cover;
}

.session-card::after {
  opacity: 1 !important;
  background: linear-gradient(
    to top,
    rgba(58, 42, 36, 0.72),
    rgba(58, 42, 36, 0.18)
  ) !important;
}

.session-card span,
.session-card h3,
.session-card p {
  color: white !important;
}

/* Desktop crops */

.session-business img {
  object-position: center 35%;
}

.session-fifteens img {
  object-position: 35% center;
}

.session-baby img {
  object-position: center center;
}

.session-family img {
  object-position: center center;
}

.session-couples img {
  object-position: center center;
}

.session-kids img {
  object-position: center center;
}

.session-maternity img {
  object-position: center center;
}

.session-birthday img {
  object-position: center center;
}

/* CTA image */

.cta-bg-photo img {
  opacity: 0.42;
  object-position: center 38%;
}

/* Mobile */

@media (max-width:780px){

  body{
    padding-bottom:95px;
  }

  .nav-container{
    height:64px;
  }

  .hero{
    padding-top:112px;
  }

  .hero-collage{
    height:460px;
  }

  .photo-main{
    width:82%;
    height:330px;
    top:0;
  }

  .photo-small-one{
    width:58%;
    height:225px;
    bottom:58px;
  }

  .photo-small-two{
    width:42%;
    height:165px;
  }

  .session-grid{
    gap:18px;
  }

  .session-card{
    min-height:245px;
    padding:24px;
  }

  .session-card h3{
    font-size:2rem;
  }

  .session-card p{
    font-size:1rem;
    max-width:90%;
  }

  /* image crop fixes */

  .session-business img{
    object-position:center 24%;
  }

  .session-fifteens img{
    object-position:28% center;
  }

  .session-birthday img{
    object-position:center 34%;
  }

  .session-baby img{
    object-position:center center;
  }

  .session-family img{
    object-position:center 30%;
  }

  /* stop giant image stacking */

  .image-break-grid img,
  .image-break-grid img:nth-child(2){
    height:280px;
    object-fit:cover;
  }

  .final-cta-box{
    min-height:600px;
  }

  .cta-bg-photo img{
    opacity:0.45;
  }

  /* smaller sticky bar */

  .mobile-booking-bar{
    left:14px;
    right:14px;
    bottom:14px;
    padding:8px;
  }

  .mobile-booking-bar a{
    min-height:46px;
    font-size:.9rem;
  }
}

@media (max-width:460px){

  .session-card{
    min-height:255px;
  }

  .session-business img{
    object-position:center 22%;
  }

  .session-fifteens img{
    object-position:25% center;
  }

  .mobile-booking-bar{
    transform:scale(.95);
    transform-origin:bottom center;
  }
}
/* =========================
   WHATSAPP CTA STYLES
========================= */

.whatsapp-btn {
  background: #25D366 !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
  gap: 10px;
}

.whatsapp-btn:hover {
  background: #1ebe5d !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn i {
  font-size: 1.15rem;
}

/* Header button */

.nav-cta.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366 !important;
  color: white !important;
}

.nav-cta.whatsapp-btn:hover {
  background: #1ebe5d !important;
}

/* Hero + CTA buttons */

.hero-buttons .whatsapp-btn,
.booking-buttons .whatsapp-btn,
.final-cta .whatsapp-btn {
  min-width: 230px;
}

/* Secondary call button */

.btn.secondary {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(58,42,36,.12);
  color: var(--cocoa);
}

.btn.secondary:hover {
  background: white;
}

/* Mobile bar */

.mobile-whatsapp {
  background: #25D366 !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-whatsapp i {
  font-size: 1rem;
}

/* Footer WhatsApp link */

.footer-contact a[href*="wa.me"] {
  color: #25D366;
  font-weight: 800;
}

.footer-contact a[href*="wa.me"]:hover {
  color: #1ebe5d;
}

/* Small screens */

@media (max-width: 780px) {

  .hero-buttons .whatsapp-btn,
  .booking-buttons .whatsapp-btn,
  .final-cta .whatsapp-btn {
    width: 100%;
    min-width: 100%;
  }

  .nav-cta.whatsapp-btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }

  .nav-cta.whatsapp-btn i {
    margin-right: 4px;
  }
}
/* =========================
   ABOUT SECTION
========================= */

.about {
  padding: 120px 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.72),
      rgba(255,242,229,.55)
    );
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.05em;
  margin-bottom: 24px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-copy .hero-buttons {
  margin-top: 30px;
}

.about-image {
  height: 700px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* =========================
   TRUST SECTION FEEL
========================= */

.about-copy::before {
  content: "Fotógrafa Profesional";
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* =========================
   WHATSAPP BUTTON POLISH
========================= */

.whatsapp-btn {
  background: #25D366 !important;
  color: white !important;
  border: none;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(37,211,102,.30);
}

.whatsapp-btn:hover {
  background: #1ebe5d !important;
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(37,211,102,.40);
}

.whatsapp-btn i {
  font-size: 1.15rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1020px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 550px;
    order: -1;
  }
}

@media (max-width: 780px) {

  .about {
    padding: 90px 0;
  }

  .about-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-image {
    height: 450px;
    border-radius: 30px;
  }
}

@media (max-width: 460px) {

  .about-image {
    height: 380px;
  }

  .about-copy h2 {
    font-size: 3rem;
  }
}
.pricing-highlight {
  margin-top: 30px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(58,42,36,.08);
  border-radius: 24px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--soft-shadow);
}

.pricing-highlight strong {
  display: block;
  font-size: 1.2rem;
  color: var(--cocoa);
  margin-bottom: 4px;
}

.pricing-highlight span {
  color: var(--muted);
}

.pricing-link {
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: .25s ease;
}

.pricing-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

@media (max-width:780px) {
  .pricing-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-link {
    width: 100%;
    text-align: center;
  }
}