/* CSS Variables defining the Waybites brand */
:root {
    /* Primary Colors */
    --tamarind-red: #C94C2D;
    --curry-leaf-green: #3F6B43;
    --coffee-cream: #F7F1E8;
    --charcoal-brown: #2A241F;
    --chili-gold: #E4A937;

    /* Neutral Colors */
    --cotton-white: #FFFDF9;
    --matka-clay: #ECE3D7;
    --muted-sand: #B8A998;
    --stone-grey: #6C5F55;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-subhead: 'Oswald', sans-serif;
    --font-body: 'Merriweather', serif;
    --font-ui: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-pad: 4rem 0;
    --col-gap: 2rem;
}

/* Base Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--coffee-cream);
    color: var(--charcoal-brown);
    font-family: var(--font-body);
    line-height: 1.6;
    /* More subtle and natural newspaper texture: Soft grain only */
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" opacity="0.04"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 1 0"/></filter><rect width="300" height="300" filter="url(%23n)"/></svg>');
    background-size: 300px 300px;
}

a {
    color: var(--charcoal-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--tamarind-red);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--charcoal-brown);
}

.newspaper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typographic Defaults */
.section-headline {
    font-size: 2.5rem;
    border-bottom: 2px solid var(--charcoal-brown);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

/* Dividing Lines (The Newspaper Grid Feel) */
.masthead-divider {
    border-top: 5px solid var(--charcoal-brown);
    border-bottom: 1px solid var(--charcoal-brown);
    height: 10px;
    margin: 2rem 0;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--charcoal-brown);
    margin: 3rem 0;
}

.thick-divider {
    border: none;
    border-top: 4px solid var(--charcoal-brown);
    border-bottom: 1px solid var(--charcoal-brown);
    height: 10px;
    margin: 4rem 0;
}

/* Top Marquee */
.breaking-marquee {
    background-color: var(--tamarind-red);
    color: var(--cotton-white);
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid var(--charcoal-brown);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    padding: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Masthead */
.masthead {
    text-align: center;
    padding-top: 2rem;
}

.masthead-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-subhead);
    font-size: 0.9rem;
    text-transform: uppercase;
    border-top: 1px solid var(--charcoal-brown);
    border-bottom: 1px solid var(--charcoal-brown);
    padding: 0.5rem 0;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased spacing */
}

.brand-logo {
    max-height: 120px;
    object-fit: contain;
}

.logo-mark {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.subtitle-languages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    /* Increased gap */
    font-size: 1.25rem;
    color: var(--stone-grey);
    margin-bottom: 1rem;
}

.tamil-text {
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
}

.kannada-text {
    font-family: 'Noto Serif Kannada', serif;
    font-weight: 700;
}

/* Layout Grids */
.layout-grid-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

/* Hero Section */
.hero-headline {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.deck-text {
    font-family: var(--font-subhead);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--stone-grey);
}

.hero-story {
    column-count: 2;
    column-gap: 2rem;
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 2rem;
}

.hero-story p {
    margin-bottom: 1rem;
}

.hero-story p:first-of-type {
    margin-top: 0;
}

.dropcap {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--charcoal-brown);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-subhead);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid var(--charcoal-brown);
    box-shadow: 4px 4px 0 var(--charcoal-brown);
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--charcoal-brown);
}

.primary-cta {
    background-color: var(--tamarind-red);
    color: var(--cotton-white);
}

.primary-cta:hover {
    color: var(--cotton-white);
    background-color: #a83d22;
}


/* Photo Frame & Mock UI */
.photo-frame {
    border: 2px solid var(--charcoal-brown);
    padding: 0.5rem;
    background: var(--cotton-white);
    box-shadow: 8px 8px 0 rgba(42, 36, 31, 0.1);
}

.photo-caption {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--stone-grey);
    margin-top: 0.5rem;
    font-style: italic;
    border-top: 1px solid var(--matka-clay);
    padding-top: 0.5rem;
}

/* Constructing Mock Mobile UI purely in CSS */
.mock-mobile-ui {
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--matka-clay);
    border: 1px solid var(--charcoal-brown);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

/* Map overlay integration */
.map-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* Blend mode to make the real map look more vintage */
    mix-blend-mode: luminosity;
    opacity: 0.9;
}

.map-overlay-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: var(--cotton-white);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    /* Above Leaflet map */
}

.mock-sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--matka-clay);
    border-radius: 2px;
    margin: 0 auto 1rem auto;
}

.mock-place-info h3 {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.mock-place-info p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--stone-grey);
    margin-bottom: 1rem;
}

.mock-video-thumbnail {
    background: var(--charcoal-brown);
    flex-grow: 1;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 80px;
}

.mock-video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.mock-play-button {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--charcoal-brown);
    transform: translateX(1px);
}

.mock-action-buttons {
    display: flex;
    gap: 0.5rem;
}

.mock-action-buttons div {
    flex: 1;
    padding: 0.5rem;
    text-align: center;
    border-radius: 2rem;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-save {
    background: var(--matka-clay);
    color: var(--charcoal-brown);
}

.btn-go {
    background: var(--primary-cta, #C94C2D);
    color: white;
}

/* Problem Section */
.problem-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.problem-columns .col {
    border-right: 1px solid var(--charcoal-brown);
    padding-right: 3rem;
}

.problem-columns .col:last-child {
    border-right: none;
    padding-right: 0;
}

.icon-block {
    margin-bottom: 1.25rem;
}

.np-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 2px solid var(--charcoal-brown);
    border-radius: 2px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--charcoal-brown);
    background: var(--cotton-white);
    box-shadow: 3px 3px 0 rgba(42, 36, 31, 0.12);
    font-family: var(--font-serif);
}

.problem-columns h3 {
    font-size: 1.3rem;
    font-family: var(--font-subhead);
    text-transform: uppercase;
}

/* How It Works Layer */
.itinerary-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.itinerary-list {
    list-style: none;
    border-top: 2px solid var(--charcoal-brown);
}

.itinerary-list li {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--matka-clay);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tamarind-red);
    width: 60px;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-subhead);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* -------------------------------------
   CSS Phone Mockup (How It Works)
------------------------------------- */
.css-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin: 2rem 0;
}

.phone-chassis {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    box-shadow: inset 0 0 0 8px #1a1a1a, inset 0 0 0 10px #444, 15px 25px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotateX(5deg) rotateY(-10deg) rotateZ(2deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.phone-chassis:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--cotton-white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: var(--cotton-white);
    padding: 2.5rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    z-index: 5;
}

.mockup-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
}

.mockup-icons {
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--charcoal-brown);
}

.mockup-map {
    flex-grow: 1;
    position: relative;
    background: #e3dcd1;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, transparent 24%, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 76%, transparent 77%, transparent);
    background-size: 40px 40px;
}

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--tamarind-red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) translateY(-20px);
    opacity: 0;
    animation: dropPin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite alternate;
}

.active-pin {
    background: #ffaa00;
    width: 20px;
    height: 20px;
    z-index: 2;
    animation: pulsePin 2s infinite;
    opacity: 1;
    transform: rotate(-45deg);
}

@keyframes dropPin {
    0% {
        transform: rotate(-45deg) translateY(-20px);
        opacity: 0;
    }

    20%,
    100% {
        transform: rotate(-45deg) translateY(0);
        opacity: 1;
    }
}

@keyframes pulsePin {
    0% {
        transform: scale(1) rotate(-45deg);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    }

    70% {
        transform: scale(1.1) rotate(-45deg);
        box-shadow: 0 0 0 15px rgba(255, 170, 0, 0);
    }

    100% {
        transform: scale(1) rotate(-45deg);
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0);
    }
}

.mockup-bottom-sheet,
.feature-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--cotton-white);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    animation: slideUpSheet 8s ease-in-out infinite;
    z-index: 1000;
}

.feature-overlay {
    height: auto;
    max-height: 80%;
}

@keyframes slideUpSheet {

    0%,
    10% {
        bottom: -100%;
    }

    20%,
    80% {
        bottom: 0;
    }

    90%,
    100% {
        bottom: -100%;
    }
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    margin: 0 auto 15px;
}

.sheet-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sheet-img-placeholder {
    width: 50px;
    height: 50px;
    background: var(--matka-clay);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.sheet-text {
    flex: 1;
}

.sheet-text strong {
    font-size: 0.85rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 3px;
}

.sheet-text .stars {
    color: #ffaa00;
    font-size: 0.75rem;
    font-weight: bold;
}

.sheet-btn {
    width: 100%;
    background: var(--tamarind-red);
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* -------------------------------------
   Features (Newspaper Layout)
------------------------------------- */
.newspaper-article {
    margin: 4rem 0;
    border-top: 4px solid var(--charcoal-brown);
    border-bottom: 2px solid var(--charcoal-brown);
    padding: 2rem 0;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--charcoal-brown);
}

.article-header h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 800px;
}

.article-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.article-box {
    padding-right: 2rem;
    border-right: 1px solid #c0b5a3;
    /* Newspaper column divider */
    display: flex;
    flex-direction: column;
}

.article-box:last-child {
    border-right: none;
    padding-right: 0;
}

.article-box.span-2 {
    grid-column: span 2;
    border-right: none;
    padding-right: 0;
}

.highlight-box {
    background: rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    border: 1px solid var(--charcoal-brown);
    margin-bottom: 1rem;
}

.article-box .category-tag {
    font-family: var(--font-subhead);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--tamarind-red);
    padding-bottom: 2px;
    margin-bottom: 1rem;
    align-self: flex-start;
    color: var(--tamarind-red);
    font-weight: 700;
}

.article-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.article-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    /* Newspaper text justification */
    text-align: justify;
    hyphens: auto;
}

/* Use Case Cards */
.cards-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: var(--cotton-white);
    border: 1px solid var(--charcoal-brown);
    box-shadow: 4px 4px 0 rgba(42, 36, 31, 0.1);
    transition: transform 0.2s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 rgba(42, 36, 31, 0.15);
}

.card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--matka-clay);
    display: block;
}

.ux-mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
}

/* Waitlist Form */
.waitlist-section {
    padding: 2rem 0;
}

.cutout-wrapper {
    position: relative;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cutout-scissors {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 1.5rem;
    color: var(--charcoal-brown);
}

.cutout-form {
    border: 2px dashed var(--charcoal-brown);
    padding: 3rem;
    background: var(--cotton-white);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--matka-clay);
    padding-bottom: 1rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-family: var(--font-subhead);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.required {
    color: var(--tamarind-red);
}

.newspaper-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--charcoal-brown);
    font-family: var(--font-ui);
    background: transparent;
    font-size: 1rem;
}

.newspaper-input:focus {
    outline: none;
    border-color: var(--tamarind-red);
    box-shadow: 0 0 0 1px var(--tamarind-red);
}

.checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkboxes label {
    font-family: var(--font-ui);
    text-transform: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

#success-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--curry-leaf-green);
    color: var(--cotton-white);
    text-align: center;
}

.hidden {
    display: none;
}

/* Footer */
.site-footer {
    margin-top: 6rem;
    padding-bottom: 2rem;
}

.footer-top-line {
    border-top: 4px solid var(--charcoal-brown);
    margin-bottom: 2px;
}

.footer-bottom-line {
    border-top: 1px solid var(--charcoal-brown);
    margin-bottom: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo-text {
    margin-bottom: 1.5rem;
}

.footer-logo-main {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.footer-logo-subs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--stone-grey);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-column h4 {
    font-family: var(--font-subhead);
    font-size: 1rem;
    text-transform: uppercase;
}

.link-column a {
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.creators-section {
    border: 2px dashed var(--charcoal-brown);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.creators-section h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.creators-section p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.mini-cta {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-width: 2px;
}

.copyright {
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--stone-grey);
    border-top: 1px solid var(--matka-clay);
    padding-top: 1rem;
}

.copyright p {
    margin-bottom: 0.2rem;
}

/* Responsive Overrides */
@media (max-width: 900px) {

    .layout-grid-2,
    .problem-columns,
    .itinerary-layout,
    .cards-horizontal {
        grid-template-columns: 1fr;
    }

    .problem-columns .col {
        border-right: none;
        border-bottom: 1px solid var(--matka-clay);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .hero-story {
        column-count: 1;
    }

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

    .feature-highlight {
        grid-column: span 2;
    }

    .hero-right .mock-mobile-ui {
        aspect-ratio: 9 / 14;
    }

    .hero-right .map-overlay-sheet {
        height: 50%;
        padding: 0.75rem;
    }

    .mock-video-thumbnail {
        min-height: 60px;
    }

    .mock-place-info h3 {
        font-size: 1rem;
    }

    .mock-place-info p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .mock-action-buttons {
        gap: 0.5rem;
    }

    /* Features / Article columns */
    .article-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-box {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #c0b5a3;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .article-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .article-box.span-2 {
        grid-column: span 1;
    }

    .article-header h2 {
        font-size: 1.8rem;
    }

    .article-box h3 {
        font-size: 1.2rem;
    }

    .article-box p {
        font-size: 0.95rem;
        text-align: left;
        hyphens: none;
    }

    .highlight-box {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .logo-mark {
        font-size: 4rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .classifieds-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        grid-column: span 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}