/* ============================================
   Mono's Wedding - Pixel Perfect Styles
   Fonts: Libre Caslon Display, Monsieur La Doulaise
   ============================================ */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #fcf8f5;
}

body {
  font-family: 'Libre Caslon Display', serif;
  color: #373737;
  background: #fcf8f5;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

ul, ol {
  list-style: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(55, 55, 55, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.header-logo img {
  width: 75px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 54px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-links a {
  font-size: 20px;
  color: rgba(252, 248, 245, 0.5);
  transition: color 0.3s;
  font-family: 'Libre Caslon Display', serif;
}

.header-links a:hover,
.header-links a.active {
  color: #fcf8f5;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  background: rgba(255, 245, 235, 0.3);
  color: #fcf8f5;
  font-size: 22px;
  font-family: 'Libre Caslon Display', serif;
  transition: background 0.3s;
}

.header-btn:hover {
  background: rgba(255, 245, 235, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fcf8f5;
  border-radius: 1px;
}

/* Mobile Menu Overlay (Megamenu) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #b5896b;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-logo {
  width: 99px;
  height: 63px;
  object-fit: contain;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}

.mobile-menu-links a {
  font-size: 28px;
  color: #fcf8f5;
  font-family: 'Libre Caslon Display', serif;
  transition: opacity 0.3s;
}

.mobile-menu-links a:hover {
  opacity: 0.8;
}

.mobile-menu-rsvp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background: rgba(252, 248, 245, 0.3);
  color: #fcf8f5;
  font-size: 28px;
  font-family: 'Libre Caslon Display', serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 20px;
}

.mobile-menu-rsvp:hover {
  background: rgba(252, 248, 245, 0.45);
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #fcf8f5;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  background: #fff5eb;
  color: #373737;
  font-size: 22px;
  font-family: 'Libre Caslon Display', serif;
  transition: opacity 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-wide {
  width: 225px;
}

.btn-copper {
  background: #b5896b;
  color: #fcf8f5;
  width: 225px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  height: 936px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Wedding Hero - Desktop: content RIGHT side */
.hero-wedding {
  justify-content: flex-end;
  align-items: center;
  padding: 266px 80px 187px 80px;
}

.hero-wedding .hero-content {
  gap: 0;
  width: 599px;
  max-width: 100%;
}

.hero-wedding .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-names {
  position: relative;
  width: 599px;
  height: 282px;
}

.hero-names .name-line {
  position: absolute;
  color: #fcf8f5;
  line-height: normal;
  white-space: nowrap;
}

.hero-names .name-savannah {
  top: 0;
  left: calc(50% - 273.5px);
  font-size: 105px;
  font-family: 'Libre Caslon Display', serif;
}

.hero-names .name-and {
  top: 30px;
  left: 216px;
  font-size: 120px;
  font-family: 'Monsieur La Doulaise', cursive;
}

.hero-names .name-juanpablo {
  top: 152px;
  left: calc(50% - 299.5px);
  font-size: 105px;
  font-family: 'Libre Caslon Display', serif;
}

/* Desktop: date OUTSIDE names block, centered */
.hero-date-desktop {
  font-size: 35px;
  font-family: 'Libre Caslon Display', serif;
  color: #fcf8f5;
  text-align: center;
  width: 100%;
}

/* Desktop: hide date inside names */
.hero-names .name-date {
  display: none;
}

.hero-wedding .hero-btn-wrapper {
  margin-top: 108px;
}

/* Location Hero */
.hero-location .hero-content {
  gap: 110px;
}

.hero-location-copy {
  text-align: center;
  color: #fcf8f5;
}

.hero-location-copy h1 {
  font-size: 105px;
  line-height: 1;
  padding-bottom: 28px;
  font-weight: normal;
}

.hero-location-copy p {
  font-size: 35px;
}

/* ============================================
   WEDDING - INFO SECTION
   ============================================ */
.info-section {
  background: #fcf8f5;
  padding: 46px 172px 57px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

.info-icon {
  width: 116px;
  height: 92px;
  object-fit: contain;
}

.info-invite {
  text-align: center;
  max-width: 862px;
  padding-bottom: 10px;
}

.info-invite h2 {
  font-size: 55px;
  color: #b5896b;
  font-weight: normal;
  line-height: 1.2;
}

.info-invite p {
  font-size: 45px;
  color: #373737;
}

.info-date {
  text-align: center;
  max-width: 948px;
  padding-bottom: 20px;
}

.info-date h3 {
  font-size: 105px;
  color: #b5896b;
  font-weight: normal;
  line-height: 1.2;
}

.info-date p {
  font-size: 55px;
  color: #373737;
}

.info-details {
  display: flex;
  gap: 65px;
  align-items: flex-end;
  width: 100%;
  max-width: 1093px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.detail-item:nth-child(1) { width: 288px; }
.detail-item:nth-child(2) { width: 379px; }
.detail-item:nth-child(3) { width: 296px; }

.detail-icon {
  height: 146px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1px;
}

.detail-icon img {
  object-fit: contain;
}

.detail-item:nth-child(1) .detail-icon img {
  width: 139px;
  height: 143px;
}

.detail-item:nth-child(2) .detail-icon img {
  width: 104px;
  height: 146px;
}

.detail-item:nth-child(3) .detail-icon img {
  width: 142px;
  height: 138px;
}

.detail-text {
  padding-bottom: 10px;
}

.detail-text h4 {
  font-size: 32px;
  font-weight: normal;
  color: #373737;
  white-space: nowrap;
}

.detail-text p {
  font-size: 25px;
  color: #373737;
}

/* ============================================
   WEDDING - WORDS SECTION
   ============================================ */
.words-section {
  position: relative;
  padding: 70px 191px 100px;
  min-height: 846px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.words-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.words-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  max-width: 1059px;
}

.words-logo {
  width: 75px;
  height: auto;
}

.words-columns {
  display: flex;
  gap: 97px;
  color: #fcf8f5;
  width: 100%;
}

.words-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.words-col h3 {
  font-size: 35px;
  font-weight: normal;
}

.words-col p,
.words-col .words-body {
  font-size: 27px;
  line-height: 1.55;
}

/* ============================================
   FOOTER (unified cream style on all pages)
   ============================================ */
.footer {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fcf8f5;
  box-shadow: 0px 4px 30px 0px rgba(181, 137, 107, 0.25);
  flex-shrink: 0;
}

.footer-text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 20px;
  color: #373737;
  line-height: 1.3;
}

/* ============================================
   HEADER LIGHT VARIANT (Gallery page)
   ============================================ */
.header-light {
  background: #fcf8f5;
  box-shadow: 0px 4px 30px 0px rgba(181, 137, 107, 0.25);
}

.header-light .header-links a {
  color: rgba(55, 55, 55, 0.5);
}

.header-light .header-links a:hover,
.header-light .header-links a.active {
  color: #373737;
}

.header-light .header-btn {
  background: rgba(181, 137, 107, 0.3);
  color: #373737;
}

.header-light .header-btn:hover {
  background: rgba(181, 137, 107, 0.45);
}

.header-light .hamburger span {
  background: #373737;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-page {
  background: #fcf8f5;
  min-height: 100vh;
  padding-top: 80px;
}

.gallery-content {
  padding: 57px 99px 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
}

.gallery-title {
  text-align: center;
  padding-bottom: 16px;
  max-width: 862px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-title h1 {
  font-size: 105px;
  color: #b5896b;
  font-weight: normal;
  letter-spacing: 21px;
  padding-left: 21px;
  line-height: 1.2;
}

.gallery-title p {
  font-size: 45px;
  color: #373737;
  width: 536px;
  text-align: center;
}

/* Desktop photo grid - absolute positioning */
.gallery-grid-desktop {
  position: relative;
  width: 1243px;
  height: 3556px;
}

.gallery-grid-desktop .g-photo {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-grid-desktop .g-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-photo-1  { left: 0;    top: 0;    width: 513px; height: 289px; }
.g-photo-2  { left: 521px; top: 0;    width: 382px; height: 289px; }
.g-photo-3  { left: 913px; top: 0;    width: 330px; height: 586px; }
.g-photo-4  { left: 0;    top: 297px; width: 330px; height: 586px; }
.g-photo-5  { left: 338px; top: 297px; width: 566px; height: 289px; }
.g-photo-6  { left: 338px; top: 594px; width: 385px; height: 289px; }
.g-photo-7  { left: 732px; top: 594px; width: 510px; height: 289px; }
.g-photo-8  { left: 1px;   top: 891px; width: 385px; height: 289px; }
.g-photo-9  { left: 395px; top: 891px; width: 510px; height: 289px; }
.g-photo-10 { left: 1px;   top: 1188px; width: 612px; height: 289px; }
.g-photo-11 { left: 621px; top: 1187px; width: 283px; height: 290px; }
.g-photo-12 { left: 913px; top: 891px; width: 330px; height: 586px; }
.g-photo-13 { left: 0;    top: 1485px; width: 330px; height: 585px; }
.g-photo-14 { left: 338px; top: 1485px; width: 905px; height: 289px; }
.g-photo-15 { left: 338px; top: 1781px; width: 566px; height: 289px; }
.g-photo-16 { left: 913px; top: 1782px; width: 330px; height: 585px; }
.g-photo-17 { left: -6px;  top: 2078px; width: 517px; height: 289px; }
.g-photo-18 { left: 521px; top: 2078px; width: 382px; height: 289px; }
.g-photo-19 { left: 0;    top: 2375px; width: 330px; height: 585px; }
.g-photo-20 { left: 337px; top: 2375px; width: 382px; height: 289px; }
.g-photo-21 { left: 726px; top: 2375px; width: 517px; height: 289px; }
.g-photo-22 { left: 337px; top: 2672px; width: 906px; height: 289px; }
.g-photo-23 { left: 0;    top: 2969px; width: 511px; height: 289px; }
.g-photo-24 { left: 521px; top: 2969px; width: 382px; height: 289px; }
.g-photo-25 { left: 0;    top: 3267px; width: 280px; height: 289px; }
.g-photo-26 { left: 289px; top: 3265px; width: 614px; height: 289px; }
.g-photo-27 { left: 913px; top: 2969px; width: 330px; height: 585px; }

/* Mobile photo grid - simple 2-column */
.gallery-grid-mobile {
  display: none;
}

.gallery-grid-mobile-inner {
  display: grid;
  grid-template-columns: 153px 153px;
  gap: 12px;
}

.gallery-grid-mobile-inner .g-photo-m {
  width: 153px;
  height: 153px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-grid-mobile-inner .g-photo-m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid-mobile-inner .g-photo-m-wide {
  grid-column: 1 / -1;
  width: 318px;
  height: 153px;
}

/* ============================================
   LOCATION - STAY SECTION
   ============================================ */
.stay-section {
  background: #fcf8f5;
  padding: 57px 116px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.stay-header {
  text-align: center;
  max-width: 1192px;
}

.stay-title {
  max-width: 862px;
  margin: 0 auto;
  padding-bottom: 16px;
}

.stay-title h2 {
  font-size: 105px;
  color: #b5896b;
  font-weight: normal;
  line-height: 1.2;
}

.stay-title p {
  font-size: 45px;
  color: #373737;
}

.stay-subtitle {
  font-size: 30px;
  color: #373737;
  margin-top: 36px;
}

.stay-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px 40px 59px;
  max-width: 1209px;
  width: 100%;
}

.stay-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* High End Hotels */
.high-end-title {
  font-size: 40px;
  color: #373737;
  text-align: center;
  letter-spacing: 7.2px;
  font-weight: normal;
}

.hotel-photos {
  display: flex;
  gap: 16px;
  width: 100%;
}

.hotel-photo {
  width: 213px;
  height: 213px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hotel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-photo-label {
  position: absolute;
  bottom: 11px;
  left: 20px;
  color: #fcf8f5;
  font-size: 20px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Hotel Photos Responsive */
.hotel-photos-mobile {
  display: none;
}

.hotel-photos-desktop {
  display: flex;
  margin-top: 21px;
}

/* Rentals */
.rentals-section {
  text-align: center;
  max-width: 1071px;
}

.rentals-title {
  font-size: 40px;
  color: #373737;
  letter-spacing: 7.2px;
  font-weight: normal;
  margin-bottom: 18px;
}

.rentals-text {
  font-size: 30px;
  color: #373737;
  margin-bottom: 18px;
  line-height: 1.4;
}

.rentals-cta {
  font-size: 40px;
  color: #b5896b;
}

.stay-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1017px;
}

.stay-bottom p {
  font-size: 30px;
  color: #373737;
}

/* ============================================
   LOCATION - BOGOTA BANNER
   ============================================ */
.bogota-banner {
  position: relative;
  min-height: 652px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 131px 262px;
}

.bogota-banner .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bogota-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fcf8f5;
  max-width: 922px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.bogota-title h2 {
  font-size: 105px;
  font-weight: normal;
  line-height: 1;
  padding-bottom: 16px;
}

.bogota-title p {
  font-size: 45px;
}

.bogota-quote {
  font-size: 35px;
  line-height: 1.5;
}

/* ============================================
   LOCATION - ACTIVITIES SECTION
   ============================================ */
.activities-section {
  background: #fcf8f5;
  padding: 73px 116px 78px;
  display: flex;
  gap: 22px;
}

.activity-card {
  background: #fff;
  border-radius: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 42px 42px;
  min-height: 607px;
}

.activity-card:nth-child(2) {
  padding: 20px 49px 44px;
}

.activity-card:nth-child(3) {
  padding: 19px 15px 59px;
}

.activity-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.activity-icon {
  width: auto;
  object-fit: contain;
}

.activity-card:nth-child(1) .activity-icon {
  width: 166px;
  height: 58px;
}

.activity-card:nth-child(2) .activity-icon {
  width: 58px;
  height: 89px;
}

.activity-card:nth-child(3) .activity-icon {
  width: 79px;
  height: 87px;
}

.activity-title {
  font-size: 37px;
  color: #b5896b;
  text-align: center;
  letter-spacing: 6.66px;
  font-weight: normal;
}

.activity-divider {
  width: 30px;
  height: 2px;
  background: #b5896b;
}

.activity-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.activity-list .place-name {
  font-size: 26px;
  color: #373737;
}

.activity-list .place-sub {
  font-size: 20px;
  color: #373737;
  margin-top: -7px;
}

.activity-list .place-name:hover,
.activity-list .place-sub:hover,
a.place-group:hover .place-name,
a.place-group:hover .place-sub {
  color: #b5896b;
  cursor: default;
}

a.place-group:hover {
  cursor: pointer;
}

.activity-list .place-group {
  padding-bottom: 8px;
}

/* ============================================
   GIFTS PAGE
   ============================================ */
.gifts-page {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Desktop layout */
.gifts-desktop {
  display: flex;
  min-height: calc(100vh - 160px);
}

.gifts-photo-side {
  position: relative;
  width: 571px;
  flex-shrink: 0;
  overflow: hidden;
}

.gifts-photo-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gifts-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(55, 55, 55, 0.5);
}

.gifts-content-side {
  flex: 1;
  background: #fcf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.gifts-content-inner {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.gifts-title {
  font-size: 200px;
  color: #b5896b;
  font-weight: normal;
  letter-spacing: 8px;
  text-align: center;
  line-height: 1;
}

.gifts-subtitle {
  font-size: 30px;
  color: #373737;
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}

.gifts-card {
  background: #fff;
  border-radius: 30px;
  padding: 38px 41px 42px 34px;
  width: 100%;
  max-width: 691px;
}

.gifts-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 617px;
  max-width: 100%;
}

.gifts-card-heading {
  font-size: 38px;
  color: #b5896b;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
}

.gifts-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.gifts-number {
  font-size: 38px;
  color: #b5896b;
  flex-shrink: 0;
  line-height: 1;
  width: 40px;
  text-align: center;
  align-self: flex-start;
}

.gifts-desc {
  font-size: 23px;
  color: #373737;
  line-height: 1.4;
  padding-top: 8px;
  padding-left: 12px;
  max-width: 400px;
}

.gifts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 50px;
  background: #b5896b;
  color: #fcf8f5;
  font-size: 22px;
  font-family: 'Libre Caslon Display', serif;
  flex-shrink: 0;
  margin-left: auto;
  transition: opacity 0.3s;
}

.gifts-btn:hover {
  opacity: 0.9;
}

/* Mobile layout - hidden on desktop */
.gifts-mobile {
  display: none;
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Header */
  .header {
    height: 60px;
    padding: 0 20px;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .header-logo img {
    width: 50px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  /* Hero */
  .hero {
    height: 100svh;
    height: 100vh;
    min-height: 667px;
  }

  /* Mobile: names block centered, button at bottom */
  .hero-wedding {
    align-items: center;
    justify-content: flex-start;
    padding: 124px 0 97px;
  }

  .hero-wedding .hero-content {
    gap: 0;
    width: 343px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }

  .hero-wedding .hero-copy {
    align-items: center;
    width: 100%;
  }

  .hero-names {
    width: 343px;
    height: 185px;
    position: relative;
  }

  .hero-names .name-savannah {
    top: 0;
    left: 15px;
    font-size: 60px;
  }

  .hero-names .name-and {
    top: 17px;
    left: 123px;
    font-size: 69px;
  }

  .hero-names .name-juanpablo {
    top: 89px;
    left: 0;
    font-size: 60px;
  }

  /* Mobile: show date INSIDE names block */
  .hero-names .name-date {
    display: block;
    top: 156px;
    left: 114px;
    font-size: 20px;
    font-family: 'Libre Caslon Display', serif;
  }

  /* Mobile: hide desktop date */
  .hero-date-desktop {
    display: none;
  }

  .hero-wedding .hero-btn-wrapper {
    margin-top: auto;
    align-self: center;
  }

  /* Info Section */
  .info-section {
    padding: 43px 35px;
    gap: 39px;
  }

  .info-invite h2 {
    font-size: 40px;
  }

  .info-invite p {
    font-size: 27px;
  }

  .info-date {
    padding-bottom: 15px;
  }

  .info-date h3 {
    font-size: 80px;
    line-height: 0.88;
  }

  .info-date p {
    font-size: 25px;
  }

  .info-details {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    max-width: 292px;
  }

  .detail-item,
  .detail-item:nth-child(1),
  .detail-item:nth-child(2),
  .detail-item:nth-child(3) {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  .detail-item:nth-child(2) {
    flex-direction: row-reverse;
  }

  .detail-icon {
    height: auto;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .detail-item:nth-child(1) .detail-icon img,
  .detail-item:nth-child(3) .detail-icon img {
    width: 77px;
    height: 79px;
  }

  .detail-item:nth-child(2) .detail-icon img {
    height: 84px;
    width: 60px;
  }

  .detail-text {
    text-align: left;
    padding-bottom: 4px;
  }

  .detail-item:nth-child(2) .detail-text {
    text-align: right;
  }

  .detail-text h4 {
    font-size: 20px;
    white-space: normal;
  }

  .detail-text p {
    font-size: 14px;
  }

  /* Words Section */
  .words-section {
    padding: 42px 46px 57px 46px;
    min-height: 811px;
  }

  .words-content {
    gap: 37px;
    align-items: center;
  }

  .words-logo {
    width: 50px;
  }

  .words-columns {
    flex-direction: column;
    gap: 37px;
    text-align: center;
  }

  .words-col {
    gap: 10px;
    align-items: center;
  }

  .words-col h3 {
    font-size: 25px;
  }

  .words-col p,
  .words-col .words-body {
    font-size: 17px;
    line-height: 1.5;
  }

  /* Footer */
  .footer {
    height: 60px;
    box-shadow: 0px -2px 20px 0px rgba(181, 137, 107, 0.25);
  }

  .footer-text {
    font-size: 12px;
  }

  /* Gallery */
  .gallery-page {
    padding-top: 60px;
  }

  .gallery-content {
    padding: 38px 42px 48px;
    gap: 29px;
  }

  .gallery-title h1 {
    font-size: 50px;
    letter-spacing: 10px;
    padding-left: 10px;
  }

  .gallery-title p {
    font-size: 18px;
    width: auto;
    max-width: 100%;
  }

  .gallery-grid-desktop {
    display: none;
  }

  .gallery-grid-mobile {
    display: block;
  }

  .header-light {
    box-shadow: 0px 4px 30px 0px rgba(181, 137, 107, 0.25);
  }

  /* Location Hero */
  .hero-location {
    height: 100svh;
    height: 100vh;
    min-height: 615px;
    max-height: 900px;
  }

  .hero-location .hero-content {
    gap: 55px;
  }

  .hero-location-copy h1 {
    font-size: 60px;
    padding-bottom: 14px;
  }

  .hero-location-copy p {
    font-size: 20px;
  }

  /* Stay Section */
  .stay-section {
    padding: 27px 40px 40px;
    gap: 27px;
  }

  .stay-title h2 {
    font-size: 40px;
  }

  .stay-title p {
    font-size: 18px;
  }

  .stay-subtitle {
    font-size: 14px;
    margin-top: 19px;
  }

  .stay-card {
    border-radius: 20px;
    padding: 20px 7px 24px 7px;
  }

  .stay-card-inner {
    gap: 20px;
  }

  .high-end-title,
  .rentals-title {
    font-size: 18px;
    letter-spacing: 3.24px;
  }

  .hotel-photos-desktop {
    display: none !important;
  }

  .hotel-photos-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
  }

  .hotel-photos {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .hotel-photo {
    border-radius: 14px;
  }

  .hotel-photo.hotel-wide {
    width: 254px;
    height: 127px;
  }

  .hotel-photos-grid {
    display: grid;
    grid-template-columns: 122px 122px;
    gap: 9px 10px;
    width: 254px;
  }

  .hotel-photos-grid .hotel-photo {
    width: 122px;
    height: 122px;
  }

  .hotel-photo-label {
    font-size: 14px;
    bottom: 9px;
    left: 12px;
  }

  .rentals-text {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .rentals-cta {
    font-size: 18px;
  }

  .stay-bottom {
    gap: 16px;
  }

  .stay-bottom p {
    font-size: 14px;
  }

  /* Bogota Banner */
  .bogota-banner {
    min-height: 260px;
    padding: 54px 47px 55px 47px;
  }

  .bogota-content {
    gap: 13px;
  }

  .bogota-title h2 {
    font-size: 40px;
    padding-bottom: 6px;
  }

  .bogota-title p {
    font-size: 18px;
  }

  .bogota-quote {
    font-size: 14px;
  }

  /* Activities Section */
  .activities-section {
    padding: 30px 31px;
    flex-wrap: wrap;
    gap: 23px 16px;
  }

  .activity-card {
    flex: 0 0 calc(50% - 8px);
    min-height: 338px;
    border-radius: 20px;
    padding: 23px 12px 27px;
  }

  .activity-card:nth-child(2) {
    padding: 8px 12px 27px;
  }

  .activity-card:nth-child(3) {
    flex: 0 0 100%;
    min-height: 328px;
    padding: 20px 76px 20px 77px;
  }

  .activity-header {
    gap: 8px;
    margin-bottom: 19px;
  }

  .activity-card:nth-child(1) .activity-icon {
    width: 89px;
    height: 31px;
  }

  .activity-card:nth-child(2) .activity-icon {
    width: 30px;
    height: 46px;
  }

  .activity-card:nth-child(3) .activity-icon {
    width: 49px;
    height: 54px;
  }

  .activity-title {
    font-size: 18px;
    letter-spacing: 3.24px;
  }

  .activity-divider {
    width: 20px;
    height: 1px;
  }

  .activity-list {
    gap: 8px;
  }

  .activity-list .place-name {
    font-size: 16px;
  }

  .activity-list .place-name-andres {
    letter-spacing: -0.64px;
  }

  .activity-list .place-sub {
    font-size: 12px;
    margin-top: 0;
  }

  .activity-list .place-group {
    padding-bottom: 4px;
  }

  /* Gifts Page - Mobile */
  .gifts-page {
    padding-top: 60px;
    background: #fcf8f5;
    flex: 1 0 auto;
  }

  .gifts-desktop {
    display: none;
  }

  .gifts-mobile {
    display: block !important;
  }

  .gifts-banner-mobile {
    position: relative;
    width: 100%;
    height: 266px;
    overflow: visible;
  }

  .gifts-banner-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gifts-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 55, 55, 0.5);
  }

  .gifts-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-align: center;
    padding: 0 30px;
  }

  .gifts-banner-content h1 {
    font-size: 90px;
    color: #fcf8f5;
    font-weight: normal;
    letter-spacing: 4.5px;
    line-height: 1;
  }

  .gifts-banner-content p {
    font-size: 16px;
    color: #fcf8f5;
    line-height: 1.4;
    max-width: 320px;
  }

  .gifts-mobile-body {
    background: #fcf8f5;
    padding: 38px 41px 30px;
  }

  .gifts-card-mobile {
    background: #fff;
    border-radius: 30px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .gifts-card-heading-mobile {
    font-size: 30px;
    color: #b5896b;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
  }

  .gifts-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .gifts-item-text-mobile {
    display: flex;
    align-items: baseline;
    gap: 6px;
    align-self: stretch;
    padding-left: 8px;
  }

  .gifts-number-mobile {
    font-size: 20px;
    color: #b5896b;
    flex-shrink: 0;
  }

  .gifts-desc-mobile {
    font-size: 16px;
    color: #373737;
    line-height: 1.4;
  }

  .gifts-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 50px;
    background: #b5896b;
    color: #fcf8f5;
    font-size: 22px;
    font-family: 'Libre Caslon Display', serif;
    align-self: center;
    transition: opacity 0.3s;
  }

  .gifts-btn-mobile:hover {
    opacity: 0.9;
  }
}


/* ============================================
   VISIBILITY TOGGLES
   ============================================ */
.mobile-only {
  display: none;
}

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline !important;
  }
  .mobile-br {
    display: block !important;
  }
}

