/* ============================================
   Amal Beauty Star And More — Stylesheet
   Classic & Elegant | Plum + Amber Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-50:  #f5f0f4;
    --plum-100: #ebe0e8;
    --plum-200: #d4bcc8;
    --plum-300: #b88fa6;
    --plum-400: #a06d86;
    --plum-500: #8b4f68;
    --plum-600: #6b2f5b;
    --plum-700: #542648;
    --plum-800: #3e1d36;
    --plum-900: #2a1525;
    --plum-950: #1a0e18;

    --amber-50:  #fdf8f0;
    --amber-100: #f9ecdc;
    --amber-200: #f2d7b4;
    --amber-300: #e9bc82;
    --amber-400: #e0a055;
    --amber-500: #d4883a;
    --amber-600: #c47028;
    --amber-700: #a35720;
    --amber-800: #82441c;
    --amber-900: #653517;
    --amber-950: #3e1f0d;

    --cream: #faf6f2;
    --warm-white: #fefcf9;
    --warm-gray: #f5f0ec;
    --text-dark: #1a1210;
    --text-body: #3d2e28;
    --text-muted: #7a6458;
    --text-light: #a89084;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 18, 16, 0.06), 0 1px 2px rgba(26, 18, 16, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 18, 16, 0.08), 0 2px 6px rgba(26, 18, 16, 0.04);
    --shadow-lg: 0 12px 40px rgba(26, 18, 16, 0.12), 0 4px 12px rgba(26, 18, 16, 0.06);
    --shadow-xl: 0 24px 60px rgba(26, 18, 16, 0.16), 0 8px 20px rgba(26, 18, 16, 0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-700);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 14px;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

/* --- Section Label --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--plum-600);
    color: #fff;
    border: 2px solid var(--plum-600);
}
.btn-primary:hover {
    background: var(--plum-700);
    border-color: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--plum-600);
    border: 2px solid var(--plum-200);
}
.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
    transform: translateY(-2px);
}

.btn-amber {
    background: var(--amber-500);
    color: var(--text-dark);
    border: 2px solid var(--amber-500);
}
.btn-amber:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(250, 246, 242, 0.95);
    box-shadow: var(--shadow-sm);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-star {
    color: var(--amber-500);
    flex-shrink: 0;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--plum-700);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
}

/* --- Nav --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.nav-link:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--plum-600);
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    margin-left: 8px;
    transition: all var(--transition-fast);
}
.nav-cta:hover {
    background: var(--plum-700);
    transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}
.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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 40%, var(--plum-700) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 136, 58, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107, 47, 91, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--amber-300);
    background: rgba(212, 136, 58, 0.12);
    border: 1px solid rgba(212, 136, 58, 0.25);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--amber-400);
    font-size: 0.85em;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions .btn-primary {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--text-dark);
}
.hero-actions .btn-primary:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 24, 0.3) 0%, transparent 40%);
    border-radius: var(--radius-lg);
}

/* --- Stat Cards --- */
.stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.stat-card-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

.stat-card-number {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.3;
}

.stat-card--top {
    top: 20px;
    right: -30px;
}

.stat-card--bottom {
    bottom: 40px;
    left: -20px;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-scroll-indicator svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--warm-white);
}

.section-header {
    margin-bottom: 56px;
}
.section-header:not(.section-header--centered) {
    max-width: 560px;
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107, 47, 91, 0.06);
    transition: all var(--transition-base);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 47, 91, 0.12);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px 24px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: var(--radius-sm);
    color: var(--plum-600);
    margin-bottom: 16px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--plum-600);
    transition: all var(--transition-fast);
}
.service-card-link:hover {
    color: var(--plum-700);
    gap: 10px;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--plum-800);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 136, 58, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--plum-800);
    width: 65%;
}
.about-img-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-bar {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--amber-500);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.6;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}
.about-text:last-of-type {
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.about-feature-icon {
    color: var(--amber-400);
    flex-shrink: 0;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 24, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}
.gallery-item--tall {
    grid-column: span 4;
    grid-row: span 2;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 100%);
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 136, 58, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-banner-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-banner-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}
.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
}

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

.contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: var(--radius-sm);
    color: var(--plum-600);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-detail a:hover {
    color: var(--plum-600);
}

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

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 47, 91, 0.06);
}

.contact-form-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-form-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--warm-gray);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.1);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--plum-700);
}
.form-success-icon {
    margin-bottom: 16px;
}
.form-success strong {
    font-family: var(--font-serif);
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--plum-950);
    padding: 64px 0 0;
}

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

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li:not(:has(a)) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
    }
    .stat-card--top {
        right: 0;
    }
    .stat-card--bottom {
        left: 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-images {
        max-width: 480px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .gallery-grid {
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item--large {
        grid-column: span 6;
        grid-row: span 1;
    }
    .gallery-item--tall {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(250, 246, 242, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(107, 47, 91, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-visual {
        max-width: 360px;
    }
    .stat-card {
        padding: 12px 16px;
    }
    .stat-card-number {
        font-size: 18px;
    }
    .stat-card-label {
        font-size: 11px;
    }
    .stat-card--top {
        top: 10px;
        right: -10px;
    }
    .stat-card--bottom {
        bottom: 20px;
        left: -10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large,
    .gallery-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 90px 0 50px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-image-card {
        max-width: 280px;
        margin: 0 auto;
    }
    .stat-card--top {
        right: -5px;
    }
    .stat-card--bottom {
        left: -5px;
    }
    .services, .about, .gallery, .contact {
        padding: 72px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--large,
    .gallery-item--tall {
        grid-column: span 1;
    }
}

/* --- 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;
    }
}
