/* ============================================
   1900 Barker on Mass. — Stylesheet
   Warm · Friendly · Rounded · Forest Green
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-deep: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #B7E4C7;
    --green-xpale: #D8F3DC;
    --cream: #FEFAE0;
    --crust: #FDF6E3;
    --sand: #F5F0E1;
    --warm-white: #FFFCF5;
    --brown-warm: #D4A574;
    --brown-dark: #8B6914;
    --text-dark: #1A2E23;
    --text-mid: #3D5A47;
    --text-light: #6B8F7B;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.10);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.14);
    --shadow-xl: 0 16px 60px rgba(27, 67, 50, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-deep);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Background Pattern ---- */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--green-deep) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--green-deep) 1px, transparent 1px);
    background-size: 48px 48px;
}

.bg-crust {
    background-color: var(--cream);
    position: relative;
}

/* ---- Typography ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-warm);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--green-mid);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-deep);
    color: white;
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(27, 67, 50, 0.32);
}

.btn-secondary {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
}

.btn-secondary:hover {
    background: var(--green-deep);
    color: white;
    transform: translateY(-2px);
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 246, 227, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-deep);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid var(--brown-warm);
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--green-deep);
    background: var(--green-xpale);
}

.nav-cta {
    padding: 10px 22px;
    background: var(--green-deep);
    color: white;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(253, 246, 227, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--green-mid);
    background: var(--green-xpale);
}

.mobile-cta {
    margin-top: 24px;
}

/* ---- Hero ---- */
.hero {
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--green-deep);
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-tag-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--brown-warm);
    border-radius: 2px;
}

.hero-tag span {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

.title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--green-mid);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--green-xpale);
    border-radius: 50px;
    width: fit-content;
}

.hours-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-deep);
}

.hours-label::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hours-text {
    font-size: 0.88rem;
    color: var(--text-mid);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--brown-warm);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.hero-float-card {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    max-width: 200px;
}

.float-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-warm);
    margin-bottom: 4px;
}

.float-card-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ---- Story ---- */
.story {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--green-deep);
    color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--green-deep);
}

.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-accent-dot {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 48px;
    height: 48px;
    background: var(--brown-warm);
    border-radius: 50%;
    opacity: 0.4;
}

.story-content .section-label {
    color: var(--brown-warm);
}

.story-content .section-label::before {
    background: var(--brown-warm);
}

.story-content .section-title {
    color: white;
    margin-bottom: 24px;
}

.story-content .title-italic {
    color: var(--green-pale);
}

.story-content p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown-warm);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
    margin: 4px 0;
}

/* ---- Divider ---- */
.divider {
    padding: 40px 0;
    background: var(--sand);
}

.divider-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.divider-leaf {
    color: var(--green-light);
    opacity: 0.6;
}

.divider-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-mid);
}

/* ---- Menu ---- */
.menu {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.menu-header .section-title {
    margin-bottom: 16px;
}

.menu-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.menu-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.menu-card-icon {
    width: 52px;
    height: 52px;
    background: var(--green-xpale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    margin-bottom: 20px;
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-items li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--sand);
}

.menu-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.item-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}

/* ---- Space ---- */
.space {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
    z-index: 1;
}

.space-header {
    text-align: center;
    margin-bottom: 60px;
}

.space-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.space-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.space-card--large {
    grid-row: 1 / 3;
}

.space-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.space-card:hover img {
    transform: scale(1.04);
}

.space-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.75) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.space-card:hover .space-card-overlay {
    background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0.2) 60%);
}

.space-card-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.space-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ---- Visit ---- */
.visit {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand);
}

.visit-detail:first-child {
    padding-top: 0;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: var(--green-xpale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-link {
    color: var(--green-mid);
    transition: var(--transition);
}

.detail-link:hover {
    color: var(--green-deep);
}

.visit-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-call {
    padding: 14px 28px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 420px;
    display: block;
}

/* ---- Footer ---- */
.footer {
    background: var(--green-deep);
    color: white;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.logo--footer .logo-name,
.logo--footer .logo-sub {
    color: white;
}

.logo--footer .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-nav-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: white;
    padding-left: 4px;
}

.footer-address {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-phone {
    font-size: 0.92rem;
    color: var(--brown-warm);
    transition: var(--transition);
}

.footer-phone:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .story-grid {
        gap: 48px;
    }
    
    .menu-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        padding: 110px 0 0;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-float-card {
        left: -8px;
        bottom: -8px;
    }
    
    .hero-wave svg {
        height: 50px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .story-img-secondary {
        right: -16px;
        bottom: -24px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto 40px;
    }
    
    .space-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .space-card--large {
        grid-row: auto;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-float-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
    }
    
    .image-accent {
        display: none;
    }
    
    .story-img-secondary {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -24px;
        margin-left: 24px;
    }
    
    .visit-cta-group {
        flex-direction: column;
    }
    
    .visit-cta-group .btn {
        justify-content: center;
    }
}
