/* ===== Custom Properties ===== */
:root {
    --navy-950: #0A1628;
    --navy-900: #0F2140;
    --navy-800: #162D56;
    --navy-700: #1E3D6F;
    --navy-600: #2A5298;
    --gold-500: #C8A45E;
    --gold-400: #D4B76A;
    --gold-300: #E8D5A3;
    --gold-200: #F5ECD7;
    --gold-100: #FBF7EC;
    --neutral-900: #1A1A2E;
    --neutral-700: #374151;
    --neutral-500: #6B7280;
    --neutral-300: #D1D5DB;
    --neutral-100: #F3F4F6;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--neutral-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    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;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn--gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 94, 0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--navy-900);
    border: 1.5px solid var(--navy-900);
}

.btn--outline-dark:hover {
    background: var(--navy-900);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

/* ===== Section Headers ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-500);
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-950);
    margin-bottom: 20px;
}

.section-title--accent {
    color: var(--gold-500);
}

.section-sub {
    font-size: 18px;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header--centered .section-sub {
    margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__logo {
    flex-shrink: 0;
}

.navbar__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: -0.01em;
}

.navbar__name--accent {
    color: var(--gold-500);
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar__link:hover {
    color: var(--navy-950);
    background: var(--neutral-100);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: 8px;
}

.navbar__bar {
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== Hero ===== */
.hero {
    padding-top: 76px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 94, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(42, 82, 152, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 94, 0.12);
    border: 1px solid rgba(200, 164, 94, 0.25);
    color: var(--gold-300);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__accent {
    color: var(--gold-500);
}

.hero__sub {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 520px;
}

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

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

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

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.hero__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

/* Hero Image Stack */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image--main {
    width: 85%;
    height: 85%;
    top: 0;
    right: 0;
}

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

.hero__image--accent {
    width: 50%;
    height: 45%;
    bottom: 5%;
    left: 0;
    border: 4px solid var(--navy-950);
}

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

.hero__image--small {
    width: 42%;
    height: 28%;
    bottom: 30%;
    right: -5%;
    border: 4px solid var(--navy-950);
}

.hero__image--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__floating-card {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    white-space: nowrap;
}

/* ===== Products ===== */
.products {
    padding: 120px 0;
    background: var(--neutral-50);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img {
    height: 240px;
    overflow: hidden;
}

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

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

.product-card__body {
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.product-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about__visual {
    position: relative;
    height: 600px;
}

.about__image-main {
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__image-secondary {
    position: absolute;
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about__experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--navy-900);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-num {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-500);
    letter-spacing: 0.05em;
}

.about__experience-text {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 20px;
}

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

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

.about__value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__value strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.about__value span {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 164, 94, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 44px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 164, 94, 0.3);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(200, 164, 94, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.why-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 100px 0;
    background: var(--gold-100);
    position: relative;
    overflow: hidden;
}

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

.quote-section__quote-mark {
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.4;
}

.quote-section__text {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy-900);
    margin-bottom: 32px;
}

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

.quote-section__author {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-950);
    font-style: normal;
}

.quote-section__location {
    font-size: 14px;
    color: var(--neutral-500);
}

/* ===== Location ===== */
.location {
    padding: 120px 0;
    background: var(--white);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 64px;
    align-items: start;
}

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

.location__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
}

.location__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
}

.location__card strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-950);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.location__card p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.location__card a {
    color: var(--gold-500);
    font-weight: 500;
    transition: var(--transition);
}

.location__card a:hover {
    color: var(--gold-400);
}

.location__hours {
    padding: 28px 32px;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    color: var(--white);
}

.location__hours strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.location__hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location__hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.location__hours li span:first-child {
    font-weight: 500;
    color: var(--white);
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 460px;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--neutral-50);
}

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

.contact__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--neutral-500);
    margin-bottom: 36px;
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy-900);
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact__direct-item:hover {
    background: var(--navy-900);
    color: var(--gold-500);
    transform: translateX(4px);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--neutral-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--neutral-500);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.15);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(45, 106, 79, 0.06);
    border: 1px solid rgba(45, 106, 79, 0.2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-900);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo span {
    color: var(--gold-500);
}

.footer__tagline {
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links strong,
.footer__hours strong,
.footer__contact strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

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

.footer__links a,
.footer__contact a {
    font-size: 15px;
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--gold-500);
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

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

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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);
}

/* ===== Mobile Menu ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .hero__visual {
        height: 480px;
    }
    
    .about__grid {
        gap: 48px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar__nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar__nav.open {
        transform: translateX(0);
    }
    
    .navbar__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    
    .navbar__link {
        padding: 14px 16px;
        font-size: 17px;
    }
    
    .navbar__toggle {
        display: flex;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        padding: 60px 0 80px;
        gap: 48px;
    }
    
    .hero__visual {
        display: none;
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__visual {
        height: 400px;
        order: -1;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .location__grid {
        grid-template-columns: 1fr;
    }
    
    .location__map {
        height: 320px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-wrap {
        padding: 28px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero__stat-divider {
        display: none;
    }
    
    .product-card__body {
        flex-direction: column;
        gap: 12px;
    }
    
    .why-card {
        padding: 28px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
