/* ============================================
   Artistic Hair Boutique — Roseville
   Classic & Elegant Style System
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    color: #2c2c2c;
    background-color: #fdfbf7;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9a7209;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a2744;
    line-height: 1.25;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1a2744;
    color: #f4e8c1;
    padding: 8px 16px;
    z-index: 10000;
    border-radius: 4px;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 77, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 39, 68, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f4e8c1;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-logo:hover {
    color: #f4e8c1;
}

.logo-icon {
    color: #c9a84c;
}

.logo-accent {
    color: #c9a84c;
    font-style: italic;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(244, 232, 193, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #c9a84c;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #c9a84c, #a8842a);
    color: #1a2744;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #d4b85e, #c9a84c);
    color: #1a2744;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 77, 0.3);
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #f4e8c1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a2744;
    padding-top: 76px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #f4e8c1;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title em {
    font-style: italic;
    color: #c9a84c;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(244, 232, 193, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(244, 232, 193, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 77, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a84c, #a8842a);
    color: #1a2744;
    border-color: #c9a84c;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4b85e, #c9a84c);
    border-color: #d4b85e;
    color: #1a2744;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 77, 0.3);
}

.btn-outline {
    background: transparent;
    color: #f4e8c1;
    border-color: rgba(244, 232, 193, 0.4);
}

.btn-outline:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #1a2744;
    border-color: #1a2744;
}

.btn-outline-light:hover {
    background: #1a2744;
    color: #f4e8c1;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

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

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-accent-circle {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 168, 77, 0.08);
    border: 2px solid rgba(201, 168, 77, 0.15);
    z-index: -1;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fdfbf7;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- Section Shared ---- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.0625rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* ---- Services ---- */
.services {
    padding: 100px 0;
    background: #fdfbf7;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    border: 1px solid rgba(201, 168, 77, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #a8842a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 39, 68, 0.1);
    border-color: rgba(201, 168, 77, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 39, 68, 0.06);
    color: #1a2744;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #1a2744;
    color: #c9a84c;
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* ---- About ---- */
.about {
    padding: 100px 0;
    background: #1a2744;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 77, 0.04);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #1a2744;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #c9a84c, #a8842a);
    color: #1a2744;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(201, 168, 77, 0.3);
    z-index: 2;
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 4px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content .section-eyebrow {
    color: #c9a84c;
}

.about-content .section-title {
    color: #f4e8c1;
    text-align: left;
    margin-bottom: 24px;
}

.about-body {
    font-size: 1.0625rem;
    color: rgba(244, 232, 193, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(201, 168, 77, 0.12);
    color: #c9a84c;
}

.value-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    color: #f4e8c1;
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9375rem;
    color: rgba(244, 232, 193, 0.6);
    line-height: 1.6;
}

/* ---- Gallery ---- */
.gallery {
    padding: 100px 0;
    background: #fdfbf7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #f4e8c1;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-style: italic;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 100px 0;
    background: #f5f0e6;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(201, 168, 77, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 39, 68, 0.08);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: #c9a84c;
    position: absolute;
    top: 16px;
    left: 24px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2744;
}

.author-location {
    font-size: 0.8125rem;
    color: #888;
}

/* ---- CTA Strip ---- */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2744 0%, #243656 100%);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(201, 168, 77, 0.05);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #f4e8c1;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(244, 232, 193, 0.7);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ---- Contact ---- */
.contact {
    padding: 100px 0;
    background: #fdfbf7;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.0625rem;
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 39, 68, 0.06);
    color: #1a2744;
}

.contact-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #1a2744;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9375rem;
    color: #6b6b6b;
    line-height: 1.6;
}

.contact-item a {
    color: #b8860b;
}

.contact-item a:hover {
    color: #9a7209;
    text-decoration: underline;
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    border: 1px solid rgba(201, 168, 77, 0.12);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #1a2744;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a2744;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #2c2c2c;
    background: #fdfbf7;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 77, 0.15);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    margin: 0 auto 20px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(26, 39, 68, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h4 {
    font-size: 1.5rem;
    color: #1a2744;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: #6b6b6b;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

/* ---- Map ---- */
.map-section {
    background: #e8e0d0;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
}

/* ---- Footer ---- */
.footer {
    background: #141e33;
    color: rgba(244, 232, 193, 0.6);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f4e8c1;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: #f4e8c1;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(244, 232, 193, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a84c;
}

.footer-address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-phone,
.footer-email {
    font-size: 0.9375rem;
    margin-bottom: 6px;
}

.footer-phone a,
.footer-email a {
    color: rgba(244, 232, 193, 0.6);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #c9a84c;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 232, 193, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(244, 232, 193, 0.4);
}

.footer-bottom a {
    color: rgba(244, 232, 193, 0.4);
}

.footer-bottom a:hover {
    color: #c9a84c;
}

/* ---- Scroll Reveal (progressive enhancement) ---- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .about-container {
        gap: 48px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(26, 39, 68, 0.98);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(201, 168, 77, 0.15);
    }

    .navbar-nav.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 80px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-eyebrow {
        text-align: center;
    }

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

    .about-values {
        align-items: center;
    }

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

    .gallery-item--wide {
        grid-column: span 2;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info .section-title {
        text-align: center;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

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

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

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

    .gallery-item--wide {
        grid-column: span 1;
    }

    .about-img-accent {
        right: -10px;
        bottom: -15px;
    }

    .about-experience-badge {
        left: -10px;
        top: -10px;
        padding: 14px 18px;
    }
}
