@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

.wedding-detail-page {
    --green-dark: #203b2b;
    --green-mid: #385743;
    --cream: #f7f4ef;
    --warm: #eeeae4;
    --card: #ffffff;
    --ink: #334238;
    --muted: #72756f;
    --gold: #c5a05f;
    --line: rgba(45, 64, 51, 0.1);
    --shadow: 0 16px 36px rgba(40, 48, 40, 0.11);
    --radius: 14px;
    overflow: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
}

.wedding-detail-page *,
.wedding-detail-page *::before,
.wedding-detail-page *::after {
    box-sizing: border-box;
}

.wedding-detail-page img {
    display: block;
    width: 100%;
}

.service-container {
    width: min(100% - 44px, 1080px);
    margin: 0 auto;
}

.service-hero {
    position: relative;
    isolation: isolate;
    min-height: 610px;
    display: grid;
    place-items: center;
    padding: 128px 0 76px;
    overflow: hidden;
    text-align: center;
}

.hero-bg,
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-photography .hero-bg {
    background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/gary-ashley-preview-0015_orig.jpg');
}

.service-florals .hero-bg {
    background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/published/screen-shot-2023-04-15-at-17-00-06.png?1681599714');
    background-position: center 45%;
}

.service-photography .cta-bg {
    background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/truely-lana-ceremony-0050_2_orig.jpg');
}

.service-florals .cta-bg {
    background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/published/screen-shot-2023-04-15-at-16-09-38.png?1681599760');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(26, 41, 31, 0.5), rgba(26, 41, 31, 0.58));
}

.hero-content {
    width: min(780px, 100% - 32px);
    color: #fff;
}

.section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content .section-eyebrow,
.cta-content .section-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.hero-content h1,
.section-heading h2,
.intro-copy h2,
.cta-content h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(4rem, 8vw, 7.4rem);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.34);
}

.hero-content p {
    width: min(690px, 100%);
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-tags span {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.service-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 25px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
}

.service-btn-primary {
    border-color: #fff;
    background: #fff;
    color: var(--green-dark);
}

.contact-section .service-btn-primary,
.inquiry-form .service-btn-primary {
    border-color: var(--green-mid);
    background: var(--green-mid);
    color: #fff;
}

.service-btn-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 24px;
    height: 42px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff;
    animation: serviceScroll 1.8s ease-in-out infinite;
}

@keyframes serviceScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}

.service-section {
    padding: 92px 0;
}

.section-cream {
    background: var(--cream);
}

.section-warm {
    background: var(--warm);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
    gap: 74px;
    align-items: center;
}

.intro-copy h2,
.section-heading h2 {
    color: var(--ink);
    font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.intro-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.intro-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-image img {
    height: 390px;
    object-fit: cover;
}

.section-heading {
    /* width: min(720px, 100%); */
    margin: 0 auto 54px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.testimonial-card {
    min-height: 210px;
    padding: 32px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 12px 28px rgba(42, 49, 43, 0.08);
    text-align: center;
}

.feature-card span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--green-dark);
    color: #fff;
    font-size: 1.18rem;
}

.feature-card h3,
.process-step h3 {
    margin: 0;
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.feature-card p,
.process-step p,
.testimonial-card p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}

.gallery-item {
    min-height: 230px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #ddd;
    box-shadow: 0 10px 26px rgba(45, 50, 45, 0.08);
}

.gallery-item.tall {
    grid-row: span 2;
    min-height: 476px;
}

.gallery-item.portrait {
    grid-column: 2;
}

.gallery-item img {
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.process-wrap {
    width: min(100% - 44px, 820px);
}

.process-list {
    display: grid;
    gap: 6px;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 22px;
    align-items: start;
    padding: 13px 0;
}

.process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 49px;
    bottom: -19px;
    left: 17px;
    width: 2px;
    background: rgba(45, 64, 51, 0.13);
}

.process-step>span,
.process-step>.step-num {
    position: relative;
    z-index: 1;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-mid);
    color: #fff;
    font-size: 0;
}

.process-step>span::before,
.process-step>.step-num::before {
    content: "";
    width: 18px;
    margin-top: 5px;
    height: 18px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}
.process-step>span::after,
.process-step>.step-num::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 14px;
    width: 9px;
    height: 5px;
    border-bottom: 1.7px solid currentColor;
    border-left: 1.7px solid currentColor;
    transform: rotate(-45deg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.testimonial-card {
    position: relative;
    min-height: 255px;
    text-align: left;
}

.testimonial-card>i {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.stars {
    margin-top: 10px;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--ink);
    font-size: 0.84rem;
}

.testimonial-card span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.76rem;
}

.faq-wrap {
    width: min(100% - 44px, 760px);
}

.service-accordion {
    display: grid;
    gap: 15px;
}

.service-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.7);
}

.service-accordion .accordion-button {
    min-height: 58px;
    padding: 0 26px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--green-dark);
}

.service-accordion .accordion-body {
    padding: 0 26px 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.contact-section {
    padding-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-wrap {
    width: min(100% - 44px, 760px);
    margin: 0 auto !important;
}

.inquiry-form {
    display: grid;
    gap: 18px;
    width: 100%;
    margin: 0 auto !important;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--warm);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.inquiry-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.9rem;
    outline: none;
    padding: 13px 15px;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form button {
    width: fit-content;
    border: 0;
}

.cta-banner {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    display: grid;
    place-items: center;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    margin: 0px 0px 0px;
}

.cta-content {
    color: #fff;
}

.cta-content h2 {
    width: min(780px, 100%);
    margin: 0 auto;
    color: #fff;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.cta-content p {
    width: min(650px, 100%);
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Generated wedding service pages: align legacy class names to this design system. */
.wedding-detail-page .hero {
    position: relative;
    isolation: isolate;
    min-height: 610px;
    display: grid;
    place-items: center;
    padding: 128px 0 76px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.wedding-detail-page .hero-inner {
    position: absolute;
    z-index: 1;
    width: min(780px, 100% - 32px);
    margin-right: auto;
    margin-left: auto;
    color: #fff;
    text-align: center;
}

.wedding-detail-page .hero .hero-overlay {
    z-index: 0;
}

.wedding-detail-page .hero-eyebrow,
.wedding-detail-page .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wedding-detail-page .hero-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.wedding-detail-page .hero-inner h1 {
    margin: 0;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7.4rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.34);
}

.wedding-detail-page .hero-desc {
    width: min(690px, 100%);
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.65;
}

.wedding-detail-page .hero-tag {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 600;
}

.wedding-detail-page .hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.wedding-detail-page .btn-hero-solid,
.wedding-detail-page .btn-hero-ghost,
.wedding-detail-page .btn-ghost-white,
.wedding-detail-page .btn-whatsapp {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 25px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.wedding-detail-page .btn-hero-solid,
.wedding-detail-page .btn-ghost-white {
    border-color: #fff;
    background: #fff;
    color: var(--green-dark);
}

.wedding-detail-page .btn-hero-ghost,
.wedding-detail-page .btn-whatsapp {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.wedding-detail-page .btn-hero-solid:hover,
.wedding-detail-page .btn-hero-ghost:hover,
.wedding-detail-page .btn-ghost-white:hover,
.wedding-detail-page .btn-whatsapp:hover {
    transform: translateY(-2px);
}

.wedding-detail-page .hero-scroll {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    left: 50%;
    width: 24px;
    height: 42px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
}

.wedding-detail-page .hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff;
    animation: serviceScroll 1.8s ease-in-out infinite;
}

.wedding-detail-page .intro-section,
.wedding-detail-page .features-section,
.wedding-detail-page .gallery-section,
.wedding-detail-page .process-section,
.wedding-detail-page .testimonials-section,
.wedding-detail-page .faq-section {
    padding: 92px 0;
}

.wedding-detail-page .intro-section,
.wedding-detail-page .process-section,
.wedding-detail-page .faq-section {
    background: var(--cream);
}

.wedding-detail-page .features-section,
.wedding-detail-page .gallery-section,
.wedding-detail-page .testimonials-section {
    background: var(--warm);
}

.wedding-detail-page .intro-heading,
.wedding-detail-page h2.section-heading {
    margin: 0;
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}

.wedding-detail-page .intro-body {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.wedding-detail-page .intro-img-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wedding-detail-page .intro-img-wrap img {
    height: 390px;
    object-fit: cover;
}

.wedding-detail-page .feat-card,
.wedding-detail-page .testi-card {
    min-height: 210px;
    padding: 32px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 12px 28px rgba(42, 49, 43, 0.08);
    text-align: center;
}

.wedding-detail-page .feat-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--green-dark);
    color: #fff;
    font-size: 1.18rem;
}

.wedding-detail-page .feat-title,
.wedding-detail-page .step-title {
    margin: 0;
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.wedding-detail-page .feat-text,
.wedding-detail-page .step-text {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.wedding-detail-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}

.wedding-detail-page .g-item {
    min-height: 230px;
    overflow: hidden;
    border-radius: 10px;
    background: #ddd;
    box-shadow: 0 10px 26px rgba(45, 50, 45, 0.08);
}

.wedding-detail-page .g-item.tall {
    grid-row: span 2;
    min-height: 476px;
}

.wedding-detail-page .g-item.wide {
    grid-column: span 2;
}

.wedding-detail-page .g-item img {
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.wedding-detail-page .g-item:hover img {
    transform: scale(1.05);
}

.wedding-detail-page .process-section .col-lg-8,
.wedding-detail-page .faq-section .col-lg-8 {
    width: min(100% - 44px, 820px);
}

.wedding-detail-page .step-num {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-mid);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.process-step>.step-num {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    background: var(--green-mid);
    color: #fff;
    font-size: 0;
}

.process-step>.step-num::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.process-step>.step-num::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 13px;
    width: 9px;
    height: 5px;
    border-bottom: 1.7px solid currentColor;
    border-left: 1.7px solid currentColor;
    transform: rotate(-45deg);
}

.wedding-detail-page .testi-card {
    position: relative;
    min-height: 255px;
    text-align: left;
}

.wedding-detail-page .testi-icon {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.wedding-detail-page .testi-stars {
    margin-top: 10px;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.wedding-detail-page .testi-quote {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.wedding-detail-page .testi-name {
    margin: 20px 0 0;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
}

.wedding-detail-page .testi-date {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.wedding-detail-page .faq-accordion {
    display: grid;
    gap: 15px;
}

.wedding-detail-page .faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.7);
}

.wedding-detail-page .faq-accordion .accordion-button {
    min-height: 58px;
    padding: 0 26px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.wedding-detail-page .faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--green-dark);
}

.wedding-detail-page .faq-accordion .accordion-body {
    padding: 0 26px 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.wedding-detail-page .cta-banner[style] {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wedding-detail-page .cta-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(31, 55, 39, 0.72), rgba(31, 55, 39, 0.78));
}

.wedding-detail-page .cta-banner-inner {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.wedding-detail-page .cta-banner-inner h2 {
    width: min(780px, 100%);
    margin: 0 auto;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}

.wedding-detail-page .cta-banner-inner p {
    width: min(650px, 100%);
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wedding-detail-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item.portrait {
        grid-column: auto;
    }

    .wedding-detail-page .g-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {

    .service-container,
    .process-wrap,
    .faq-wrap,
    .contact-wrap {
        width: min(100% - 30px, 100%);
    }

    .service-hero {
        min-height: 670px;
        padding-top: 112px;
    }

    .wedding-detail-page .hero {
        min-height: 670px;
        padding-top: 112px;
    }

    .service-section {
        padding: 68px 0;
    }

    .wedding-detail-page .intro-section,
    .wedding-detail-page .features-section,
    .wedding-detail-page .gallery-section,
    .wedding-detail-page .process-section,
    .wedding-detail-page .testimonials-section,
    .wedding-detail-page .faq-section {
        padding: 68px 0;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .wedding-detail-page .hero-inner h1 {
        font-size: 4rem;
    }

    .feature-grid,
    .testimonial-grid,
    .masonry-grid,
    .wedding-detail-page .gallery-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.tall {
        min-height: 260px;
        grid-row: auto;
    }

    .wedding-detail-page .g-item,
    .wedding-detail-page .g-item.tall {
        min-height: 260px;
        grid-row: auto !important;
    }

    .intro-image img {
        height: 300px;
    }

    .wedding-detail-page .intro-img-wrap img {
        height: 300px;
    }

    .service-btn,
    .wedding-detail-page .btn-hero-solid,
    .wedding-detail-page .btn-hero-ghost,
    .wedding-detail-page .btn-ghost-white,
    .wedding-detail-page .btn-whatsapp {
        width: min(100%, 290px);
    }
}
