/* ===================================
   A's Home Center — Stylesheet
   Classic & Elegant | Charcoal + Coral
   =================================== */

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

:root {
    --charcoal: #36454F;
    --charcoal-deep: #2A353D;
    --charcoal-light: #4A5B66;
    --coral: #F1705B;
    --coral-soft: #E8896F;
    --coral-pale: #FDE8E3;
    --cream: #FAF7F4;
    --cream-dark: #F0EBE5;
    --warm-white: #FEFCFA;
    --text-dark: #1E2A32;
    --text-body: #3D4F5C;
    --text-muted: #6B7F8E;
    --text-light: #9AAFBF;
    --border-light: #E8E2DA;
    --border-coral: rgba(241, 112, 91, 0.2);

    --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: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 3px rgba(54, 69, 79, 0.06);
    --shadow-md: 0 4px 16px rgba(54, 69, 79, 0.08);
    --shadow-lg: 0 8px 32px rgba(54, 69, 79, 0.12);
    --shadow-xl: 0 16px 48px rgba(54, 69, 79, 0.14);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--coral);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- Typography ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.section-title--light {
    color: var(--cream);
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.btn--primary:hover {
    background-color: var(--coral-soft);
    border-color: var(--coral-soft);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(250, 247, 244, 0.35);
}

.btn--ghost:hover {
    border-color: var(--cream);
    color: var(--cream);
    background-color: rgba(250, 247, 244, 0.08);
}

.btn--dark {
    background-color: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.btn--dark:hover {
    background-color: var(--charcoal-deep);
    border-color: var(--charcoal-deep);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.9rem;
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(254, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--charcoal);
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--coral);
    border-radius: var(--radius-sm);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav__cta {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--coral) !important;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--coral);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav__cta:hover {
    background-color: var(--coral);
    color: #fff !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--charcoal);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.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: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--warm-white);
    padding: var(--space-2xl) var(--space-xl);
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
    max-width: 320px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--coral);
}

.mobile-menu__divider {
    width: 40px;
    height: 1px;
    background-color: var(--border-light);
}

.mobile-menu__phone {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--coral);
    text-align: center;
}

.mobile-menu__address {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 80%, var(--coral) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--coral) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--coral) 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__left {
    max-width: 520px;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-xl);
    display: block;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: var(--space-xl);
}

.hero__headline em {
    font-style: italic;
    color: var(--coral);
}

.hero__subheadline {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

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

.hero__trust {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(250, 247, 244, 0.1);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

.hero__trust-item svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

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

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

.hero__img--main {
    width: 340px;
    height: 460px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__img--accent {
    width: 260px;
    height: 200px;
    bottom: 120px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--charcoal);
}

.hero__img--detail {
    width: 220px;
    height: 160px;
    bottom: 0;
    right: 40px;
    z-index: 4;
    border: 4px solid var(--charcoal);
}

/* Decorative accent line */
.hero__right::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 60px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--coral);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: 1;
}

/* ---------- Intro / About ---------- */
.intro {
    padding: var(--space-4xl) 0;
    background-color: var(--cream);
}

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

.intro__image-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.intro__lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

.intro__text-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.intro__text-col .btn {
    margin-top: var(--space-lg);
}

/* ---------- Collections ---------- */
.collections {
    padding: var(--space-4xl) 0;
    background-color: var(--warm-white);
}

.collections__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.collections__header .section-subtitle {
    margin: 0 auto;
}

.collections__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.collection-card:hover img {
    transform: scale(1.04);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 42, 50, 0.85) 0%, rgba(30, 42, 50, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    transition: background var(--transition-base);
}

.collection-card:hover .collection-card__overlay {
    background: linear-gradient(to top, rgba(30, 42, 50, 0.9) 0%, rgba(30, 42, 50, 0.3) 60%, transparent 100%);
}

.collection-card__label {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.collection-card__desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.collection-card--large {
    grid-column: span 7;
    min-height: 320px;
}

.collection-card:not(.collection-card--large) {
    grid-column: span 5;
    min-height: 280px;
}

/* ---------- Why Us ---------- */
.why-us {
    padding: var(--space-4xl) 0;
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 112, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.why-us__content {
    position: relative;
    z-index: 1;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    padding: var(--space-xl);
    background-color: rgba(250, 247, 244, 0.04);
    border: 1px solid rgba(250, 247, 244, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    background-color: rgba(250, 247, 244, 0.07);
    border-color: rgba(241, 112, 91, 0.25);
    transform: translateY(-2px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.value-card__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.value-card__text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

.why-us__image {
    position: relative;
    z-index: 1;
}

.why-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.why-us__image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--coral);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    z-index: -1;
}

/* ---------- Quote ---------- */
.quote {
    padding: var(--space-4xl) 0;
    background-color: var(--cream);
    text-align: center;
}

.quote__inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.quote__mark {
    color: var(--coral);
    margin-bottom: var(--space-lg);
    display: block;
}

.quote__text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}

.quote__attribution {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.quote__name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: 0.04em;
}

.quote__location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Visit / Contact ---------- */
.visit {
    padding: var(--space-4xl) 0;
    background-color: var(--warm-white);
}

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

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

.visit__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

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

.visit__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--coral-pale);
    border-radius: var(--radius-md);
    color: var(--coral);
    flex-shrink: 0;
}

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

.visit__detail p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

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

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

/* Contact Form */
.contact-form {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
}

.contact-form__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.contact-form__subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 0.4rem;
}

.form-label__optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--warm-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px var(--border-coral);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    color: var(--charcoal);
}

.form-success svg {
    color: var(--coral);
}

.form-success p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--charcoal-deep);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

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

.footer__brand .nav__logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
}

.footer__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
}

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

.footer__link {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
}

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

.footer__contact {
    text-align: right;
}

.footer__contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__right {
        display: none;
    }

    .hero__left {
        max-width: 100%;
    }

    .intro__layout,
    .why-us__inner,
    .visit__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .why-us__image {
        order: -1;
    }

    .why-us__image img {
        height: 400px;
    }

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

    .collection-card--large {
        grid-column: span 2;
    }

    .collection-card:not(.collection-card--large) {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-2xl);
    }

    .hero__headline {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

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

    .collection-card--large,
    .collection-card:not(.collection-card--large) {
        grid-column: span 1;
        min-height: 240px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__contact {
        text-align: center;
    }

    .footer__links {
        align-items: center;
    }

    .quote__text {
        font-size: 1.15rem;
    }
}

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

    .nav__inner {
        padding: 0 var(--space-md);
    }

    .hero__inner {
        padding: var(--space-xl) var(--space-md);
    }

    .intro,
    .collections,
    .why-us,
    .quote,
    .visit {
        padding: var(--space-3xl) 0;
    }

    .contact-form {
        padding: var(--space-xl);
    }
}
