/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:       #0a0a0a;
    --white:       #ffffff;
    --gray-50:     #f8f8f6;
    --gray-100:    #f0ede8;
    --gray-200:    #e0ddd7;
    --gray-400:    #9a9690;
    --gray-600:    #5c5a56;
    --accent:      #c8a96e;
    --accent-dark: #a8893e;
    --green:       #2d5a3d;
    --nav-h:       64px;
}

html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; }

/* ============================================================
   NAV — DESKTOP
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 56px; height: var(--nav-h);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo svg { height: 36px; width: 36px; }
.nav-logo .logo-white { display: block; }
.nav-logo .logo-dark  { display: none; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-dark  { display: block; }

.nav-links { display: flex; align-items: center; }
.nav-item {
    position: relative; padding: 0 16px; height: var(--nav-h);
    display: flex; align-items: center;
    font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.9);
    cursor: pointer; text-decoration: none;
    transition: color 0.2s;
}
.nav.scrolled .nav-item { color: var(--black); }
.nav-item:hover { color: var(--accent); }
.nav-item.has-dropdown::after {
    content: ''; display: inline-block; width: 5px; height: 5px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); margin-left: 5px; margin-top: -2px;
}
.dropdown {
    display: none; position: absolute; top: var(--nav-h); left: 0;
    background: var(--white); min-width: 220px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-top: 2px solid var(--accent); z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
    display: block; padding: 11px 18px;
    font-size: 13px; color: var(--gray-600); text-decoration: none;
    font-weight: 400; transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--gray-50); color: var(--black); }

.nav-cta {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white); border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 16px; text-decoration: none; white-space: nowrap;
    transition: all 0.2s;
}
.nav.scrolled .nav-cta { color: var(--black); border-color: var(--black); }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--white) !important; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 4px; width: 36px; height: 36px;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 999;
    overflow-y: auto; padding: 24px 24px 40px;
    flex-direction: column; gap: 0;
}
.nav-drawer.open { display: flex; }
.drawer-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid var(--gray-100);
    font-size: 15px; font-weight: 500; color: var(--black);
    text-decoration: none; cursor: pointer;
}
.drawer-item .chevron {
    width: 8px; height: 8px;
    border-right: 2px solid var(--gray-400); border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg); transition: transform 0.2s;
}
.drawer-item.open .chevron { transform: rotate(-135deg); }
.drawer-sub {
    display: none; flex-direction: column; padding: 4px 0 4px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.drawer-sub.open { display: flex; }
.drawer-sub a {
    padding: 10px 0; font-size: 13px; color: var(--gray-600);
    text-decoration: none; font-weight: 400;
    border-bottom: 1px solid var(--gray-50);
}
.drawer-sub a:last-child { border-bottom: none; }
.drawer-cta {
    display: block; margin-top: 24px;
    background: var(--black); color: var(--white);
    text-align: center; padding: 14px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; height: 100vh; min-height: 560px;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
    padding: 0 56px 80px; overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center; z-index: 0;
}
.hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 76px); font-weight: 400; line-height: 1.1;
    color: var(--white); margin-bottom: 20px; letter-spacing: -0.01em; max-width: 820px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle {
    font-size: clamp(13px, 2vw, 16px); font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.68); max-width: 520px;
}
.scroll-indicator {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
.scroll-line { width: 1px; height: 32px; background: rgba(255,255,255,0.18); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 80px 56px 100px; background: var(--white); text-align: center; }
.about-heading { font-size: clamp(22px,3vw,36px); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 20px; }
.about-subtitle { font-size: 15px; font-weight: 400; color: var(--gray-600); margin-bottom: 12px; }
.about-body { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--black); max-width: 820px; margin: 0 auto 4px; }
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: 860px; margin: 48px auto 0; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pillar-icon-wrap { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.pillar-icon-wrap svg { width: 80px; height: 80px; }
.pillar-label { font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.35; text-align: center; }

/* ============================================================
   OUR PRODUCTS SECTION
   ============================================================ */
.clothing { padding: 56px 48px 72px; background: var(--white); }
.clothing-heading { font-size: clamp(18px,2.4vw,26px); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); margin-bottom: 12px; }
.clothing-sub { font-size: 13px; line-height: 1.65; color: var(--black); max-width: 480px; margin-bottom: 32px; }
.clothing-sub .c-blue   { color: #1a6bb5; }
.clothing-sub .c-teal   { color: #1a8a6e; }
.clothing-sub .c-red    { color: #c0392b; }
.clothing-sub .c-gold   { color: #b07d1a; }
.clothing-sub .c-purple { color: #7b3fb5; }

.clothing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.clothing-grid-r2 { margin-top: 8px; }
.clothing-grid-last { grid-template-columns: repeat(2,1fr); }

.clothing-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--gray-200); }
.clothing-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.clothing-card:hover img { transform: scale(1.05); }
.clothing-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%); pointer-events: none; }
.clothing-card-label { position: absolute; bottom: 14px; left: 14px; z-index: 2; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.clothing-card-wide .clothing-card-label { font-size: 15px; }
.clothing-card .card-hover-cue { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s; }
.clothing-card:hover .card-hover-cue { opacity: 1; }
.card-hover-cue-inner { background: rgba(0,0,0,0.6); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 20px; border: 1px solid rgba(255,255,255,0.35); }

/* ============================================================
   OUR PROCESS
   ============================================================ */
.process-section { padding: 80px 56px; background: var(--black); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(255,255,255,0.015) 60px,rgba(255,255,255,0.015) 61px),repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(255,255,255,0.015) 60px,rgba(255,255,255,0.015) 61px); pointer-events: none; }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 60px; position: relative; }
.process-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.process-eyebrow::before,.process-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.process-heading { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.process-heading em { font-style: italic; color: var(--accent); }
.process-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.75; }
.process-steps { position: relative; max-width: 820px; margin: 0 auto; }
.process-step { display: grid; grid-template-columns: 48px 32px 60px 1fr; align-items: flex-start; gap: 0 20px; padding-bottom: 40px; }
.process-step:last-child { padding-bottom: 0; }
.step-number { font-family: 'Playfair Display', serif; font-size: 12px; color: rgba(255,255,255,0.2); padding-top: 18px; text-align: right; }
.step-connector { width: 1px; background: rgba(200,169,110,0.22); margin: 18px auto 0; align-self: stretch; position: relative; }
.step-connector.last { background: transparent; }
.step-connector::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--accent); border: 2px solid var(--black); box-shadow: 0 0 0 3px rgba(200,169,110,0.2); }
.step-icon-wrap { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,110,0.2); border-radius: 50%; }
.step-icon-wrap svg { width: 38px; height: 38px; }
.step-content { padding-top: 12px; padding-bottom: 40px; }
.process-step:last-child .step-content { padding-bottom: 0; }
.step-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 480px; }
.process-step:hover .step-icon-wrap { background: rgba(200,169,110,0.08); border-color: var(--accent); transition: all 0.3s; }
.process-step:hover .step-title { color: var(--accent); transition: color 0.3s; }
.process-cta { text-align: center; margin-top: 60px; }
.process-cta p { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; margin-bottom: 16px; text-transform: uppercase; }
.process-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 32px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.process-cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: #0d0d0d; color: rgba(255,255,255,0.6); }
.footer-accent-line { height: 2px; background: linear-gradient(90deg,transparent 0%,var(--accent) 30%,var(--accent) 70%,transparent 100%); }
.footer-body { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr; gap: 0; padding: 56px 56px 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col-brand { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.06); }
.footer-col { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.06); }
.footer-col:last-child { border-right: none; padding-right: 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; }
.footer-about { font-size: 12px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-social-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 10px; }
.footer-social { display: flex; gap: 7px; flex-wrap: wrap; }
.social-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,169,110,0.06); }
.footer-col-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 12px; font-weight: 300; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-links li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact-icon { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-top: 1px; }
.footer-contact-list span,.footer-contact-list a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.6; text-decoration: none; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom { padding: 16px 56px; background: rgba(0,0,0,0.3); }
.footer-bottom-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-bottom-sep { color: rgba(255,255,255,0.12); }
.footer-made { font-size: 11px; color: rgba(255,255,255,0.16); }
.footer-designed { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-dev-link { color: var(--accent); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-dev-link:hover { color: var(--white); }

/* ============================================================
   PRODUCT CATEGORY PAGE
   ============================================================ */
.nav-white { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 56px; height: 68px; background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.back-btn:hover { color: var(--accent); }
.back-btn:hover svg { transform: translateX(-3px); }
.back-btn svg { transition: transform 0.2s; }
.page-header { background: var(--black); padding: 56px 56px 52px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: linear-gradient(135deg,transparent 0%,rgba(200,169,110,0.08) 100%); }
.page-header-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.page-header-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,48px); font-weight: 400; color: var(--white); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 12px; }
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.52); max-width: 460px; line-height: 1.65; }
.product-count { margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.products-section { padding: 48px 56px; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); transform: translateY(-3px); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 14px 14px 18px; }
.product-card-name { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 12px; min-height: 36px; }
.quote-btn { display: block; width: 100%; padding: 9px 0; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); border: 1.5px solid var(--black); background: transparent; cursor: pointer; text-decoration: none; transition: background 0.2s, color 0.2s; }
.quote-btn:hover { background: var(--black); color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-header { background: var(--black); padding: 56px 56px 52px; position: relative; overflow: hidden; }
.contact-header::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: linear-gradient(135deg,transparent 0%,rgba(200,169,110,0.08) 100%); }
.contact-header-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-header-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.contact-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,48px); font-weight: 400; color: var(--white); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 12px; }
.contact-header h1 em { font-style: italic; color: var(--accent); }
.contact-header p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.52); max-width: 460px; line-height: 1.65; }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.78); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); width: 100%; max-width: 580px; max-height: 92vh; overflow-y: auto; position: relative; padding: 40px 40px 36px; transform: translateY(24px); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--gray-200); cursor: pointer; color: var(--gray-600); transition: border-color 0.2s, color 0.2s; }
.modal-close:hover { border-color: var(--black); color: var(--black); }
.modal-header { margin-bottom: 22px; }
.modal-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--black); line-height: 1.1; margin-bottom: 6px; }
.modal-title em { font-style: italic; color: var(--accent); }
.modal-subtitle { font-size: 12px; color: var(--gray-600); font-weight: 300; }
.modal-product-tag { display: flex; align-items: center; gap: 8px; background: var(--gray-50); border: 1px solid var(--gray-200); padding: 7px 12px; margin-bottom: 20px; font-size: 12px; font-weight: 600; color: var(--black); }
.modal-product-tag svg { color: var(--accent); flex-shrink: 0; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.modal-field { margin-bottom: 14px; }
.modal-field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.modal-field label span { color: var(--accent); }
.modal-field input,.modal-field textarea { width: 100%; padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--black); background: var(--white); border: 1.5px solid var(--gray-200); outline: none; transition: border-color 0.2s; }
.modal-field input:focus,.modal-field textarea:focus { border-color: var(--black); }
.modal-field input.error,.modal-field textarea.error { border-color: #c0392b; }
.modal-field textarea { resize: vertical; min-height: 90px; }
.modal-error { display: block; font-size: 11px; color: #c0392b; margin-top: 3px; min-height: 15px; }
.modal-actions { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.modal-submit { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 24px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.modal-submit:hover { background: var(--accent); transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-cancel { background: none; border: none; cursor: pointer; font-size: 12px; font-weight: 500; color: var(--gray-400); padding: 12px 0; transition: color 0.2s; }
.modal-cancel:hover { color: var(--black); }
.modal-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 0 16px; }
.modal-success-icon { width: 60px; height: 60px; border-radius: 50%; background: #f0faf4; border: 2px solid #a8d5b5; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.modal-success h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 8px; }
.modal-success p { font-size: 13px; font-weight: 300; color: var(--gray-600); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE — TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .nav { padding: 0 32px; }
    .nav-links { display: none; }
    .nav-cta  { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 0 32px 72px; }
    .about { padding: 64px 32px 80px; }
    .about-pillars { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .clothing { padding: 48px 32px 64px; }
    .clothing-grid { grid-template-columns: repeat(2,1fr); }
    .clothing-grid-last { grid-template-columns: repeat(2,1fr); }
    .process-section { padding: 64px 32px; }
    .process-step { grid-template-columns: 40px 28px 56px 1fr; gap: 0 16px; }
    .footer-body { grid-template-columns: 1fr 1fr; padding: 48px 32px 40px; }
    .footer-col-brand { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 0 32px; margin-bottom: 0; }
    .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0 28px; }
    .footer-col:nth-child(3) { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.06); }
    .footer-col:last-child { border-bottom: none; padding-left: 24px; }
    .footer-bottom { padding: 14px 32px; }
    .products-section { padding: 40px 32px; }
    .products-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
    .page-header { padding: 48px 32px 44px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (max 640px)
   ============================================================ */
@media (max-width: 640px) {
    :root { --nav-h: 60px; }

    .nav { padding: 0 16px; height: var(--nav-h); }
    .nav-logo svg { height: 30px; width: 30px; }

    /* Hero */
    .hero { padding: 0 20px 64px; min-height: 100svh; }
    .hero-title { font-size: clamp(28px, 8vw, 42px); margin-bottom: 16px; }
    .hero-subtitle { font-size: 13px; }
    .scroll-indicator { display: none; }

    /* About */
    .about { padding: 52px 20px 64px; }
    .about-heading { font-size: 22px; }
    .about-body { font-size: 13px; }
    .about-pillars { grid-template-columns: 1fr; gap: 36px; max-width: 280px; }
    .pillar-icon-wrap { width: 72px; height: 72px; }
    .pillar-icon-wrap svg { width: 64px; height: 64px; }

    /* Products grid */
    .clothing { padding: 40px 16px 56px; }
    .clothing-sub { max-width: 100%; }
    .clothing-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }
    .clothing-grid-last { grid-template-columns: repeat(2,1fr); }
    .clothing-card-label { font-size: 11px; bottom: 10px; left: 10px; }

    /* Process */
    .process-section { padding: 52px 16px; }
    .process-header { margin-bottom: 44px; }
    .process-step { grid-template-columns: 0 24px 48px 1fr; gap: 0 12px; }
    .step-number { display: none; }
    .step-icon-wrap { width: 48px; height: 48px; }
    .step-icon-wrap svg { width: 30px; height: 30px; }
    .step-title { font-size: 14px; }
    .step-desc { font-size: 12px; }
    .process-step { padding-bottom: 32px; }
    .step-content { padding-top: 10px; padding-bottom: 32px; }
    .process-cta-btn { padding: 12px 24px; font-size: 11px; }

    /* Footer */
    .footer-body { grid-template-columns: 1fr; padding: 36px 20px 28px; }
    .footer-col-brand { grid-column: 1; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 28px; margin-bottom: 0; }
    .footer-col { padding: 24px 0; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-col:last-child { border-bottom: none; }
    .footer-col:nth-child(3) { padding-right: 0; border-right: none !important; }
    .footer-col:last-child { padding-left: 0; }
    .footer-bottom { padding: 14px 20px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
    .footer-bottom-sep { display: none; }

    /* Product category page */
    .page-header { padding: 40px 16px 36px; margin-top: var(--nav-h); }
    .products-section { padding: 28px 16px 48px; }
    .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .product-card-name { font-size: 12px; min-height: auto; }
    .quote-btn { font-size: 10px; padding: 8px 0; }

    /* Breadcrumb */
    .breadcrumb-bar { padding: 8px 16px !important; margin-top: var(--nav-h) !important; }

    /* Contact */
    .contact-header { padding: 40px 16px 36px; margin-top: var(--nav-h); }

    /* Modal */
    .modal-box { padding: 28px 18px 24px; }
    .modal-row { grid-template-columns: 1fr; gap: 0; }
    .modal-title { font-size: 22px; }
    .modal-actions { flex-direction: column; align-items: stretch; }
    .modal-submit { justify-content: center; }
    .modal-cancel { text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (max 380px)
   ============================================================ */
@media (max-width: 380px) {
    .clothing-grid { grid-template-columns: 1fr; }
    .clothing-grid-last { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 26px; }
}
