/* ===================================
   PAGE-SPECIFIC STYLES
   All page styles consolidated here
   =================================== */

/* Include repair, contact, story, products page styles */

/* ===================================
   CSS RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ===================================
   CUSTOM PROPERTIES
   =================================== */

:root {
    --color-cream: #EDE8D0;
    --color-red: #d5161b;
    --color-dark-gray: #383838;
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-light-cream: #F5F1E3;
    
    --font-display: 'Anton', sans-serif;
    --font-condensed: 'Anybody Condensed', sans-serif;
    --font-body: 'Arial', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    --max-width: 1400px;
}

/* Anton Font - Regular */
@font-face {
    font-family: 'Anton';
    src: url('../fonts/anton-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Anybody Variable Font - Full Range */
@font-face {
    font-family: 'Anybody';
    src: url('../fonts/Anybody-VariableFont.woff2') format('woff2-variations'),
         url('../fonts/Anybody-VariableFont.woff') format('woff-variations'),
         url('../fonts/Anybody-VariableFont.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-stretch: 25% 151%;
    font-style: normal;
    font-display: swap;
}

/* Anybody Condensed - Regular */
@font-face {
    font-family: 'Anybody Condensed';
    src: url('../fonts/Anybody_Condensed-Regular.woff2') format('woff2'),
         url('../fonts/Anybody_Condensed-Regular.woff') format('woff'),
         url('../fonts/Anybody_Condensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Anybody Condensed - Bold */
@font-face {
    font-family: 'Anybody Condensed';
    src: url('../fonts/Anybody_Condensed-Bold.woff2') format('woff2'),
         url('../fonts/Anybody_Condensed-Bold.woff') format('woff'),
         url('../fonts/Anybody_Condensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Anybody UltraCondensed - For large headings - FIXED! */
@font-face {
    font-family: 'Anybody UltraCondensed';
    src: url('../fonts/Anybody_UltraCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   BASE STYLES
   =================================== */

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anybody UltraCondensed', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: auto;
}

header nav > a:first-child > img {
    width: 150px;
    height: auto;
}

/* ===================================
   HEADER & NAVIGATION - DESKTOP
   =================================== */

header {
    background-color: var(--color-cream);
    padding: 1.5rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Header slide up on scroll */
body.scroll-down header {
    transform: translateY(-100%);
}

body.scroll-up header {
    transform: translateY(0);
}

header nav {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
header nav > a:first-child {
    display: flex;
    flex-direction: column;
}

header nav > a:first-child strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-red);
    letter-spacing: 2px;
}

header nav > a:first-child em {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-red);
    font-style: normal;
    letter-spacing: 2px;
}

/* Desktop Navigation */
header nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

header nav ul li a {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--color-red);
}

/* User Icon */
header nav > a:last-child {
    width: 45px;
    height: 45px;
    background-color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header nav > a:last-child:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(213, 22, 27, 0.4);
}

/* Mobile Menu Button - Hidden on Desktop */
header nav button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

header nav button span {
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HOMEPAGE STYLES
   =================================== */

/* Hero Section */
body:not(.repair-page) main > section:first-of-type {
    background-color: var(--color-cream);
    padding: 4rem 2rem 0 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

body:not(.repair-page) main > section:first-of-type > article {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
}

body:not(.repair-page) main > section:first-of-type > article > figure {
    order: 2;
    position: relative;
}

body:not(.repair-page) main > section:first-of-type > article > figure > img {
    width: 100%;
    max-width: 540px;
    animation: breathe 20s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: translateX(285px) scale(1);
    }
    50% {
        transform: translateX(255px) scale(1.02);
    }
}

body:not(.repair-page) main > section:first-of-type > article > section {
    order: 1;
}

body:not(.repair-page) main > section:first-of-type > article > section > h1 {
    font-family: "Anybody UltraCondensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-variation-settings: "wdth" 50, "wght" 700;
    font-size: 15rem;
    color: var(--color-red);
    margin-bottom: 0.2rem;
    line-height: 0.7;
}

body:not(.repair-page) main > section:first-of-type > article > section > aside {
    background-color: var(--color-black);
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body:not(.repair-page) main > section:first-of-type > article > section > aside:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body:not(.repair-page) main > section:first-of-type > article > section > p {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Tagline Banner */
body:not(.repair-page)  main > section:nth-of-type(2) {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 2.5rem 3rem;
    /* text-align: center; */
}

body:not(.repair-page) main > section:nth-of-type(2) > h2 {
    font-family: "Anybody UltraCondensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-variation-settings: "wdth" 50, "wght" 700;
    font-size: 7rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 1800px;
    margin: 0 auto 1.5rem auto;
    letter-spacing: 1px;
    color: var(--color-cream);
}

/* ===================================
   REPAIR PAGE STYLES
   =================================== */

/* Repair Hero */
body.repair-page main > section:first-of-type {
    background-color: var(--color-cream);
    padding: 4rem 3rem 2rem 3rem;
}

body.repair-page main > section:first-of-type > article {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

body.repair-page main > section:first-of-type > article > h1 {
    font-family: "Anybody UltraCondensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-variation-settings: "wdth" 50, "wght" 700;
    font-size: 15rem;
    color: var(--color-red);
    line-height: 0.7;
    letter-spacing: 3px;
}

body.repair-page main > section:first-of-type > article > figure {
    display: flex;
    justify-content: flex-end;
}

body.repair-page main > section:first-of-type > article > figure > img {
    max-width: 700px;
    width: 100%;
}

/* Service Packages */
body.repair-page main > section:nth-of-type(2) {
    background-color: var(--color-cream);
    padding: 0 3rem 3rem 3rem;
}

body.repair-page main > section:nth-of-type(2) > article {
    max-width: var(--max-width);
    margin: 0 auto 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

body.repair-page main > section:nth-of-type(2) > article > section {
    background-color: var(--color-white);
    border: 3px solid var(--color-black);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

body.repair-page main > section:nth-of-type(2) > article > section:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--color-red);
}

body.repair-page main > section:nth-of-type(2) > article > section:hover > h2,
body.repair-page main > section:nth-of-type(2) > article > section:hover > p,
body.repair-page main > section:nth-of-type(2) > article > section:hover > strong {
    color: var(--color-white);
}

body.repair-page main > section:nth-of-type(2) > article > section > h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

body.repair-page main > section:nth-of-type(2) > article > section > p {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 1rem;
    min-height: 1.5rem;
}

body.repair-page main > section:nth-of-type(2) > article > section > strong {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-red);
    display: block;
}

body.repair-page main > section:nth-of-type(2) > p {
    max-width: var(--max-width);
    margin: 0 auto;
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

/* Common Repairs */
body.repair-page main > section:nth-of-type(3) {
    background-color: var(--color-cream);
    padding: 3rem 3rem;
}

body.repair-page main > section:nth-of-type(3) > h2 {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

body.repair-page main > section:nth-of-type(3) > article {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

body.repair-page main > section:nth-of-type(3) > article > section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-black);
}

body.repair-page main > section:nth-of-type(3) > article > section > h3 {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-black);
}

body.repair-page main > section:nth-of-type(3) > article > section > strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-red);
}

/* Emergency Repairs */
body.repair-page main > section:nth-of-type(4) {
    background-color: var(--color-cream);
    padding: 3rem 3rem;
}

body.repair-page main > section:nth-of-type(4) > h2 {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-red);
    text-align: left;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

body.repair-page main > section:nth-of-type(4) > p {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 1.2;
    text-align: left;
}

/* Winter Special */
body.repair-page main > section:nth-of-type(5) {
    background-color: var(--color-cream);
    padding: 3rem 3rem;
}

body.repair-page main > section:nth-of-type(5) > article {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    border: 4px solid var(--color-red);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

body.repair-page main > section:nth-of-type(5) > article > h2 {
    font-family: var(--font-display);
    font-size: 10rem;
    color: var(--color-red);
    line-height: 1;
    flex-shrink: 0;
}

body.repair-page main > section:nth-of-type(5) > article > section > h3 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 1rem;
}

body.repair-page main > section:nth-of-type(5) > article > section > p {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1rem;
}

/* Contact Form */
body.repair-page main > section:nth-of-type(6) {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 4rem 3rem;
}

body.repair-page main > section:nth-of-type(6) > article > h2 {
    font-family: var(--font-display);
    font-size: 10rem;
    color: var(--color-light-cream);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

body.repair-page main > section:nth-of-type(6) > article > form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

body.repair-page main > section:nth-of-type(6) > article > form > label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.repair-page main > section:nth-of-type(6) > article > form > label > span {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

body.repair-page main > section:nth-of-type(6) > article > form > label > input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-condensed);
    font-size: 1rem;
    padding: 0.5rem 0;
}

body.repair-page main > section:nth-of-type(6) > article > form > button {
    grid-column: span 2;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 1rem;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 4rem 3rem 2rem 3rem;
}

footer > article {
    max-width: var(--max-width);
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

footer > article > section:first-child > h2 {
    font-family: var(--font-display);
    font-size: 12rem;
    color: var(--color-light-cream);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

footer > article > section:first-child > p {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

footer > article > section:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

footer > article > section:last-child > nav > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

footer > article > section:last-child > nav > ul > li > a {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-light-cream);
}

footer > article > section:last-child > address {
    font-style: normal;
    text-align: right;
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    line-height: 99%;
}

footer > small {
    display: block;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-condensed);
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    header nav > button {
        display: flex;
        order: 3;
    }
    
    header nav > ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-dark-gray);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    header nav > ul.active {
        right: 0;
    }
    
    /* Repair page mobile */
    body.repair-page main > section:first-of-type {
        padding: 3rem 1.5rem;
    }
    
    body.repair-page main > section:first-of-type > article {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    body.repair-page main > section:first-of-type > article > h1 {
        font-size: 5rem;
    }
    
    body.repair-page main > section:nth-of-type(2) > article {
        grid-template-columns: 1fr;
    }
    
    body.repair-page main > section:nth-of-type(3) > article {
        grid-template-columns: 1fr;
    }
    
    body.repair-page main > section:nth-of-type(5) > article {
        flex-direction: column;
        text-align: center;
    }
    
    body.repair-page main > section:nth-of-type(6) > article > form {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   CONTACT PAGE STYLES
   Matches exact design from image
   =================================== */

/* Reset inherited styles */
body.contact-page main > section:first-of-type {
    background-color: var(--color-cream);
    padding: 4rem 3rem 2rem 3rem;
    min-height: auto;
    display: block;
}

body.contact-page main > section:first-of-type > article {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--color-black);
}

/* Left Side: Contact Heading + Illustration */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-left > h1 {
    font-family: var(--font-display);
    font-size: 15rem;
    color: var(--color-dark-gray);
    line-height: 0.75;
    letter-spacing: 5px;
    margin-bottom: 0;
}

.contact-left > figure {
    display: flex;
    align-items: center;
    margin-top: 9rem;
    margin-left: 8rem;
}

.contact-left > figure > img {
    max-width: 350px;
    width: 100%;
}

/* Right Side: Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
}

.contact-form > label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form > label > span {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
}

.contact-form > label > input,
.contact-form > label > textarea {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid var(--color-black);
    color: var(--color-black);
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 1.2rem;
    padding: 1rem 0;
    transition: border-color 0.3s ease;
    resize: none;
}

.contact-form > label > textarea {
    min-height: 50px;
}

.contact-form > label > input:focus,
.contact-form > label > textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.contact-form > button {
    align-self: flex-start;
    background-color: transparent;
    color: var(--color-black);
    border: 3px solid var(--color-black);
    padding: 1.2rem 4rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-top: 1rem;
    letter-spacing: 3px;
}

.contact-form > button:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: scale(1.02);
}

/* Bottom Section: Phone + Footer Nav */
.contact-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-bottom .phone > a {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.contact-bottom .phone > a:hover {
    color: var(--color-red);
}

.contact-bottom > nav > ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.contact-bottom > nav > ul > li > a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-black);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.contact-bottom > nav > ul > li > a:hover {
    color: var(--color-red);
}

/* Copyright Footer */
body.contact-page footer {
    background-color: var(--color-cream);
    color: var(--color-black);
    padding: 2rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.contact-page footer > small {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    color: var(--color-black);
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 1024px) {
    .contact-left > h1 {
        font-size: 10rem;
    }
    
    body.contact-page main > section:first-of-type > article {
        gap: 4rem;
    }
    
    .contact-form > label > span {
        font-size: 3rem;
    }
    
    .contact-form > button {
        font-size: 2rem;
        padding: 1rem 3rem;
    }
    
    .contact-bottom .phone > a {
        font-size: 2.5rem;
    }
    
    .contact-bottom > nav > ul > li > a {
        font-size: 2rem;
    }
    header nav ul li a {
        color: var(--color-white);
        font-size: 1.5rem;
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    body.contact-page main > section:first-of-type {
        padding: 3rem 1.5rem;
    }
    
    body.contact-page main > section:first-of-type > article {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-left > h1 {
        font-size: 6rem;
        text-align: center;
    }
    
    .contact-left > figure {
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .contact-left > figure > img {
        max-width: 250px;
    }
    
    .contact-form {
        padding-top: 1rem;
        gap: 2rem;
    }
    
    .contact-form > label > span {
        font-size: 2.5rem;
    }
    
    .contact-form > button {
        align-self: stretch;
        font-size: 1.8rem;
        padding: 1rem 2rem;
    }
    
    .contact-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .contact-bottom .phone > a {
        font-size: 2rem;
    }
    
    .contact-bottom > nav > ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-bottom > nav > ul > li > a {
        font-size: 1.5rem;
    }
    
    body.contact-page footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-left > h1 {
        font-size: 4rem;
    }
    
    .contact-left > figure > img {
        max-width: 200px;
    }
    
    .contact-form > label > span {
        font-size: 2rem;
    }
    
    .contact-form > button {
        font-size: 1.5rem;
    }
    
    .contact-bottom .phone > a {
        font-size: 1.5rem;
    }
    
    .contact-bottom > nav > ul > li > a {
        font-size: 1.2rem;
    }
}