@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --color-ivory: #FAF7F2;
    --color-paper: #FFFFFF;
    --color-ink: #1A1A1A;
    --color-muted: #6B6258;
    --color-line: #E8DDD0;
    --color-taupe: #8B6F5E;
    --color-burgundy: #5C3D3A;
    --color-gold: #C4A56E;
    --color-warm: #F0E8DE;
    --color-dark: #2C2826;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 4px 24px rgba(44, 40, 38, 0.08);
    --shadow-elevated: 0 12px 40px rgba(44, 40, 38, 0.12);
    --max-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--color-ivory);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

button, input, select, textarea {
    font: inherit;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    max-width: 800px;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    transform: translateY(-200%);
    background: var(--color-burgundy);
    color: var(--color-paper);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: transform 250ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.88);
    border-bottom: 1px solid rgba(232, 221, 208, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(250, 247, 242, 0.96);
    box-shadow: 0 2px 28px rgba(44, 40, 38, 0.08);
}

.site-nav {
    width: min(100% - 2rem, var(--max-width));
    min-height: 80px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 165px;
    transition: opacity 0.3s ease;
}

.brand:hover { opacity: 0.8; }

.brand img {
    width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.nav-menu a {
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    font-weight: 450;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 1.1rem;
    right: 1.1rem;
    height: 1.5px;
    background: var(--color-burgundy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--color-burgundy);
    background: rgba(92, 61, 58, 0.06);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-cta, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.4rem;
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta, .button-primary {
    background: var(--color-burgundy);
    color: var(--color-paper);
}

.nav-cta:hover, .button-primary:hover {
    background: #4A2F2D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 61, 58, 0.25);
}

.button-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-paper);
    backdrop-filter: blur(4px);
}

.button-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.button-gold {
    background: var(--color-gold);
    color: var(--color-paper);
}

.button-gold:hover {
    background: #B89450;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 165, 110, 0.3);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-paper);
    cursor: pointer;
    place-items: center;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-ink);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: min(820px, calc(100vh - 80px));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-paper);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.72) 0%, rgba(26, 26, 26, 0.24) 55%, rgba(26, 26, 26, 0.08) 100%),
        linear-gradient(0deg, rgba(26, 26, 26, 0.4) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    padding: 6rem 0 8rem;
}

.hero-content p {
    max-width: 580px;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--color-taupe);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero .eyebrow,
.page-hero .eyebrow {
    color: rgba(196, 165, 110, 0.9);
    font-weight: 500;
}

.section {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    padding: 6rem 0;
}

.section-muted {
    width: 100%;
    max-width: none;
    background: var(--color-warm);
    padding-left: max(1rem, calc((100% - var(--max-width)) / 2));
    padding-right: max(1rem, calc((100% - var(--max-width)) / 2));
}

.section-heading {
    max-width: 680px;
    margin-bottom: 3rem;
}

.section-heading p:last-child {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.collection-card {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.collection-card a {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-image {
    display: grid;
    min-height: 280px;
    place-items: end center;
    padding: 1.5rem 1.5rem 0;
    background: linear-gradient(180deg, #FEFCF8, #F0E8DE);
    overflow: hidden;
}

.collection-image img {
    width: min(100%, 220px);
    height: 260px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.collection-copy {
    display: grid;
    gap: 0.35rem;
    padding: 1.5rem 1.5rem 1.8rem;
}

.collection-copy span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-burgundy);
}

.collection-copy small {
    color: var(--color-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.atelier-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.atelier-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
}

.atelier-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.atelier-media:hover img {
    transform: scale(1.04);
}

.atelier-copy p {
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--color-burgundy);
    font-weight: 600;
    font-size: 0.92rem;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.text-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.text-link:hover {
    gap: 0.7rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.dress-card {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.dress-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.dress-card > a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dress-image {
    display: grid;
    aspect-ratio: 3 / 4;
    place-items: end center;
    background: linear-gradient(180deg, #FEFCF8, #F0E8DE);
    overflow: hidden;
}

.dress-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem 1rem 0;
    transition: transform 0.5s ease;
}

.dress-card:hover .dress-image img {
    transform: scale(1.05);
}

.dress-info {
    display: grid;
    gap: 0.3rem;
    padding: 1.2rem 1.2rem 1.5rem;
}

.dress-info strong {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-burgundy);
}

.dress-info span {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.dress-info small {
    color: var(--color-taupe);
    font-size: 0.82rem;
    font-weight: 500;
}

.dress-category {
    width: fit-content;
    color: var(--color-taupe);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: var(--color-paper);
}

.page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.2) 60%, rgba(26, 26, 26, 0.05) 100%),
        linear-gradient(0deg, rgba(26, 26, 26, 0.35) 0%, transparent 45%);
}

.compact-hero {
    min-height: 440px;
}

.page-hero-copy {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.page-hero-copy p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-hero-copy h1 {
    max-width: 760px;
}

.products-section {
    padding-top: 3.5rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.filter-button {
    border: 1px solid var(--color-line);
    border-radius: 100px;
    background: var(--color-paper);
    color: var(--color-muted);
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 450;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-button.is-active,
.filter-button:hover {
    border-color: var(--color-burgundy);
    background: var(--color-burgundy);
    color: var(--color-paper);
}

.dress-card.is-hidden {
    display: none;
}

.appointment-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto 5rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, #3A3430 100%);
    color: var(--color-paper);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
}

.appointment-strip h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.appointment-strip .eyebrow {
    color: var(--color-gold);
}

.story-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

.story-copy p {
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.story-image {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.04);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-grid article {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.process-grid span {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.process-grid h3 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
}

.process-grid p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.reverse-band {
    direction: rtl;
}

.reverse-band > * {
    direction: ltr;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 1.5rem;
}

.contact-panel {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem 2rem 2.5rem;
}

.contact-panel p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-list a {
    color: var(--color-burgundy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.contact-list a:hover {
    color: var(--color-gold);
}

.contact-form {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #FEFCF9;
    color: var(--color-ink);
    padding: 0.8rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(196, 165, 110, 0.15);
}

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

.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 3rem;
}

.footer-brand img {
    width: 175px;
    margin-bottom: 1.2rem;
    filter: brightness(1.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--color-paper);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.site-footer ul {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    width: min(100% - 2rem, var(--max-width));
    margin: 3rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-contact {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 90;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-contact:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.floating-contact .wa-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-social a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-paper);
}

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

.dress-gallery .dress-card {
    break-inside: avoid;
}

.dress-gallery .dress-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.dress-gallery .dress-card .dress-info strong {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-burgundy);
    display: block;
    text-align: center;
}

.collection-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.collection-slide {
    min-width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.collection-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-card {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-name {
    color: var(--color-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-strip {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 3rem;
}

.contact-strip-copy p {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-strip-form {
    display: grid;
    gap: 1rem;
}

.contact-strip-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-strip-fields input,
.contact-strip-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-paper);
    color: var(--color-ink);
    padding: 0.8rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-strip-fields input:focus,
.contact-strip-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(196, 165, 110, 0.15);
}

.contact-strip-fields input:first-child {
    grid-column: 1;
}

.contact-strip-fields input:nth-child(2) {
    grid-column: 2;
}

.contact-strip-fields input:nth-child(3) {
    grid-column: 1 / -1;
}

.about-intro {
    text-align: center;
}

.about-intro .about-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-card {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.values-list h3 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.value-tag {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: 100px;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: all 0.25s ease;
}

.value-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-burgundy);
    background: rgba(196, 165, 110, 0.08);
}

.product-category-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.product-category-card:last-child {
    margin-bottom: 0;
}

.product-category-image {
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #FEFCF8, #F0E8DE);
    padding: 1.5rem;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.06);
}

.product-category-copy {
    padding: 2rem 2.5rem 2.5rem 0;
}

.product-category-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-burgundy);
}

.product-category-sub {
    color: var(--color-taupe);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-category-copy p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-form-wrap {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 900px) {
    .site-nav {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        justify-content: stretch;
        gap: 0;
        background: #ffffff;
        padding: 1rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .nav-menu a {
        padding: 1rem 1.2rem;
        border-bottom: 1px solid var(--color-line);
        border-radius: 0;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-open .nav-menu {
        transform: translateX(0);
    }

    .nav-open .site-header {
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 20px rgba(44, 40, 38, 0.1);
    }

    .nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .atelier-band,
    .story-section,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reverse-band {
        direction: ltr;
    }

    .appointment-strip {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

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

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

    .contact-strip {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .product-category-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-category-image {
        aspect-ratio: 4 / 3;
    }

    .product-category-copy {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .site-nav {
        width: min(100% - 1rem, var(--max-width));
        min-height: 70px;
    }

    .brand {
        width: 140px;
    }

    .nav-menu {
        top: 70px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 4rem 0 5rem;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(26, 26, 26, 0.78) 0%, rgba(26, 26, 26, 0.35) 55%, rgba(26, 26, 26, 0.15) 100%);
    }

    .section,
    .atelier-band {
        width: min(100% - 1rem, var(--max-width));
        padding: 4rem 0;
    }

    .section-muted {
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .collection-grid,
    .product-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .collection-image {
        min-height: 240px;
    }

    .page-hero {
        min-height: 380px;
    }

    .page-hero-copy {
        width: min(100% - 1rem, var(--max-width));
        padding-bottom: 3rem;
    }

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

    .filter-button {
        min-height: 44px;
    }

    .appointment-strip {
        width: min(100% - 1rem, var(--max-width));
        margin-bottom: 3.5rem;
        padding: 1.5rem;
    }

    .floating-contact {
        width: 52px;
        height: 52px;
        right: 1rem;
        bottom: 1rem;
    }

    .floating-contact .wa-icon {
        width: 24px;
        height: 24px;
    }

    .dress-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-strip-fields {
        grid-template-columns: 1fr;
    }

    .contact-strip-fields input:nth-child(2),
    .contact-strip-fields input:nth-child(3) {
        grid-column: 1;
    }

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

    .product-category-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-category-image {
        aspect-ratio: 4 / 3;
    }

    .product-category-copy {
        padding: 1.5rem;
    }
}

/* ========================
   GALLERY CAROUSEL
======================== */

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.gallery-tab {
    border: 1px solid var(--color-line);
    border-radius: 100px;
    background: var(--color-paper);
    color: var(--color-muted);
    padding: 0.55rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.gallery-tab.is-active,
.gallery-tab:hover {
    border-color: var(--color-burgundy);
    background: var(--color-burgundy);
    color: var(--color-paper);
}

.gallery-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.carousel-track {
    display: flex;
    height: 560px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FEFCF8 0%, #F0E8DE 100%);
    padding: 2.5rem 2rem 1.5rem;
    gap: 1rem;
}

.carousel-slide img {
    max-height: 460px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 1;
}

.slide-label {
    color: var(--color-burgundy);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    flex-shrink: 0;
}

.slide-category {
    display: inline-block;
    background: rgba(92, 61, 58, 0.08);
    color: var(--color-taupe);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    flex-shrink: 0;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--color-line);
    background: var(--color-paper);
    color: var(--color-burgundy);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background: var(--color-burgundy);
    color: var(--color-paper);
    border-color: var(--color-burgundy);
    transform: scale(1.08);
    box-shadow: var(--shadow-elevated);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    min-height: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-line);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.is-active {
    background: var(--color-burgundy);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .carousel-track {
        height: 400px;
    }

    .carousel-slide {
        padding: 1.5rem 1rem 1rem;
        gap: 0.75rem;
    }

    .carousel-slide img {
        max-height: 310px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 15px;
        height: 15px;
    }

    .gallery-tab {
        padding: 0.45rem 0.9rem;
        font-size: 0.82rem;
    }
}