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

:root {
    --page: #faf8f5;
    --header-bg: #fdfdfd;
    --surface: #ffffff;
    --linen: #eeebe5;
    --sage: #6e7e6b;
    --sage-soft: #8a9a86;
    --green: #4a5d4e;
    --green-dark: #35463a;
    --salmon: #d4a396;
    --text: #333333;
    --text-soft: #555555;
    --muted: #a39f99;
    --shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
    --content: min(1120px, calc(100vw - 40px));
    --narrow: min(760px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--green);
    color: var(--surface);
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--header-bg);
    border-bottom: 1px solid var(--linen);
    transition: transform 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 1px));
}

.header-inner {
    width: var(--content);
    margin: 0 auto;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--green);
    line-height: 1;
}

.brand-logo {
    width: clamp(150px, 22vw, 250px);
    max-height: 72px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 500;
    letter-spacing: 0;
}

.brand-tagline {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--linen);
    background: var(--surface);
    color: var(--green);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    content: '';
    pointer-events: none;
}

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

.site-nav a {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
    color: var(--salmon);
}

.nav-cta {
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--green);
    color: var(--surface) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--green-dark);
}

.hero {
    min-height: calc(100svh - 86px);
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    color: var(--surface);
    background: var(--green);
}

.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(47, 58, 49, 0.74), rgba(47, 58, 49, 0.24) 58%, rgba(47, 58, 49, 0.1));
    content: '';
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: var(--content);
    margin: 0 auto;
    padding: 12vh 0 10vh;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 14px;
    color: var(--salmon);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.cta-panel h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 0.98;
    color: var(--green);
}

.hero h1 {
    max-width: 760px;
    color: var(--surface);
    font-size: clamp(3.2rem, 9vw, 7.8rem);
}

.hero p {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions,
.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.button {
    padding: 13px 20px;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: var(--green);
    color: var(--surface);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
}

.button-light {
    background: var(--surface);
    border-color: var(--surface);
    color: var(--green);
}

.button-outline {
    background: transparent;
    color: var(--green);
}

.text-link {
    color: var(--green);
    border-bottom: 2px solid var(--salmon);
}

.hero .text-link {
    color: var(--surface);
}

.section {
    padding: clamp(72px, 10vw, 128px) 0;
}

.section-compact {
    padding: clamp(54px, 8vw, 86px) 0;
}

.section-soft {
    background: var(--surface);
}

.section-sage {
    background: rgba(138, 154, 134, 0.18);
}

.content,
.section-heading,
.page-hero-inner,
.split,
.footer-inner {
    width: var(--content);
    margin: 0 auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 44px;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2,
.page-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.3rem);
}

.section-heading p,
.lead {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
}

.intro-statement {
    width: var(--narrow);
    margin: 0 auto;
    text-align: center;
}

.intro-statement p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.1;
}

.service-grid,
.article-grid,
.investment-grid,
.value-grid,
.curriculum-grid {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.article-card,
.investment-card,
.value-card,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--linen);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.03);
}

.service-card,
.value-card,
.faq-item {
    padding: 28px;
}

.service-card h3,
.article-card h3,
.investment-card h3,
.value-card h3,
.process-step h3,
.journal-feature h2,
.package-summary h2 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: 2rem;
    line-height: 1.05;
}

.service-card p,
.article-card p,
.investment-card p,
.value-card p,
.process-step p,
.faq-item p {
    margin: 0;
    color: var(--text-soft);
}

.simple-list,
.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.simple-list li,
.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 22px;
    color: var(--text-soft);
}

.simple-list li::before,
.check-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--salmon);
    content: '*';
}

.process-line {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    padding-top: 26px;
    border-top: 1px solid var(--sage-soft);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--salmon);
    color: var(--surface);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.editorial-grid {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.9fr;
    grid-template-rows: 280px 280px;
    gap: 18px;
}

.event-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--green);
}

.event-tile:first-child {
    grid-row: 1 / span 2;
}

.event-tile img,
.article-card img,
.split-image img,
.page-hero-image img,
.journal-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(47, 58, 49, 0.66));
    content: '';
}

.event-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: var(--surface);
}

.event-caption strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    line-height: 1;
}

.event-caption span {
    display: block;
    margin-top: 6px;
    font-size: 0.76rem;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonial-wrap {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.quote {
    margin: 0;
    padding: 34px;
    border-left: 4px solid var(--salmon);
    background: rgba(255, 255, 255, 0.72);
}

.quote p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.quote cite {
    display: block;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.review-carousel {
    width: var(--content);
    margin: 0 auto;
}

.review-track {
    position: relative;
    display: grid;
}

.review-slide {
    position: relative;
    grid-area: 1 / 1;
    display: grid;
    align-content: center;
    gap: 22px;
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid var(--linen);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.review-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.review-rating {
    color: var(--salmon);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review-slide blockquote {
    margin: 0;
}

.review-slide blockquote p {
    max-width: 900px;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    line-height: 1.08;
}

.review-slide footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    color: var(--text-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.review-slide footer strong {
    color: var(--green);
}

.review-controls {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
    scroll-margin-top: 130px;
}

.review-control {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: transparent;
    color: var(--green);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    scroll-margin-top: 130px;
    touch-action: manipulation;
}

.review-control:hover,
.review-control:focus-visible {
    background: var(--green);
    color: var(--surface);
}

.review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: min(560px, 100%);
}

.review-dot {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    scroll-margin-top: 130px;
    touch-action: manipulation;
}

.review-dot::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    border: 1px solid var(--green);
    border-radius: 50%;
    background: transparent;
    content: '';
    transform: translate(-50%, -50%);
}

.review-dot.is-active::before {
    background: var(--green);
}

.review-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.review-links a {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid var(--salmon);
}

.review-timer {
    position: relative;
    width: min(320px, 100%);
    height: 3px;
    margin: 18px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(74, 93, 78, 0.18);
}

.review-timer span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--salmon);
}

.review-timer span.is-running {
    animation: reviewTimer 7000ms linear forwards;
}

.review-carousel:hover .review-timer span,
.review-carousel:focus-within .review-timer span {
    animation-play-state: paused;
}

@keyframes reviewTimer {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.split.reverse {
    grid-template-columns: 1fr 0.9fr;
}

.split-image {
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--sage-soft);
}

.split-copy p {
    color: var(--text-soft);
}

.about-copy p {
    margin: 0 0 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.stats-strip div {
    padding: 24px;
    border: 1px solid var(--linen);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.03);
}

.stats-strip strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 10px;
    color: var(--text-soft);
}

.article-card {
    overflow: hidden;
}

.article-card img {
    height: 250px;
}

.article-body {
    padding: 24px;
}

.meta {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
}

.investment-grid {
    align-items: stretch;
}

.investment-card {
    overflow: hidden;
    transition: transform 0.2s ease;
}

.investment-card:hover {
    transform: translateY(-4px);
}

.investment-media {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 28px 62px;
    text-align: center;
    background: linear-gradient(rgba(138, 154, 134, 0.55), rgba(138, 154, 134, 0.82)), var(--sage-soft);
}

.investment-media::before {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    content: '';
}

.investment-media h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--surface);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
}

.price-badge {
    position: absolute;
    left: 26px;
    bottom: -36px;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(255, 255, 255, 0.65);
    outline: 4px solid var(--salmon);
    border-radius: 50%;
    background: var(--salmon);
    color: var(--surface);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
}

.investment-content {
    padding: 58px 28px 30px;
}

.investment-note {
    width: var(--narrow);
    margin: 34px auto 0;
    color: var(--text-soft);
    text-align: center;
}

.contact-panel {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 38px;
    align-items: start;
}

.contact-card,
.form-card,
.cta-panel,
.package-summary {
    background: var(--surface);
    border: 1px solid var(--linen);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card,
.cta-panel,
.package-summary {
    padding: 34px;
}

.contact-card h2,
.form-card h2 {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: 2.5rem;
    line-height: 1;
}

.contact-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li + li {
    margin-top: 14px;
}

.contact-list a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--linen);
}

.contact-social a {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-social a:hover,
.contact-social a:focus-visible {
    color: var(--salmon);
}

.office-address {
    color: var(--text-soft);
}

.form-card {
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--linen);
    border-radius: 8px;
    background: var(--page);
    color: var(--text);
    padding: 12px 13px;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--salmon);
    outline: 3px solid rgba(212, 163, 150, 0.2);
}

.form-status {
    min-height: 24px;
    margin: 16px 0 0;
    color: var(--green);
    font-weight: 500;
}

.page-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--linen);
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
    padding: clamp(58px, 9vw, 100px) 0;
}

.page-hero p {
    max-width: 620px;
    color: var(--text-soft);
}

.page-hero-image {
    min-height: 430px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--sage-soft);
}

.journal-feature {
    width: var(--content);
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--linen);
    border-radius: 10px;
    overflow: hidden;
}

.journal-feature img {
    min-height: 420px;
}

.journal-feature-copy {
    padding: clamp(28px, 4vw, 48px);
}

.faq-list {
    width: var(--narrow);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item h3 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 1rem;
}

.site-footer {
    background: var(--green);
    color: rgba(255, 255, 255, 0.82);
    padding: 54px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
}

.footer-brand {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--surface);
    font-size: 2.3rem;
    line-height: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 16px;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
    color: var(--salmon);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--linen);
        border-radius: 10px;
        background: var(--surface);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 13px 12px;
    }

    .section-heading,
    .page-hero-inner,
    .split,
    .split.reverse,
    .testimonial-wrap,
    .contact-panel,
    .journal-feature {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .article-grid,
    .investment-grid,
    .value-grid,
    .curriculum-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-line {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px 260px;
    }

    .event-tile:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .split-image,
    .page-hero-image {
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    :root {
        --content: min(100vw - 30px, 1120px);
        --narrow: min(100vw - 30px, 760px);
    }

    .header-inner {
        min-height: 76px;
    }

    .site-nav {
        top: 76px;
        left: 15px;
        right: 15px;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .brand-logo {
        width: 156px;
        max-height: 58px;
    }

    .hero {
        min-height: 680px;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(47, 58, 49, 0.22), rgba(47, 58, 49, 0.78));
    }

    .service-grid,
    .article-grid,
    .investment-grid,
    .value-grid,
    .curriculum-grid,
    .process-line,
    .stats-strip,
    .editorial-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .editorial-grid {
        grid-template-rows: repeat(4, 280px);
    }

    .testimonial-wrap,
    .contact-panel,
    .journal-feature {
        gap: 18px;
    }

    .review-controls {
        gap: 8px;
        align-items: flex-start;
    }

    .review-control {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .review-dots {
        gap: 4px;
    }

    .quote,
    .contact-card,
    .form-card,
    .cta-panel,
    .package-summary {
        padding: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}