/* ===================================
   ICON DETAILING — Stylesheet
   Burgundy + Blush · Clean Minimalist
   =================================== */

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

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A242C;
    --burgundy-light: #8B3A42;
    --blush: #F5E6E0;
    --blush-light: #FAF3F0;
    --blush-mid: #EFD6CC;
    --cream: #FDFBF9;
    --white: #FFFFFF;
    --text-dark: #1A1416;
    --text-mid: #4A3F42;
    --text-light: #7A6A6D;
    --line: rgba(114, 47, 55, 0.12);
    --line-strong: rgba(114, 47, 55, 0.25);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

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

.section-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-eyebrow--light {
    color: var(--blush);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 2rem;
}

.section-line--center {
    margin-left: auto;
    margin-right: auto;
}

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

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(253, 251, 249, 0.97);
    box-shadow: 0 1px 20px rgba(114, 47, 55, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.nav-logo-mark {
    color: var(--burgundy);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--burgundy);
}

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

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 0.65rem 1.5rem;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background: var(--burgundy-dark);
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s var(--ease-out);
}

.mobile-menu-link:hover {
    color: var(--burgundy);
}

.mobile-menu-cta {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 0.8rem 2rem;
    margin-top: 1rem;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    padding: 72px 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding-bottom: 4rem;
}

.hero-content {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
    max-width: 560px;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-divider-line {
    width: 100%;
    height: 1px;
    background: var(--line-strong);
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-meta-value {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-dark);
}

.hero-meta-value a {
    color: var(--burgundy);
    transition: color 0.3s var(--ease-out);
}

.hero-meta-value a:hover {
    color: var(--burgundy-dark);
}

.hero-meta-sep {
    width: 1px;
    height: 36px;
    background: var(--line-strong);
}

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

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--burgundy);
    z-index: -1;
    opacity: 0.3;
}

.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--burgundy);
    padding: 1rem 1.5rem;
}

.badge-text {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--blush-light);
    letter-spacing: 0.03em;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    flex: 1;
    height: 1px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--burgundy);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 1rem 2.25rem;
    transition: all 0.3s var(--ease-out);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: transparent;
    padding: 1rem 2.25rem;
    border: 1px solid var(--burgundy);
    transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: transparent;
    padding: 1rem 2.25rem;
    border: 1px solid var(--burgundy);
    transition: all 0.3s var(--ease-out);
    margin-top: 2rem;
}

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

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 1rem 2rem;
    transition: all 0.3s var(--ease-out);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-light-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush);
    background: transparent;
    padding: 1rem 2rem;
    border: 1px solid rgba(245, 230, 224, 0.4);
    transition: all 0.3s var(--ease-out);
}

.btn-light-outline:hover {
    background: rgba(245, 230, 224, 0.1);
    border-color: var(--blush);
}

/* ---- Services ---- */
.services {
    padding: 8rem 3rem;
    background: var(--white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 2.5rem;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(114, 47, 55, 0.08);
}

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

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ---- About ---- */
.about {
    padding: 8rem 3rem;
    background: var(--cream);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

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

.about-image-main {
    overflow: hidden;
}

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

.about-image-small {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 55%;
    overflow: hidden;
    border: 6px solid var(--cream);
}

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

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.about-text-col {
    padding-top: 2rem;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-line {
    width: 24px;
    height: 1px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.about-value span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* ---- Gallery ---- */
.gallery {
    padding: 8rem 3rem;
    background: var(--white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 7;
}

.gallery-item:not(.gallery-item--large) {
    grid-column: span 5;
}

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

.gallery-item--large img {
    height: 480px;
}

.gallery-item:not(.gallery-item--large) img {
    height: 320px;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(26, 20, 22, 0.7));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ---- CTA ---- */
.cta {
    padding: 8rem 3rem;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(245, 230, 224, 0.08);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(245, 230, 224, 0.06);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--blush-light);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.cta-body {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--blush);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Contact ---- */
.contact {
    padding: 8rem 3rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
}

.contact-detail-value a {
    color: var(--burgundy);
    transition: color 0.3s var(--ease-out);
}

.contact-detail-value a:hover {
    color: var(--burgundy-dark);
}

/* ---- Contact Form ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--line-strong);
    padding: 0.9rem 1rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.08);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    cursor: pointer;
}

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

.btn-submit {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 1.1rem 2.5rem;
    border: 1px solid var(--burgundy);
    transition: all 0.3s var(--ease-out);
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25);
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--blush-light);
    border: 1px solid var(--blush-mid);
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 400;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
    background: var(--text-dark);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 230, 224, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--blush-light);
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 230, 224, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(245, 230, 224, 0.6);
    transition: color 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--blush-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 230, 224, 0.5);
}

.footer-contact a {
    color: rgba(245, 230, 224, 0.6);
    transition: color 0.3s var(--ease-out);
}

.footer-contact a:hover {
    color: var(--blush-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245, 230, 224, 0.35);
}

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

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 600px;
    }

    .hero-image-wrapper img {
        height: 560px;
    }

    .hero-image-accent {
        display: none;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-small {
        right: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .gallery-item--large {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 72px 1.5rem 0;
    }

    .hero-container {
        padding-bottom: 2rem;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

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

    .hero-actions a {
        text-align: center;
        justify-content: center;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-meta-sep {
        width: 36px;
        height: 1px;
    }

    .hero-scroll-indicator {
        padding: 0 1.5rem 2rem;
    }

    .services {
        padding: 5rem 1.5rem;
    }

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

    .about {
        padding: 5rem 1.5rem;
    }

    .about-image-main img {
        height: 450px;
    }

    .about-image-small {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
        border: none;
    }

    .about-image-small img {
        height: 220px;
    }

    .about-stats {
        gap: 2rem;
    }

    .gallery {
        padding: 5rem 1.5rem;
    }

    .gallery-item--large {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 12;
    }

    .gallery-item--large img {
        height: 280px;
    }

    .gallery-item:not(.gallery-item--large) img {
        height: 280px;
    }

    .cta {
        padding: 5rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        padding: 5rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

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

    .hero-sub {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.75rem;
    }
}
