/* ============================================
   Hyde Park Building & Material Supplies
   Bold Editorial Style — Charcoal + Coral
   ============================================ */

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

:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2d2d2d;
    --color-charcoal-mid: #3d3d3d;
    --color-coral: #FF6B4A;
    --color-coral-dark: #E85A3A;
    --color-coral-light: #FF8A70;
    --color-cream: #FAF7F4;
    --color-cream-dark: #F0EBE5;
    --color-white: #FFFFFF;
    --color-text: #1a1a1a;
    --color-text-light: #6b6b6b;
    --color-text-inverse: #FAF7F4;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -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;
}

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

/* --- Utility --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 74, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-serif);
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nav__logo-text {
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav__logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-coral-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    color: rgba(250, 247, 244, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coral);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-white);
}

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

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--color-coral-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-charcoal);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #2d1f1a 30%,
        #3d2218 50%,
        #1a1a1a 80%,
        #0d0d0d 100%
    );
}

.hero__gradient-2 {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 107, 74, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 138, 112, 0.15) 0%, transparent 50%);
}

.hero__gradient-3 {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 74, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(232, 90, 58, 0.1) 0%, transparent 35%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 40px,
            rgba(255, 255, 255, 0.05) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 40px,
            rgba(255, 255, 255, 0.05) 41px
        );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-3xl) var(--space-lg);
    padding-top: 72px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--space-xl);
}

.hero__eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--color-coral);
}

.hero__eyebrow span {
    color: var(--color-coral-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.hero__headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--color-coral);
}

.hero__subhead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(250, 247, 244, 0.7);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    font-weight: 300;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(250, 247, 244, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(250, 247, 244, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(250, 247, 244, 0.3);
}

.btn--ghost:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

.btn--outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

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

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(250, 247, 244, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--color-white);
    background: rgba(250, 247, 244, 0.1);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* --- Section Base --- */
.section {
    padding: var(--space-4xl) 0;
}

.section__header {
    max-width: 720px;
    margin-bottom: var(--space-3xl);
}

.section__header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section__lead {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Products --- */
.products {
    background: var(--color-cream);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.product-card__tag {
    background: var(--color-coral);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card__body {
    padding: var(--space-lg);
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card__list li {
    font-size: 0.825rem;
    color: var(--color-charcoal-mid);
    padding-left: 16px;
    position: relative;
}

.product-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--color-coral);
    border-radius: 50%;
}

/* --- About --- */
.about {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__images {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-charcoal);
    max-width: 55%;
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stamp {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--color-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.4);
}

.about__stamp-text {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.3;
}

.about__content {
    padding: var(--space-xl) 0;
}

.about__content .section__title {
    color: var(--color-white);
}

.about__body {
    font-size: 1.05rem;
    color: rgba(250, 247, 244, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(250, 247, 244, 0.1);
}

.about__value {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.about__value svg {
    color: var(--color-coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.about__value strong {
    display: block;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 2px;
}

.about__value span {
    font-size: 0.9rem;
    color: rgba(250, 247, 244, 0.55);
    line-height: 1.5;
}

/* --- Services --- */
.services {
    background: var(--color-cream-dark);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-coral);
    box-shadow: 0 8px 30px rgba(255, 107, 74, 0.12);
    transform: translateY(-2px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Quote Section --- */
.quote-section {
    background: var(--color-coral);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.quote-section__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section__mark {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.quote-section__text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.quote-section__cite {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.quote-section__cite-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.quote-section__cite-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Location --- */
.location {
    background: var(--color-cream);
}

.location__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.location__detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.location__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.location__detail strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-coral);
    margin-bottom: 4px;
    font-weight: 600;
}

.location__detail p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.location__detail a {
    color: var(--color-charcoal);
    font-weight: 500;
    transition: var(--transition);
}

.location__detail a:hover {
    color: var(--color-coral);
}

.location__map {
    margin-top: var(--space-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.location__cta-card {
    background: var(--color-charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    color: var(--color-white);
}

.location__cta-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.location__cta-text {
    font-size: 1rem;
    color: rgba(250, 247, 244, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.location__cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.location__directions,
.location__transit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.location__directions svg,
.location__transit svg {
    color: var(--color-coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.location__directions span,
.location__transit span {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--color-charcoal);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.cta-section__content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.cta-section__text {
    font-size: 1.1rem;
    color: rgba(250, 247, 244, 0.65);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.cta-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: #111111;
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(250, 247, 244, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(250, 247, 244, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-coral);
    margin-bottom: 4px;
    font-weight: 600;
}

.footer__link-group a {
    font-size: 0.875rem;
    color: rgba(250, 247, 244, 0.55);
    transition: var(--transition);
}

.footer__link-group a:hover {
    color: var(--color-white);
}

.footer__link-group p {
    font-size: 0.875rem;
    color: rgba(250, 247, 244, 0.55);
    line-height: 1.6;
}

.footer__link-group a[href^="tel"] {
    color: rgba(250, 247, 244, 0.7);
    font-weight: 500;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copyright {
    font-size: 0.8rem;
    color: rgba(250, 247, 244, 0.35);
}

.footer__note {
    font-size: 0.8rem;
    color: rgba(250, 247, 244, 0.35);
    font-style: italic;
}

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

    .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) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about__layout {
        gap: var(--space-2xl);
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-md);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.1rem;
        color: rgba(250, 247, 244, 0.8);
    }

    .nav__cta {
        margin-top: var(--space-md);
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .nav__overlay.active {
        display: block;
    }

    .hero__headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero__stats {
        gap: var(--space-lg);
    }

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

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

    .about__image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 60%;
        margin-top: var(--space-md);
    }

    .about__stamp {
        top: auto;
        bottom: -15px;
        right: 10px;
        width: 70px;
        height: 70px;
    }

    .about__stamp-text {
        font-size: 0.6rem;
    }

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

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

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

    .location__cta-actions {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

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

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

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