/* ========================================
   Pete's Termite & Pest Control — Modern Redesign
   Inspired by ABC Home & Commercial, Terminix, HomeTeam
   ======================================== */

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

:root {
    /* Shared feature variables */
    --pp-primary: #1B4332;
    --pp-primary-dark: #0f2b1f;
    --pp-accent: #E67E22;
    --pp-accent-light: #f0a05c;
    --pp-bg: #FDFCFA;
    --pp-text: #2c3342;
    --pp-muted: #5a6478;
    --pp-white: #fff;
    --pp-radius: 10px;
    --pp-shadow: 0 2px 16px rgba(26, 67, 50, 0.08);
    --pp-font-heading: 'Montserrat', sans-serif;
    --pp-font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Original variables */
    --forest: #1B4332;
    --forest-deep: #0f2b1f;
    --green: #40916C;
    --mint: #52B788;
    --amber: #E67E22;
    --amber-dark: #C96A10;
    --dark: #1a1e2a;
    --text: #2c3342;
    --text-light: #5a6478;
    --bg: #FDFCFA;
    --bg-alt: #F4F6F3;
    --bg-warm: #f9f7f2;
    --white: #ffffff;
    --border: #dce3dc;
    --shadow: 0 2px 16px rgba(26, 67, 50, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 67, 50, 0.12);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: 0.3s ease;
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}

.btn-primary:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 145, 108, 0.35);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--green);
    padding: 0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.08rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-right a {
    color: var(--amber);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: #fff;
}

.top-bar-right a svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   Header
   ======================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--forest);
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--forest);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--green);
}

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

.header-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--forest);
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-phone svg {
    width: 16px;
    height: 16px;
}

.header-phone:hover {
    color: var(--amber);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--forest);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 43, 31, 0.92) 0%, rgba(27, 67, 50, 0.85) 50%, rgba(27, 67, 50, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 660px;
    padding: 90px 0 80px;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--mint);
}

.hero p {
    font-size: 1.12rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 52ch;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

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

.hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.hero-badges .badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* ========================================
   Services
   ======================================== */
.services {
    padding: 90px 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    border: none;
    transition: transform .3s, box-shadow .3s;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.1) 100%);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card .service-icon {
    display: none;
}

.service-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: #fff;
}

.service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.services-cta p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

/* ========================================
   About
   ======================================== */
.about {
    padding: 90px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.about-content .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.stat {
    text-align: center;
    padding: 18px 8px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--forest);
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Why Us
   ======================================== */
.why-us {
    padding: 90px 0;
    background: var(--bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--forest), var(--green));
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--forest);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Process
   ======================================== */
.process {
    padding: 90px 0;
    background: var(--forest);
    color: #fff;
}

.process .section-label {
    color: var(--mint);
}

.process .section-header h2 {
    color: #fff;
}

.process .section-header p {
    color: rgba(255,255,255,0.7);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
}

.step h3 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

.step-connector {
    display: none;
}

/* ========================================
   Photo Break
   ======================================== */
.photo-break {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 280px;
    overflow: hidden;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Reviews
   ======================================== */
.reviews {
    padding: 90px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--amber);
    stroke: none;
}

.review-card blockquote {
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
}

.review-author strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.92rem;
}

.review-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ========================================
   Service Areas
   ======================================== */
.service-areas {
    padding: 70px 0;
    background: var(--bg-alt);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area {
    background: var(--white);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--forest);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.area:hover {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest);
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: 90px 0;
}

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

.contact-info .section-label {
    margin-bottom: 12px;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-alt);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--forest);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.88rem;
}

.contact-item a,
.contact-item span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--green);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--forest);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--forest);
}

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

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
    background: var(--white);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--green);
}

.form-checkbox label {
    font-size: 0.76rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-disclaimer {
    font-size: 0.73rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-logo .logo-icon svg {
    width: 20px;
    height: 20px;
}

.footer-logo .logo-name {
    color: #fff;
    font-size: 1.1rem;
}

.footer-logo .logo-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
}

.footer-col p {
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.footer-col a {
    display: block;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--mint);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: all var(--transition);
    padding: 0;
}

.social-links a:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.8);
    stroke: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 0.78rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    display: inline;
    padding: 0;
}

.footer-bottom a:hover {
    color: var(--mint);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--green);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .header-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }

    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image img {
        height: 300px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .contact-form {
        padding: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .photo-break {
        height: 200px;
    }

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

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .about-image img {
        height: 240px;
    }

    .photo-break {
        grid-template-columns: 1fr;
        height: auto;
    }

    .photo-break img {
        height: 200px;
    }
}
