/* ============================================
   Idaho Rose Tattoo — Custom Styles
   Color System:
     Emerald: #047857 (primary), #065f46 (dark), #065f46 (deep)
     Cream:   #f5f0e8 (bg), #faf8f4 (light)
     Neutral: #1a1a1a, #333, #666, #999, #e5e5e5
============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #faf8f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol, address {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #065f46;
    color: #f5f0e8;
    padding: 14px 28px;
    border: 2px solid #065f46;
}

.btn--primary:hover {
    background-color: #047857;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: #1a1a1a;
    padding: 14px 28px;
    border: 2px solid #1a1a1a;
}

.btn--outline:hover {
    background-color: #1a1a1a;
    color: #f5f0e8;
    transform: translateY(-2px);
}

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

.btn--full {
    width: 100%;
    padding: 16px 28px;
}

/* ---------- SECTION LABELS ---------- */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #065f46;
    margin-bottom: 12px;
}

.section-label--light {
    color: #a7f3d0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title--light {
    color: #f5f0e8;
}

.section-title-accent {
    color: #065f46;
}

.section-title-accent--light {
    color: #34d399;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #666;
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

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

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
}

.nav__logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.nav__logo-dot {
    color: #065f46;
    font-weight: 800;
}

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

.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #065f46;
    transition: width 0.25s ease;
}

.nav__link:hover {
    color: #065f46;
}

.nav__link::after {
    width: 100%;
}

.nav__link--cta {
    background-color: #065f46;
    color: #f5f0e8 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: #047857;
    color: #f5f0e8 !important;
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ---------- HERO ---------- */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #faf8f4;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #065f46;
    background-color: rgba(6, 95, 70, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    color: #065f46;
    display: block;
}

.hero__subheadline {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

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

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

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.hero__stat-label {
    font-size: 0.8125rem;
    color: #666;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e5e5e5;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #065f46;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

.hero__image-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f0e8;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background-color: #faf8f4;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 95, 70, 0.15);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 95, 70, 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background-color: #f5f0e8;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.about__img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border: 4px solid #f5f0e8;
}

.about__img-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.about__img-accent {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background-color: #065f46;
    border-radius: 16px;
    opacity: 0.1;
    z-index: -1;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
}

.about__highlight svg {
    flex-shrink: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 100px 0;
    background-color: #faf8f4;
}

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

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---------- PROCESS ---------- */
.process {
    padding: 100px 0;
    background-color: #065f46;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process__step {
    position: relative;
}

.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 2px;
    background-color: rgba(167, 243, 208, 0.4);
}

.process__step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(167, 243, 208, 0.25);
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-title {
    font-size: 1.25rem;
    color: #f5f0e8;
    margin-bottom: 8px;
}

.process__step-desc {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
    background-color: #faf8f4;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.faq__item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(6, 95, 70, 0.2);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.faq__question:hover {
    color: #065f46;
}

.faq__toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(6, 95, 70, 0.08);
    transition: all 0.3s ease;
}

.faq__item.active .faq__toggle {
    background-color: #065f46;
    transform: rotate(45deg);
}

.faq__item.active .faq__toggle svg {
    stroke: #f5f0e8;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

.faq__answer a {
    color: #065f46;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq__answer a:hover {
    color: #047857;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background-color: #f5f0e8;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

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

.contact__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 95, 70, 0.08);
    border-radius: 12px;
}

.contact__detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.contact__detail-content address,
.contact__detail-content a {
    font-size: 0.9375rem;
    color: #333;
    font-weight: 500;
}

.contact__detail-content a:hover {
    color: #065f46;
}

.contact__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact__form-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background-color: #faf8f4;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input::placeholder {
    color: #aaa;
}

.form__input:focus {
    border-color: #065f46;
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success message */
.contact__success {
    text-align: center;
    padding: 40px 20px;
}

.contact__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 95, 70, 0.08);
    border-radius: 50%;
}

.contact__success-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact__success p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: #1a1a1a;
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__logo span {
    color: #34d399;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #34d399;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact address {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
}

.footer__contact a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #34d399;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
}

.footer__bottom a {
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.2s ease;
}

.footer__bottom a:hover {
    color: #34d399;
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.nav__mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background-color: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nav__mobile-overlay.open {
    display: flex;
}

.nav__mobile-overlay .nav__link {
    font-size: 1.25rem;
    padding: 12px 24px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero__image-badge {
        left: 16px;
        bottom: 16px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__img-secondary {
        right: 0;
        bottom: -24px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery__item--tall {
        grid-row: span 1;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-wrapper {
        padding: 28px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__headline {
        font-size: 2rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
