:root {
  --background: #f4e7e3;
  --cream: #faf6f2;
  --stone: #efe6e0;
  --nude: #e7d8d4;
  --mauve: #cda8a5;
  --olive: #5e654d;
  --sage: #a8af9a;
  --text-dark: #433b38;
  --text-soft: #7d726d;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(67, 59, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(94, 101, 77, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7%;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--olive);
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--olive);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(94, 101, 77, 0.3);
  color: var(--olive);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 90vh;
  text-align: center;
  padding: 90px 20px 70px;
  overflow: hidden;
}

.floral-corner {
  position: absolute;
  width: 330px;
  height: 330px;
  background-image: url("../images/pampas-corner.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.floral-corner-right {
  top: 0;
  right: 0;
  background-position: top right;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.76rem;
  color: var(--olive);
  font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  font-weight: 400;
  margin: 0;
  color: var(--text-dark);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin: 22px 0 8px;
  color: var(--text-soft);
}

.wedding-date {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--olive);
}

.hero-photo-wrapper {
  width: min(760px, 92%);
  margin: 42px auto 30px;
  padding: 12px;
  background: rgba(250, 246, 242, 0.8);
  border: 1px solid rgba(94, 101, 77, 0.18);
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: clamp(320px, 55vw, 520px);
  object-fit: cover;
}

.primary-button,
.secondary-button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.primary-button {
  background: var(--olive);
  color: var(--cream);
  border: 1px solid var(--olive);
}

.primary-button:hover {
  background: transparent;
  color: var(--olive);
}

.secondary-button {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
}

.secondary-button:hover {
  background: var(--olive);
  color: var(--cream);
}

.content-section {
  width: min(1050px, 90%);
  margin: 0 auto 70px;
  padding: 70px 20px;
  text-align: center;
}

.soft-section {
  background: rgba(250, 246, 242, 0.62);
  border: 1px solid rgba(94, 101, 77, 0.14);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(67, 59, 56, 0.06);
}

.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 24px;
  color: var(--text-dark);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--text-soft);
}

.details-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.detail-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(94, 101, 77, 0.14);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 6px;
}

.detail-item p {
  margin: 0;
  color: var(--text-dark);
}

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

.info-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(67, 59, 56, 0.08);
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: var(--olive);
}

.info-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.info-card a,
.text-link {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
}

.rsvp-preview {
  padding-top: 30px;
}

.site-footer {
  text-align: center;
  padding: 44px 20px;
  background: var(--cream);
  color: var(--text-soft);
  border-top: 1px solid rgba(94, 101, 77, 0.12);
}

.site-footer p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--olive);
  font-size: 2rem;
  margin: 0;
}

.site-footer span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Plan Your Trip Page */
.page-hero {
  text-align: center;
  padding: 90px 20px 50px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 400;
  margin: 0 0 16px;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
}

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

.trip-card {
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.trip-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.trip-card-content {
  padding: 24px;
  text-align: left;
}

.trip-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--olive);
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.trip-card p {
  color: var(--text-soft);
  margin: 0 0 16px;
}

.trip-card a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
}

/* RSVP Coming Soon Page */
.coming-soon-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 28px;
  padding: 56px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.coming-soon-box h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  margin: 0 0 18px;
}

.coming-soon-box p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* Room Details Modal */
.clickable-card {
  cursor: pointer;
}

.clickable-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 32px rgba(67, 59, 56, 0.14);
}

.card-button {
  margin-top: 12px;
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
  border-radius: 999px;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.card-button:hover {
  background: var(--olive);
  color: var(--cream);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(67, 59, 56, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(850px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(67, 59, 56, 0.28);
  border: 1px solid rgba(94, 101, 77, 0.18);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: var(--olive);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 28px;
  color: var(--text-dark);
  text-align: center;
}

.modal-section {
  padding: 24px 0;
  border-top: 1px solid rgba(94, 101, 77, 0.16);
}

.modal-section h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--olive);
  font-size: 2rem;
  margin: 0 0 12px;
}

.modal-section p {
  color: var(--text-soft);
  margin: 0 0 12px;
}

.phone-link {
  display: inline-block;
  color: var(--olive);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  margin: 8px 0 16px;
  border-bottom: 1px solid var(--olive);
}

.instruction-list {
  margin: 10px 0 0;
  padding-left: 22px;
  color: var(--text-soft);
}

.instruction-list li {
  margin-bottom: 8px;
}

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

.rate-item {
  background: var(--background);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.rate-room-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.rate-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 6px;
}

.rate-item p {
  color: var(--text-dark);
  margin: 0 0 8px;
}

.rate-item strong {
  color: var(--olive);
  font-size: 1.1rem;
}

body.modal-open {
  overflow: hidden;
}

/* Mobile */
@media (max-width: 850px) {
  .site-header {
    padding: 16px 5%;
  }

  .menu-btn {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 5%;
    width: min(290px, 90vw);
    background: var(--cream);
    border: 1px solid rgba(94, 101, 77, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 70px;
  }

  .floral-corner {
    width: 220px;
    height: 220px;
    opacity: 0.36;
  }

  .hero-photo-wrapper {
    width: 95%;
  }

  .info-grid,
  .trip-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    width: 92%;
    padding: 52px 18px;
    margin-bottom: 42px;
  }
}

@media (max-width: 750px) {
  .modal-box {
    padding: 36px 24px;
  }

  .rate-list {
    grid-template-columns: 1fr;
  }
}.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.included-card {
  background: var(--background);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(94, 101, 77, 0.12);
}

.included-card h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--olive);
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.included-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.included-card li {
  margin-bottom: 8px;
}

@media (max-width: 750px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}