:root {
    --slate: #333533;
    --gold: #BD9F40;
    --green: #475944;
    --blue: #87A3A9;
    --light-blue: #DBEBED;
    --white: #FFFFFF;

    /* Header offset for content - accounts for fixed utility bar + navbar */
    --header-offset: 116px;
}

@media (max-width: 968px) {
    :root {
        --header-offset: 80px; /* navbar only (utility bar hidden on mobile) */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--slate);
}

/* Utility Bar */
.utility-bar {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.utility-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-promo {
    position: relative;
    color: var(--slate);
    height: 20px;
    overflow: hidden;
    flex: 1;
}

.utility-promo-message {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    visibility: hidden;
}

.utility-promo-message.active {
    transform: translateY(0);
    visibility: visible;
}

.utility-promo-message.sliding-out {
    transform: translateY(-100%);
    visibility: visible;
}

.utility-promo-message.no-transition {
    transition: none;
}

.utility-promo-icon {
    font-size: 1rem;
    line-height: 1;
}

.utility-promo-text {
    font-weight: 500;
    line-height: 1;
}

.utility-promo-text strong {
    font-weight: 700;
}

.utility-promo-sep {
    color: rgba(51, 53, 51, 0.4);
    font-weight: 300;
}

.utility-promo-btn {
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.utility-promo-btn::after {
    content: '→';
    font-size: 0.9em;
    transition: transform 0.2s;
}

.utility-promo-btn:hover {
    color: #1a1a1a;
}

.utility-promo-btn:hover::after {
    transform: translateX(2px);
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-link {
    color: var(--slate);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.utility-link:hover,
.utility-link.active {
    color: #2C1810;
}

.utility-divider {
    color: rgba(51, 53, 51, 0.4);
    font-weight: 300;
}

@media (max-width: 968px) {
    .utility-bar {
        display: none;
    }
}

/* Mobile utility separator in hamburger menu */
.nav-mobile-separator {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px auto;
}

/* Main Content Wrapper - uses CSS variable for header offset */
.main-content {
    padding-top: var(--header-offset);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 36px;
    width: 100%;
    background: rgba(51, 53, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .navbar {
        top: 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 220px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold) !important;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--slate);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: inset 0 0 0 2px var(--gold);
}

.nav-cta::after {
    display: none;
}

.nav-cta-account {
    background: var(--copper, #7D4E37);
    color: white;
}

.nav-cta-account:hover {
    background: transparent;
    color: var(--copper, #7D4E37);
    box-shadow: inset 0 0 0 2px var(--copper, #7D4E37);
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social a {
    color: var(--light-blue);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(189, 159, 64, 0.1);
}

.nav-social a:hover {
    color: var(--gold);
    background: rgba(189, 159, 64, 0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: var(--slate);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset);
    margin-top: calc(-1 * var(--header-offset)); /* Pull up to counteract main-content padding */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg,
        var(--slate) 0%,
        var(--slate) 40%,
        rgba(189, 159, 64, 0.2) 60%,
        rgba(135, 163, 169, 0.15) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle,
        rgba(189, 159, 64, 0.1) 0%,
        transparent 40%);
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
        rgba(135, 163, 169, 0.1) 0%,
        transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-container {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - var(--header-offset));
    width: 100%;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
    width: 100%;
}

.hero-video {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--slate);
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--light-blue);
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--slate);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 159, 64, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--slate);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Section Heading */
.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* Story Section */
.story {
    background-image: url('../assets/Christine-Kehoe.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 53, 51, 0.85);
    z-index: 1;
}

.story .section-heading {
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-main {
    margin-bottom: 80px;
}

.story-text-content {
    padding: 60px;
    color: var(--light-blue);
}

.story-intro {
    margin-bottom: 30px;
}

.story-intro p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--gold);
}

.story-details p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--light-blue);
}

.founder-credit {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gold);
    text-align: center;
}

.founder-credit h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.founder-credit p {
    font-size: 1rem;
    color: var(--light-blue);
    margin-bottom: 0;
}

.story-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.callout {
    background: var(--light-blue);
    color: var(--slate);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.callout:hover {
    transform: translateY(-10px);
}

.callout h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.callout p {
    font-size: 1rem;
    color: var(--green);
}

/* Menu Section */
.menu {
    background: var(--white);
    padding: 100px 0;
}

.menu .section-heading {
    color: var(--slate);
}

.menu-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--green);
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.menu-item-image {
    width: 100%;
    height: 250px;
    border: 4px solid var(--gold);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--slate);
}

.menu-item p {
    font-size: 1rem;
    color: var(--green);
}

.menu-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

/* Community Section */
.community {
    background: var(--green);
    color: var(--white);
    padding: 100px 0;
}

.community .section-heading {
    color: var(--white);
}

.community-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--light-blue);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(189, 159, 64, 0.3);
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(189, 159, 64, 0.2);
    transform: translateY(-5px);
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.event-card p {
    font-size: 1rem;
    color: var(--light-blue);
}

/* Catering Section */
.catering {
    background: var(--blue);
    color: var(--white);
    padding: 100px 0;
}

.catering .section-heading {
    color: var(--white);
}

.catering-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--light-blue);
}

.catering-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.catering-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(189, 159, 64, 0.3);
    transition: all 0.3s ease;
}

.catering-feature:hover {
    background: rgba(189, 159, 64, 0.2);
    transform: translateY(-5px);
}

.catering-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.catering-feature p {
    font-size: 1rem;
    color: var(--light-blue);
}

.catering-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(51, 53, 51, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 50px;
    border: none;
    border-radius: 30px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: var(--slate);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 15px;
    text-align: center;
}

.modal-intro {
    text-align: center;
    color: var(--green);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Form Styles */
.catering-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--slate);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--slate);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(189, 159, 64, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--slate);
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(189, 159, 64, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.form-actions .btn {
    min-width: 150px;
}

/* Merchandise Section */
.merchandise {
    background: var(--slate);
    color: var(--white);
    padding: 100px 0;
}

.merchandise .section-heading {
    color: var(--gold);
}

.merch-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--light-blue);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.merch-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.merch-item-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #000 0%, #222 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.merch-item-image::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(45deg,
        transparent 30%,
        var(--gold) 35%,
        var(--gold) 40%,
        transparent 45%,
        transparent 55%,
        var(--blue) 60%,
        var(--blue) 65%,
        transparent 70%);
    opacity: 0.6;
    animation: slideStreak 8s ease-in-out infinite;
}

@keyframes slideStreak {
    0%, 100% { transform: translate(-100%, 100%); }
    50% { transform: translate(100%, -100%); }
}

.merch-label {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    padding: 10px 20px;
    background: rgba(189, 159, 64, 0.1);
    border-radius: 25px;
    border: 2px solid var(--gold);
}

/* Visit Section */
.visit {
    background: var(--light-blue);
    padding: 100px 0;
}

.visit .section-heading {
    color: var(--slate);
}

.visit-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--green);
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 20px;
}

.visit-info {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
}

.visit-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.visit-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--green);
}

/* Footer */
.footer {
    background: var(--slate);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--light-blue);
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--light-blue);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--blue);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(51, 53, 51, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        min-height: calc(100vh - var(--header-offset));
    }

    .hero-content {
        padding: 70px 20px;
        flex: none;
        min-height: auto;
    }

    .hero-text {
        text-align: center;
    }

    .hero-video {
        height: 40vh;
        width: 100%;
        flex: none;
    }

    .hero-background {
        width: 100%;
    }

    .hero-headline {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .hero-cta {
        justify-content: center;
        gap: 12px;
    }

    .btn {
        width: auto;
        min-width: 130px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .story-text-content {
        padding: 40px 30px;
    }

    .story-intro p {
        font-size: 1.2rem;
    }

    .story-details p {
        font-size: 1.05rem;
    }

    .founder-credit {
        margin-top: 30px;
        padding-top: 20px;
    }

    .story-callouts,
    .menu-grid,
    .events-grid,
    .merch-grid,
    .catering-features {
        grid-template-columns: 1fr;
    }

    .visit-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Modal responsive styles */
    .modal-content {
        padding: 30px 20px;
        margin: 5% auto;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 2rem;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-logo {
        width: 200px;
    }
}