/*
Theme Name: Temperature Calibration
Theme URI: https://temperature-calibration.com
Author: Temperature Calibration Specialists
Description: Custom dark luxury theme for Temperature Calibration Specialists — on-site temperature calibration, sensor verification, and ISO/IEC 17025 certification services.
Version: 1.0
*/

/* === DESIGN TOKENS === */
:root {
    --onyx: #121212;
    --charcoal: #1c1c1c;
    --stone-grey: #2a2a2a;
    --antique-gold: #c5a059;
    --gold-dim: #8a703d;
    --parchment: #e0e0e0;
    --text-muted: #a0a0a0;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--onyx);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    background-image: radial-gradient(var(--stone-grey) 1px, transparent 1px);
    background-size: 40px 40px;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: var(--parchment);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dim);
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--antique-gold);
    border-color: var(--antique-gold);
}

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

ul, ol {
    color: var(--parchment);
}

/* === LAYOUT UTILITIES === */
.wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    margin: 60px 0;
    border: none;
}

.vertical-line {
    width: 1px;
    height: 80px;
    background: var(--gold-dim);
    margin: 0 auto 30px auto;
}

.text-small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.mt-20 {
    margin-top: 20px;
}

/* === HERO / MASTHEAD === */
.masthead {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-bottom: 4px double var(--stone-grey);
    padding: 40px;
}

.emblem {
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 20px;
    opacity: 0.8;
}

.masthead h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(#fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.4rem;
    color: var(--antique-gold);
    font-style: italic;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* === BUTTONS === */
.btn-gold,
.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--antique-gold);
    color: var(--antique-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    border-bottom: 1px solid var(--antique-gold);
}

.btn-gold:hover,
.cta-btn:hover {
    background: var(--antique-gold);
    color: var(--onyx);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    text-decoration: none;
    border-bottom-color: var(--antique-gold);
}

.cta-btn-dark {
    display: inline-block;
    padding: 15px 40px;
    background: var(--stone-grey);
    color: var(--parchment);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid var(--stone-grey);
    cursor: pointer;
    border-bottom: 1px solid var(--stone-grey);
}

.cta-btn-dark:hover {
    background: var(--charcoal);
    color: var(--antique-gold);
    border-color: var(--gold-dim);
    text-decoration: none;
    border-bottom-color: var(--gold-dim);
}

/* === SECTIONS / PANELS === */
.panel {
    padding: 100px 0;
}

.panel-dark {
    background-color: var(--charcoal);
    border-top: 1px solid var(--stone-grey);
    border-bottom: 1px solid var(--stone-grey);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* === SERVICES GRID (Bento Style) === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim);
}

.service-item {
    background: var(--onyx);
    padding: 40px;
    text-align: center;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: #151515;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--parchment);
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-item a {
    border-bottom: none;
}

.service-item a:hover {
    border-bottom: none;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--antique-gold);
    display: block;
}

/* === SERVICES LIST (Hub Page Grid) === */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.services-list a {
    display: block;
    background: var(--charcoal);
    border: 1px solid var(--stone-grey);
    padding: 25px;
    text-align: center;
    color: var(--parchment);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--stone-grey);
}

.services-list a:hover {
    border-color: var(--antique-gold);
    color: var(--antique-gold);
    background: var(--stone-grey);
    border-bottom-color: var(--antique-gold);
}

/* === ACCREDITATION STAMPS === */
.stamp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stamp-box {
    border: 2px solid var(--stone-grey);
    padding: 30px;
    text-align: center;
}

.stamp-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === BLOCKQUOTE / CITE === */
blockquote {
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    color: var(--parchment);
    position: relative;
}

blockquote::before {
    content: "\201C";
    display: block;
    font-size: 4rem;
    color: var(--stone-grey);
    line-height: 1;
    margin-bottom: -30px;
}

cite {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--antique-gold);
    font-family: 'Cinzel', serif;
    font-style: normal;
    letter-spacing: 0.1em;
}

/* === CONTACT FRAME === */
.contact-frame {
    border: 1px solid var(--antique-gold);
    padding: 60px;
    display: inline-block;
    max-width: 600px;
    position: relative;
}

.contact-frame::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--stone-grey);
    pointer-events: none;
}

.phone-display {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--parchment);
    display: block;
    margin: 30px 0;
    border: none;
}

.phone-display:hover {
    color: var(--antique-gold);
    border: none;
}

/* === FOOTER === */
.atelier-footer {
    background-color: #000;
    padding: 100px 0 60px 0;
    text-align: center;
    border-top: 4px double var(--stone-grey);
}

.atelier-footer p {
    color: var(--text-muted);
}

.atelier-footer a {
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.atelier-footer a:hover {
    color: var(--antique-gold);
    border-bottom-color: var(--antique-gold);
}

.legal {
    margin-top: 60px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === HERO (Page Templates) === */
.hero {
    background: var(--charcoal);
    padding: 60px 0 80px 0;
    border-bottom: 1px solid var(--stone-grey);
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.88);
}

.hero-with-image .container {
    position: relative;
    z-index: 1;
}

.hero-with-image h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 30px;
}

/* === PAGE HEADER === */
.page-header {
    background: var(--charcoal);
    padding: 60px 0;
    border-bottom: 1px solid var(--stone-grey);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === CONTENT WRAPPER (Two Column) === */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* === SIDEBAR === */
.sidebar-card {
    background: var(--charcoal);
    padding: 30px;
    border: 1px solid var(--stone-grey);
    border-top: 4px solid var(--antique-gold);
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--stone-grey);
    padding-bottom: 10px;
}

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

.contact-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--stone-grey);
    padding-bottom: 10px;
    color: var(--parchment);
}

.contact-list strong {
    display: block;
    color: var(--antique-gold);
    font-weight: 700;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* === ARTICLE SECTIONS === */
.article-section {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid var(--stone-grey);
    margin-bottom: 30px;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--stone-grey);
}

.article-section h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--antique-gold);
}

.article-section p {
    margin-bottom: 20px;
    color: var(--parchment);
}

.article-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
    color: var(--parchment);
}

.article-section li {
    margin-bottom: 10px;
}

/* === LOCATIONS BOX / GRID === */
.locations-box {
    background: var(--stone-grey);
    border: 1px solid var(--gold-dim);
    padding: 25px;
    margin-bottom: 40px;
}

.locations-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.location-link {
    background: var(--charcoal);
    padding: 10px 15px;
    border: 1px solid var(--stone-grey);
    text-align: center;
    font-size: 0.9rem;
    color: var(--parchment);
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    border-bottom: 1px solid var(--stone-grey);
}

.location-link:hover {
    border-color: var(--antique-gold);
    color: var(--antique-gold);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.1);
    text-decoration: none;
    border-bottom-color: var(--antique-gold);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
    background-color: var(--stone-grey);
    border-left: 5px solid var(--antique-gold);
    padding: 25px;
    margin-bottom: 30px;
}

/* === CALLOUT === */
.callout {
    background-color: var(--stone-grey);
    padding: 20px;
    border-left: 4px solid var(--gold-dim);
    margin: 25px 0;
    font-style: italic;
    color: var(--parchment);
}

/* === CTA SECTION === */
.cta-section {
    background: var(--charcoal);
    border: 1px solid var(--stone-grey);
    border-left: 5px solid var(--antique-gold);
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

/* === BENEFIT LIST === */
.benefit-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--parchment);
}

.benefit-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--antique-gold);
    font-weight: 700;
}

/* === ABOUT PAGE === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background: var(--stone-grey);
    border: 1px solid var(--gold-dim);
    padding: 15px 25px;
    font-weight: 700;
    color: var(--antique-gold);
    text-align: center;
    flex: 1;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.process-wrapper {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 4px;
    background: var(--stone-grey);
}

.process-wrapper .process-step {
    position: relative;
    margin-bottom: 50px;
    display: block;
}

.process-wrapper .process-step::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--antique-gold);
    border: 4px solid var(--onyx);
    box-shadow: 0 0 0 1px var(--stone-grey);
}

.process-wrapper .process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.process-wrapper .process-step p {
    color: var(--text-muted);
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    background: var(--antique-gold);
    color: var(--onyx);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    flex-shrink: 0;
}

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

.equip-card {
    background: var(--charcoal);
    padding: 25px;
    border: 1px solid var(--stone-grey);
    border-left: 4px solid var(--antique-gold);
}

.equip-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--antique-gold);
}

.equip-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* === CONTACT PAGE === */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 50px 0;
}

.quote-form-card {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid var(--stone-grey);
    border-top: 4px solid var(--antique-gold);
}

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

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--antique-gold);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--stone-grey);
    background: var(--onyx);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    background: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select option {
    background: var(--charcoal);
    color: var(--parchment);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: transparent;
    color: var(--antique-gold);
    padding: 16px 32px;
    font-weight: 700;
    border: 1px solid var(--antique-gold);
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    background: var(--antique-gold);
    color: var(--onyx);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.info-card {
    background: var(--charcoal);
    padding: 30px;
    border: 1px solid var(--stone-grey);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--stone-grey);
    padding-bottom: 10px;
}

/* Checkbox styling for dark theme */
input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: var(--antique-gold);
}

/* === RESPONSIVE — 900px (Tablet) === */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .badge-grid {
        flex-direction: column;
    }

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

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

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

    .services-list {
        grid-template-columns: 1fr 1fr;
    }

    .stamp-container {
        gap: 20px;
    }
}

/* === RESPONSIVE — 600px (Mobile) === */
@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .wrapper {
        padding: 0 20px;
    }

    .container {
        padding: 0 15px;
    }

    /* Masthead */
    .masthead {
        padding: 30px 20px;
        min-height: 70vh;
    }

    .masthead h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .emblem {
        font-size: 2.2rem;
    }

    /* Hero */
    .hero {
        padding: 40px 0 50px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-sub,
    .hero-lead {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    /* Buttons */
    .btn-gold,
    .cta-btn {
        padding: 14px 24px;
        font-size: 0.85rem;
        width: 100%;
        display: block;
        text-align: center;
    }

    .cta-btn-dark {
        padding: 14px;
        font-size: 0.85rem;
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Article sections */
    .article-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .article-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .article-section h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .article-section p {
        margin-bottom: 15px;
    }

    /* Highlight box */
    .highlight-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .highlight-box .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Sidebar card */
    .sidebar-card {
        padding: 20px;
    }

    .sidebar-card h3 {
        font-size: 1.1rem;
    }

    /* Panels */
    .panel {
        padding: 60px 0;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 30px 20px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    /* Stamps */
    .stamp-container {
        gap: 15px;
    }

    .stamp-box {
        padding: 20px;
    }

    /* Contact frame */
    .contact-frame {
        padding: 30px;
        width: 90%;
    }

    .phone-display {
        font-size: 1.8rem;
    }

    /* Page header */
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    /* Forms */
    .quote-form-card {
        padding: 25px 20px;
    }

    input, select, textarea {
        padding: 14px 12px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }

    /* Info card */
    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    /* Badges */
    .badge {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    /* Equipment grid */
    .equip-grid {
        grid-template-columns: 1fr;
    }

    .equip-card {
        padding: 20px;
    }

    /* Process timeline */
    .process-wrapper {
        padding-left: 25px;
    }

    .process-wrapper .process-step::before {
        left: -33px;
        width: 16px;
        height: 16px;
    }

    .process-wrapper .process-step h3 {
        font-size: 1.2rem;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .location-link {
        padding: 12px 15px;
    }

    .locations-box {
        padding: 20px 15px;
    }

    /* CTA section */
    .cta-section {
        padding: 30px 20px;
    }

    /* Footer */
    .atelier-footer {
        padding: 60px 0 40px 0;
    }

    .legal {
        margin-top: 40px;
    }

    /* Content wrapper spacing */
    .content-wrapper {
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Content grid spacing */
    .content-grid {
        gap: 30px;
        margin: 30px 0;
    }

    /* Callout */
    .callout {
        padding: 15px;
        margin: 20px 0;
    }

    /* Contact list */
    .contact-list li {
        font-size: 0.9rem;
    }

    /* Benefit list */
    .benefit-list li {
        padding-left: 30px;
        margin-bottom: 15px;
    }

    /* Blockquote */
    blockquote {
        font-size: 1.2rem;
    }

    blockquote::before {
        font-size: 3rem;
    }

    /* Two col */
    .two-col {
        gap: 30px;
    }

    /* Process step (non-wrapper) */
    .process-step {
        flex-direction: column;
        gap: 12px;
    }

    .step-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* === RESPONSIVE — 380px (Extra Small) === */
@media (max-width: 380px) {
    .masthead h1 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .article-section h2 {
        font-size: 1.25rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .phone-display {
        font-size: 1.4rem;
    }

    .stamp-box {
        padding: 15px;
    }

    .stamp-text {
        font-size: 0.8rem;
    }
}
