@import url(
  "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap"
);

:root {
  --ivory: #f6f2eb;
  --light-ivory: #fbf9f5;
  --charcoal: #2e3033;
  --soft-charcoal: #484b4e;
  --gold: #b58a5c;
  --light-gold: #d5b58f;
  --white: #ffffff;
  --border: rgba(46, 48, 51, 0.16);
  --shadow: 0 24px 60px rgba(36, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--light-ivory);
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.site-header {
  background: var(--charcoal);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  color: var(--light-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
}

.brand span {
  color: #e7c8a6;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: #f5efe7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--light-gold);
}

.nav-button {
  border: 1px solid var(--light-gold);
  padding: 12px 20px;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  width: 34px;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 100%;
}

.hero {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(213, 181, 143, 0.15),
      transparent 35%
    ),
    var(--ivory);
  overflow: hidden;
  padding: 95px 0 110px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 82px);
  margin-bottom: 30px;
}

.hero-description {
  color: var(--soft-charcoal);
  font-size: 16px;
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1.4px;
  min-height: 52px;
  padding: 14px 25px;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button-light {
  background: transparent;
  color: var(--charcoal);
}

.button-light:hover {
  background: var(--white);
}

.hero-image-wrap {
  animation: slideIn 1s ease both;
}

.image-frame {
  background: var(--white);
  border-radius: 150px 150px 18px 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-image {
    border-radius: 180px 180px 18px 18px;
    overflow: hidden;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.experience-section,
.packages-section,
.gallery-section,
.contact-section {
  padding: 120px 0;
}

.experience-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 58px;
  max-width: 760px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.contact-section h2 {
  font-size: clamp(48px, 6vw, 76px);
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  color: var(--soft-charcoal);
}

.feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border-top: 1px solid var(--border);
  padding: 34px 24px 20px 0;
}

.feature-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  margin-bottom: 34px;
}

.feature-card h3,
.package-card h3,
.gallery-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.feature-card h3 {
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.feature-card p:last-child {
  color: var(--soft-charcoal);
  font-size: 14px;
}

.packages-section {
  background: var(--ivory);
}

.package-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 42px 34px;
  position: relative;
}

.featured-package {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-15px);
}

.popular-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.package-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}

.package-description {
  color: var(--soft-charcoal);
  font-size: 14px;
  margin-bottom: 25px;
}

.featured-package .package-description,
.featured-package li {
  color: rgba(255, 255, 255, 0.75);
}

.package-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.package-card li {
  border-bottom: 1px solid var(--border);
  color: var(--soft-charcoal);
  font-size: 14px;
  padding: 12px 0;
}

.featured-package li {
  border-color: rgba(255, 255, 255, 0.14);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  overflow: hidden;
  position: relative;
}

.gallery-card.large-card {
  grid-row: span 2;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  align-items: flex-end;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0)
    );
  bottom: 0;
  color: var(--white);
  display: flex;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  top: 0;
}

.gallery-overlay h3 {
  font-size: 32px;
}

.contact-section {
  background: var(--charcoal);
  color: var(--white);
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 85px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-section h2 {
  margin-bottom: 25px;
}

.contact-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 42px;
}

.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--light-ivory);
  border: 1px solid var(--border);
  color: var(--charcoal);
  outline: none;
  padding: 14px;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-button {
  width: 100%;
}

.form-message {
  color: var(--charcoal);
  font-size: 13px;
  margin-top: 14px;
}

.site-footer {
  background: #242629;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.5fr 0.7fr 1fr;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 420px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-heading {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 12px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    align-items: stretch;
    background: var(--charcoal);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 24px 32px 32px;
    position: absolute;
    right: 0;
    top: 92px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
  }

  .nav-button {
    border: 0;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .feature-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-container {
    min-height: 78px;
  }

  .brand {
    font-size: 23px;
  }

  .main-nav {
    top: 78px;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .experience-section,
  .packages-section,
  .gallery-section,
  .contact-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 46px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-card {
    height: 300px;
    margin-bottom: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MYLIN & CO. FINAL FIXES
   ========================================= */

/* HERO PHOTO */
.hero-image-wrap {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.image-frame {
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* ARCH-SHAPED PHOTO */
.hero-image {
    width: 100% !important;
    height: 620px !important;
    aspect-ratio: auto !important;

    /* rounded arch top */
    border-radius: 300px 300px 18px 18px !important;

    overflow: hidden !important;
    position: relative;
}

/* ACTUAL IMAGE INSIDE ARCH */
.hero-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
    border-radius: inherit !important;
}

/* If the IMG itself has the hero-image class */
img.hero-image {
    width: 100% !important;
    height: 620px !important;
    aspect-ratio: auto !important;

    object-fit: cover !important;
    object-position: center center !important;

    border-radius: 300px 300px 18px 18px !important;

    display: block !important;
}


/* =========================================
   PACKAGE TEXT VISIBILITY FIX
   ========================================= */

/* Signature package */
.package-card.featured-package,
.package-card.featured-package p,
.package-card.featured-package li,
.package-card.featured-package .package-description {
    color: #f4eee6 !important;
}

/* Signature headings */
.package-card.featured-package h3,
.package-card.featured-package .package-label,
.package-card.featured-package .package-price {
    color: #ffffff !important;
}

/* Signature list lines */
.package-card.featured-package li {
    opacity: 1 !important;
}

/* Signature button */
.package-card.featured-package .text-link {
    color: #d5b58f !important;
    font-weight: 600;
}


/* =========================================
   GENERAL TEXT DARKENING
   ========================================= */

.package-card:not(.featured-package) p,
.package-card:not(.featured-package) li {
    color: #484442 !important;
    opacity: 1 !important;
}

.package-card:not(.featured-package) h3 {
    color: #353230 !important;
}

.package-card:not(.featured-package) .package-price {
    color: #45413f !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .hero-image-wrap {
        max-width: 100%;
    }

    .hero-image,
    img.hero-image {
        height: 480px !important;
        border-radius: 220px 220px 14px 14px !important;
    }
}

/* =========================================
   MYLIN HERO — FINAL ARCH FIX
   ========================================= */

.hero-image {
    width: 100% !important;
    max-width: 650px !important;
    height: 650px !important;
    margin: 0 auto !important;

    border-radius: 325px 325px 24px 24px !important;
    overflow: hidden !important;

    background: transparent !important;
    box-shadow: none !important;
}

.hero-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
    border-radius: 0 !important;
}

/* =========================================
   SIGNATURE PACKAGE — DARKER TEXT
   ========================================= */

.featured-package,
.featured-package p,
.featured-package li,
.featured-package span {
    color: #f7f2eb !important;
    opacity: 1 !important;
}

.featured-package h3,
.featured-package .package-price {
    color: #ffffff !important;
}

.featured-package li {
    border-color: rgba(255, 255, 255, 0.28) !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-image {
        height: 500px !important;
        border-radius: 250px 250px 18px 18px !important;
    }
}


/* =========================================
   MYLIN & CO. — CLEAN FINAL OVERRIDES
   ========================================= */

/* HERO ARCH */
.hero-image {
    width: 100% !important;
    max-width: 650px !important;
    height: 650px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 325px 325px 18px 18px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 0 !important;
}

/* SIGNATURE PACKAGE */
.featured-package,
.featured-package p,
.featured-package li,
.featured-package span {
    color: #F7F2EB !important;
    opacity: 1 !important;
}

.featured-package h3,
.featured-package .package-price {
    color: #FFFFFF !important;
}

.featured-package li {
    border-color: rgba(255, 255, 255, 0.28) !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 480px !important;
        border-radius: 240px 240px 14px 14px !important;
    }
}

/* =========================================
   FIX DESKTOP HERO LAYOUT
   ========================================= */

@media (min-width: 901px) {

    .hero-layout {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
        gap: 70px !important;
    }

    .hero-image {
        max-width: 560px !important;
        height: 620px !important;
        margin: 0 auto !important;
    }
}

.featured-package li {
    color: #ffffff !important;
    opacity: 1 !important;
}

.about-header {
    background: #2f3033 !important;
}

/* ===== ABOUT PAGE COLOR FIX ===== */

.about {
    background: #f6f2eb !important;
    color: #2f3033 !important;
}

.about h1 {
    color: #2f3033 !important;
}

.about .eyebrow {
    color: #b58a5c !important;
}

.about .intro,
.about p {
    color: #2f3033 !important;
}

.about .gold-line {
    background: #b58a5c !important;
}

/* =====================================
   ABOUT PAGE — MATCH HOMEPAGE EXACTLY
   ===================================== */

body:has(.about) {
    background: var(--light-ivory) !important;
}

.about {
    background: var(--light-ivory) !important;
    color: var(--charcoal) !important;
}

/* Main About title */
.about h1 {
    color: var(--charcoal) !important;
}

/* ALL About paragraph text */
.about p,
.about .intro {
    color: var(--charcoal) !important;
    opacity: 1 !important;
}

/* OUR STORY */
.about .eyebrow {
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* Little gold divider */
.about .gold-line {
    background-color: var(--gold) !important;
}

/* Reserve button */
.about .reserve,
.about .btn {
    color: var(--charcoal) !important;
    border-color: var(--gold) !important;
}

/* ===== FINAL MYLIN HERO ARCH ===== */

/* DESKTOP */
@media (min-width: 769px) {

  .hero-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 70px !important;
  }

  .hero-content {
    flex: 1 1 auto !important;
    max-width: 600px !important;
  }

  .mylin-final-arch {
    display: block !important;
    flex: 0 0 390px !important;
    width: 390px !important;
    height: 570px !important;
    margin: 0 !important;

    overflow: hidden !important;
    border: 2px solid #c9a45c !important;
    border-radius: 195px 195px 14px 14px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }

  .mylin-final-arch img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 187px 187px 9px 9px !important;
  }
}

/* PHONE */
@media (max-width: 768px) {

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 35px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .mylin-final-arch {
    display: block !important;
    flex: none !important;
    width: 88% !important;
    max-width: 340px !important;
    height: 480px !important;
    margin: 10px auto 0 !important;

    overflow: hidden !important;
    border: 2px solid #c9a45c !important;
    border-radius: 170px 170px 12px 12px !important;
    padding: 5px !important;
    box-sizing: border-box !important;
  }

  .mylin-final-arch img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 164px 164px 8px 8px !important;
  }
}

/* MOBILE NAVIGATION */
.menu-button {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #d5b58f;
}

@media (max-width: 768px) {

    .menu-button {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2f3033;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        z-index: 9999;
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav a {
        display: block;
        width: 100%;
        text-align: center;
    }
}