/* css/styles.css - complete & refined with Seasons font, black header, transparent buttons 
   + why decorative images: fully rounded, height 200px from section top, spaced from text */

/* Seasons font declaration */
@font-face {
    font-family: 'Seasons';
    src: url('../fonts/theseasons.woff2') format('woff2'),
         url('../fonts/theseasons.woff') format('woff');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Seasons', 'Literata', 'EB Garamond', serif;
    background: #ffffff;
    color: #1d1d1f;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle white background pattern for all white sections */
.intro, .how, .packages, .addons, .contact, .oral {
    position: relative;
    background-color: #ffffff;
}

.intro::before, .how::before, .packages::before, .addons::before, .contact::before, .oral::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/whitebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.intro .container, .how .container, .packages .container, .addons .container, .contact .container, .oral .container {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, .section-title, .package-name, .step h5, .celebrate-text h3, .hero-heritage, .intro-headline, .oral-block h3 {
    font-family: 'Seasons', 'EB Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-text, .intro-text, .oral-block p, .feature-card p, .step ul li, .contact-row, .questionnaire-link a, .btn, .footer p, .process-note, .modal-note, .addon-item {
    font-family: 'Seasons', 'Literata', serif;
    font-weight: 300;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #4a4a4a;
    font-size: 1.2rem;
    font-weight: 300;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* header - transparent until scrolled, then black */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0;
}

.header.scrolled {
    background: #000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

.logo img {
    width: 150px;
    height: auto;
    transition: width 0.3s ease;
    filter: brightness(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.header.scrolled .logo img {
    width: 100px;
    content: url('../images/logo_alt.png'); /* optional alternate logo for dark bg */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s;
    font-family: 'Seasons', 'Literata', serif;
}

.header.scrolled .main-nav a {
    color: #fff; /* keep white on black header */
}

.main-nav a:hover {
    color: #EFBE2A;
}

/* social icons in header */
.header-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.header-social a:hover {
    color: #EFBE2A;
}

.header.scrolled .header-social a {
    color: #fff;
}

/* hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 102;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

.header.scrolled .hamburger span {
    background: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #000;
    z-index: 200;
    padding: 5rem 2rem;
    transition: right 0.4s ease;
    border-left: 2px solid #EFBE2A;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.close-menu {
    font-size: 3rem;
    color: #EFBE2A;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 2rem;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Seasons', 'EB Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s;
}

.mobile-menu ul li a:hover {
    color: #EFBE2A;
}

.mobile-social {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-social a {
    color: #EFBE2A;
    font-size: 1.8rem;
}

/* buttons - all height 56px, transparent styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 2.2rem;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
    height: 56px;
    white-space: nowrap;
    font-family: 'Seasons', 'Literata', serif;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: #EFBE2A;
    color: #000;
    border-color: #EFBE2A;
}

/* transparent outline button */
.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
    backdrop-filter: blur(2px);
}

.btn-outline:hover {
    background: #EFBE2A;
    color: #000;
    border-color: #EFBE2A;
}

/* explainer button - transparent */
.btn-explainer {
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    height: 56px;
    backdrop-filter: blur(2px);
}

.btn-explainer .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: opacity 0.4s;
    z-index: 0;
}

.btn-explainer i,
.btn-explainer span {
    position: relative;
    z-index: 2;
    margin: 0 0.3rem;
}

.btn-explainer i {
    color: #EFBE2A;
}

.btn-explainer:hover .btn-bg {
    opacity: 0.5;
}

.btn-explainer:hover {
    border-color: #EFBE2A;
    background: rgba(0,0,0,0.2);
}

/* HERO section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    transition: background 0.8s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    transition: filter 0.4s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-heritage {
    font-size: 1.2rem;
    text-transform:capitalize;
    color: #EFBE2A;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    font-style:italic;
}

.hero-text {
    font-size: 1.3rem;
    max-width: 750px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* intro section */
.section {
    padding: 2rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    color: #EFBE2A;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.6rem;
}

.intro-headline {
    font-size: 2.2rem;
    margin: 1rem 0 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-quote {
    margin-top: 2.5rem;
    background: #f5f5f7;
    padding: 2rem;
    border-radius: 32px;
    position: relative;
    border-left: 6px solid #EFBE2A;
}

.intro-quote i {
    color: #EFBE2A;
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
}

.intro-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
}

/* trailer card */
.trailer-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
    border: 1px solid #EFBE2A;
}

.trailer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transition: filter 0.5s, transform 0.5s;
}

.trailer-card:hover .trailer-bg {
    filter: brightness(0.6);
    transform: scale(1.03);
}

.trailer-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 1.5rem;
}

.trailer-content i {
    font-size: 3.5rem;
    color: #EFBE2A;
    margin-bottom: 0.5rem;
}

.trailer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.trailer-content span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #EFBE2A;
    padding-bottom: 0.25rem;
}

/* explainer card in how section */
.explainer-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
    border: 1px solid #EFBE2A;
}

.explainer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transition: filter 0.5s, transform 0.5s;
}

.explainer-card:hover .explainer-bg {
    filter: brightness(0.6);
    transform: scale(1.03);
}

.explainer-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 1.5rem;
}

.explainer-content i {
    font-size: 4rem;
    color: #EFBE2A;
    margin-bottom: 0.5rem;
}

.explainer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.explainer-content span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #EFBE2A;
    padding-bottom: 0.25rem;
}

/* oral tradition blocks */
.oral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 50px -20px rgba(0,0,0,0.3);
}

.oral-block {
    padding: 3.5rem 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.oral-black {
    background-color: #000;
    color: #fff;
}

.oral-gold {
    background-color: #EFBE2A;
    color: #000;
}

.oral-block i {
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.oral-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.oral-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fafafc;
    padding: 2.5rem 1.5rem;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #EFBE2A;
    box-shadow: 0 25px 35px -10px rgba(239,190,42,0.2);
}

.feature-icon i {
    font-size: 3rem;
    color: #EFBE2A;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
}

/* process section - dark theme */
.process {
    background: #000;
    color: #fff;
}

.process .section-title {
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.step {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 48px;
    border: 1px solid #222;
    position: relative;
    transition: border 0.3s;
}

.step:hover {
    border-color: #EFBE2A;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #EFBE2A;
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #EFBE2A;
    margin-bottom: 1.5rem;
    display: block;
}

.step h5 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.step ul {
    list-style: none;
    color: #aaa;
}

.step ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
}

.process-note {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* packages grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #fff;
    border-radius: 48px;
    padding: 2.5rem 2rem;
    border: 2px solid #f0f0f0;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.1);
    transition: transform 0.25s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

.popular {
    border: 2px solid #EFBE2A;
    transform: scale(1.02);
    background: #fefcf5;
}

.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #EFBE2A;
    color: #000;
    padding: 0.3rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.package-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 600;
    color: #EFBE2A;
    margin: 1rem 0 2rem;
}

.package-features {
    list-style: none;
}

.package-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.transport-note {
    text-align: right;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #444;
}

.transport-note i {
    color: #EFBE2A;
    margin-right: 0.3rem;
}

/* addons grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #f4f4f6;
    border-radius: 60px;
    font-weight: 500;
}

.addon-item strong {
    color: #000;
    font-weight: 600;
}

/* celebrate section - with thinner border and less rounding */
.celebrate {
    background: #000;
    color: #fff;
}

.celebrate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.celebrate-text i {
    font-size: 3rem;
    color: #EFBE2A;
    margin-bottom: 1rem;
    display: block;
}

.celebrate-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.celebrate-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.image-gold-frame-thin {
    border: 1px solid #EFBE2A; /* thinner border */
    border-radius: 16px; /* less rounded */
    overflow: hidden;
    height: 350px;
}

.image-inside {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.image-gold-frame-thin:hover .image-inside {
    transform: scale(1.05);
}

/* contact section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #000;
    color: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.contact-row {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-row i {
    color: #EFBE2A;
    width: 2rem;
    font-size: 1.3rem;
}

.questionnaire-link {
    background: #EFBE2A;
    color: #000;
    padding: 0 2rem;
    border-radius: 40px;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    height: 56px;
    width: auto;
    white-space: nowrap;
    transition: background 0.3s;
}

.questionnaire-link:hover {
    background: #fff;
}

.questionnaire-link a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.questionnaire-link i {
    font-size: 1.2rem;
    color: #000;
}

/* contact form */
.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Seasons', 'Literata', serif;
    font-size: 1rem;
    transition: background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #2a2a2a;
}

.contact-form textarea {
    border-radius: 30px;
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.btn-block {
    width: 100%;
    background: #EFBE2A;
    color: #000;
    border: none;
    font-weight: 600;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-block:hover {
    background: #fff;
    color: #000;
}

/* footer */
.footer {
    background: #000;
    color: #aaa;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    font-size: 0.95rem;
}

/* MODAL - redesigned with accessible close button */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: #111;
    padding: 2rem;
    border-radius: 20px; /* rounded outer border */
    max-width: 1000px;
    width: 90%;
    position: relative;
    border: 2px solid #EFBE2A;
}

.close-modal {
    color: #EFBE2A;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    z-index: 1001; /* ensures it's above video */
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    padding-bottom: 5px;
}

.close-modal:hover {
    color: #fff;
    background: rgba(239,190,42,0.8);
}

.modal-video {
    width: 100%;
}

.video-wrapper-square {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0; /* square corners inside */
}

.video-wrapper-square iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-note {
    text-align: center;
    color: #aaa;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== DECORATIVE ROUNDED IMAGES FOR "WHY?" SECTION ===== */
.why-decor-left,
.why-decor-right {
    position: absolute;
    top: 50px;              /* exactly 200px from top of section */
    width: 200px;
    height: 200px;
    border-radius: 50%;       /* fully rounded */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;            /* faded, subtle */
    pointer-events: none;     /* don't block clicks */
    z-index: 0;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 2px solid rgba(239,190,42,0.3); /* subtle gold rim */
}

.why-decor-left {
    left: -10%;                  /* spacing from left edge */
    background-image: url('../images/why1.jpg');
}

.why-decor-right {
    right: -10%;                 /* spacing from right edge */
    background-image: url('../images/why2.jpg');
}

/* ensure there's breathing room between images and central text */
.oral .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;        /* narrower container to create side gaps */
    margin: 0 auto;
}

/* Hide decorative images on smaller screens */
@media (max-width: 1200px) {  /* hide earlier on slightly smaller screens to avoid overlap */
    .why-decor-left,
    .why-decor-right {
        display: none;
    }
}

/* responsive */
@media (max-width: 1000px) {
    .main-nav, .header-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .celebrate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .oral-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-explainer, .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .questionnaire-link {
        white-space: normal;
        height: auto;
        min-height: 56px;
        padding: 0.8rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .contact-grid {
        padding: 2rem;
    }

    .package-card.popular {
        transform: scale(1);
    }

    /* Mobile text spacing for why section */
    .section-subtitle {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .intro-headline {
        font-size: 1.8rem;
    }

    .oral-block {
        padding: 2.5rem 1.5rem;
    }

    .contact-row {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .modal-content {
        padding: 1rem;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    /* Mobile text spacing for why section */
    .section-subtitle {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: #EFBE2A;
    color: #000;
}