:root {
    --ivory: #f5f0e8;
    --ivory-deep: #ebe3d6;
    --cream: #ede5d4;
    --aubergine: #2b1820;
    --aubergine-soft: #3d2530;
    --plum: #5a3142;
    --rose: #c89186;
    --rose-deep: #a86b62;
    --gold: #b8945e;
    --gold-light: #d4b88a;
    --ink: #1a0f15;
    --whisper: rgba(43, 24, 32, 0.6);
    --display: 'Fraunces', 'Times New Roman', serif;
    --body: 'Inter Tight', system-ui, sans-serif;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--ivory);
    color: var(--aubergine);
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  
  /* ============ NAVIGATION ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
    color: var(--ivory);
    transition: padding 0.4s ease;
  }
  
  nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
    color: var(--aubergine);
    border-bottom: 1px solid rgba(43, 24, 32, 0.08);
  }
  
  .logo {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.35em;
    font-feature-settings: "ss01";
  }
  
  .logo .dot {
    display: inline-block;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 0.15em 0.2em;
    vertical-align: middle;
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 0.74rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .nav-links a {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.4s ease;
  }
  
  .nav-links a:hover::after { width: 100%; }
  
  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    background: var(--aubergine);
    color: var(--ivory);
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 70vh;
    height: 90vh;
    border: 1px solid rgba(184, 148, 94, 0.18);
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    pointer-events: none;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    right: -18%;
    top: 50%;
    transform: translateY(-50%);
    width: 65vh;
    height: 85vh;
    border: 1px solid rgba(184, 148, 94, 0.1);
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
  }
  
  .eyebrow .line {
    width: 40px; height: 1px;
    background: var(--gold);
  }
  
  h1 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(3rem, 6.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    font-feature-settings: "ss01";
  }
  
  h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rose);
    font-variation-settings: "SOFT" 100, "WONK" 1;
  }
  
  .hero-sub {
    font-size: 1.05rem;
    max-width: 42ch;
    color: rgba(245, 240, 232, 0.72);
    margin-bottom: 3rem;
    line-height: 1.7;
  }
  
  .cta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
  }
  
  .btn-primary {
    background: var(--gold);
    color: var(--aubergine);
    border-color: var(--gold);
  }
  
  .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(245, 240, 232, 0.3);
  }
  
  .btn-ghost:hover {
    border-color: var(--ivory);
    background: rgba(245, 240, 232, 0.05);
  }
  
  .btn-dark {
    background: var(--aubergine);
    color: var(--ivory);
    border-color: var(--aubergine);
  }
  
  .btn-dark:hover {
    background: var(--aubergine-soft);
    border-color: var(--aubergine-soft);
    transform: translateY(-2px);
  }
  
  .btn .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
  }
  
  .btn:hover .arrow { transform: translateX(4px); }
  
  /* Hero stats */
  .hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.12);
    max-width: 480px;
  }
  
  .stat-num {
    font-family: var(--display);
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }
  
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
  }
  
  .hero-visual {
    position: relative;
    z-index: 2;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade 1.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  
  .product-frame {
    position: relative;
    width: 360px;
    height: 480px;
    background: linear-gradient(160deg, rgba(200, 145, 134, 0.15), rgba(184, 148, 94, 0.08));
    border-radius: 200px 200px 8px 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 184, 138, 0.2);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  }
  
  .product-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) saturate(0.95);
    mix-blend-mode: luminosity;
    opacity: 0.85;
  }
  
  .product-tag {
    position: absolute;
    top: 30%;
    right: -8%;
    background: var(--ivory);
    color: var(--aubergine);
    padding: 1.5rem 1.75rem;
    z-index: 3;
    max-width: 220px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
  }
  
  .product-tag .tag-label {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  
  .product-tag .tag-title {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 400;
  }
  
  .product-tag .tag-line {
    width: 30px; height: 1px;
    background: var(--aubergine);
    margin: 0.8rem 0;
  }
  
  .product-tag .tag-meta {
    font-size: 0.7rem;
    color: var(--whisper);
    letter-spacing: 0.05em;
  }
  
  .year-mark {
    position: absolute;
    bottom: 3rem; left: 3rem;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  
  .year-mark .year {
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0;
  }
  
  .scroll-hint {
    position: absolute;
    bottom: 3rem; right: 3rem;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .scroll-hint::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: drip 2.5s ease-in-out infinite;
  }
  
  /* ============ MARQUEE ============ */
  .marquee {
    background: var(--ivory-deep);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(43, 24, 32, 0.08);
    border-bottom: 1px solid rgba(43, 24, 32, 0.08);
  }
  
  .marquee-track {
    display: flex;
    gap: 4rem;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
  }
  
  .marquee-item {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--aubergine-soft);
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-style: normal;
  }
  
  /* ============ PHILOSOPHY ============ */
  .philosophy {
    padding: 10rem 3rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
  
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
  }
  
  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }
  
  .philosophy h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  
  .philosophy h2 em {
    font-style: italic;
    color: var(--rose-deep);
  }
  
  .philosophy-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--aubergine-soft);
    max-width: 58ch;
  }
  
  .philosophy-body p:first-child::first-letter {
    font-family: var(--display);
    font-size: 4.5rem;
    font-weight: 400;
    float: left;
    line-height: 0.85;
    padding: 0.3rem 0.8rem 0 0;
    color: var(--rose-deep);
    font-style: italic;
  }
  
  /* ============ VALUES ============ */
  .values {
    background: var(--aubergine);
    color: var(--ivory);
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
  }
  
  .values-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .values-head {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .values-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.015em;
    max-width: 16ch;
    margin: 0 auto;
    line-height: 1.1;
  }
  
  .values-head h2 em {
    font-style: italic;
    color: var(--gold-light);
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    border-left: 1px solid rgba(245, 240, 232, 0.1);
  }
  
  .value-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(245, 240, 232, 0.1);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    transition: background 0.6s ease;
    position: relative;
  }
  
  .value-card:hover {
    background: rgba(184, 148, 94, 0.06);
  }
  
  .value-num {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
  }
  
  .value-card h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  
  .value-card p {
    font-size: 0.92rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.7;
  }
  
  /* ============ FEATURED PRODUCT ============ */
  .product-section {
    padding: 10rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .product-gallery {
    position: relative;
    height: 700px;
  }
  
  .product-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%; height: 85%;
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(43, 24, 32, 0.2);
  }
  
  .product-main img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  
  .product-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 45%; height: 50%;
    background: var(--aubergine);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(43, 24, 32, 0.3);
    border: 6px solid var(--ivory);
  }
  
  .product-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
  }
  
  .product-stamp {
    position: absolute;
    top: 8%; right: 5%;
    width: 130px; height: 130px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ivory);
    z-index: 2;
    animation: rotate 30s linear infinite;
  }
  
  .stamp-inner {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--aubergine);
    line-height: 1.3;
  }
  
  .stamp-inner strong {
    display: block;
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }
  
  .product-category {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .product-info h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
  }
  
  .product-info h2 em {
    font-style: italic;
    color: var(--rose-deep);
  }
  
  .product-lead {
    color: var(--aubergine-soft);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 52ch;
  }
  
  .product-features {
    list-style: none;
    margin: 0 0 2.5rem;
    border-top: 1px solid rgba(43, 24, 32, 0.12);
  }
  
  .product-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43, 24, 32, 0.12);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--aubergine-soft);
  }
  
  .product-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  
  /* ============ TRUST / CREDENTIALS ============ */
  .trust {
    background: var(--ivory-deep);
    padding: 8rem 3rem;
  }
  
  .trust-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .trust-head {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-head .section-label {
    justify-content: center;
  }
  
  .trust-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
  }
  
  .trust-head h2 em {
    font-style: italic;
    color: var(--rose-deep);
  }
  
  .trust-intro {
    color: var(--aubergine-soft);
    line-height: 1.8;
    max-width: 56ch;
    margin: 0 auto;
  }
  
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .trust-card {
    background: var(--ivory);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(43, 24, 32, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  }
  
  .trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -15px rgba(43, 24, 32, 0.15);
  }
  
  .trust-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.75rem;
  }
  
  .trust-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .trust-card h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    color: var(--aubergine);
    letter-spacing: -0.01em;
  }
  
  .trust-card p {
    font-size: 0.9rem;
    color: var(--aubergine-soft);
    line-height: 1.65;
  }
  
  /* ============ PROCESS ============ */
  .process {
    background: var(--ivory);
    padding: 8rem 3rem;
    position: relative;
  }
  
  .process-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
  }
  
  .process h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  
  .process h2 em {
    font-style: italic;
    color: var(--rose-deep);
  }
  
  .process-intro {
    margin-top: 2rem;
    color: var(--aubergine-soft);
    line-height: 1.8;
    max-width: 38ch;
  }
  
  .process-steps {
    list-style: none;
    counter-reset: step;
  }
  
  .process-step {
    counter-increment: step;
    padding: 2rem 0;
    border-top: 1px solid rgba(43, 24, 32, 0.15);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: baseline;
  }
  
  .process-step:last-child {
    border-bottom: 1px solid rgba(43, 24, 32, 0.15);
  }
  
  .process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 2rem;
    color: var(--gold);
  }
  
  .process-step h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }
  
  .process-step p {
    color: var(--aubergine-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 55ch;
  }
  
  /* ============ CONTACT ============ */
  .contact {
    padding: 10rem 3rem;
    background: var(--aubergine);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
  }
  
  .contact::before {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 60vh; height: 60vh;
    border: 1px solid rgba(184, 148, 94, 0.15);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .contact h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }
  
  .contact h2 em {
    font-style: italic;
    color: var(--gold-light);
  }
  
  .contact-sub {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    max-width: 52ch;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(245, 240, 232, 0.12);
    margin-bottom: 4rem;
    border: 1px solid rgba(245, 240, 232, 0.12);
  }
  
  .contact-card {
    padding: 3rem 2rem;
    background: var(--aubergine);
    transition: background 0.4s ease;
  }
  
  .contact-card:hover {
    background: var(--aubergine-soft);
  }
  
  .contact-card .label {
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  
  .contact-card a,
  .contact-card .contact-static {
    color: var(--ivory);
    text-decoration: none;
    font-family: var(--display);
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
  }
  
  .contact-card a:hover {
    color: var(--gold-light);
  }
  
  .response-note {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
  }
  
  .response-note .pulse {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  
  /* ============ FOOTER ============ */
  footer {
    background: var(--ink);
    color: rgba(245, 240, 232, 0.7);
    padding: 5rem 3rem 2rem;
  }
  
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  }
  
  .footer-brand .logo {
    margin-bottom: 1.5rem;
    color: var(--ivory);
  }
  
  .footer-brand p {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(245, 240, 232, 0.5);
    max-width: 32ch;
  }
  
  footer h4 {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  footer ul {
    list-style: none;
  }
  
  footer li {
    padding: 0.4rem 0;
    font-size: 0.92rem;
  }
  
  footer a {
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover { color: var(--gold-light); }
  
  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 0.05em;
  }
  
  .footer-bottom a { color: rgba(245, 240, 232, 0.5); }
  .footer-bottom a:hover { color: var(--gold-light); }
  
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  
  /* ============ ANIMATIONS ============ */
  @keyframes rise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fade {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  @keyframes drip {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(184, 148, 94, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 10px rgba(184, 148, 94, 0); }
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ============ RESPONSIVE ============ */
  @media (max-width: 1100px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: 7rem; }
    .hero-visual { display: none; }
    .hero::after, .hero::before { opacity: 0.4; }
    .philosophy, .process-inner, .product-section { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .product-gallery { height: 500px; }
    .hero-stats { gap: 2rem; }
    .nav-links { gap: 1.5rem; }
  }
  
  @media (max-width: 640px) {
    nav { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .hero, .philosophy, .values, .product-section, .trust, .process, .contact { padding-left: 1.5rem; padding-right: 1.5rem; }
    .year-mark, .scroll-hint { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal { flex-direction: column; gap: 0.5rem; align-items: center; }
    .cta-row { width: 100%; }
    .btn { flex: 1; justify-content: center; }
    .product-stamp { width: 90px; height: 90px; }
    .stamp-inner { font-size: 0.7rem; }
    .stamp-inner strong { font-size: 0.55rem; }
    
    .hero-stats { flex-wrap: wrap; gap: 1.5rem 2.5rem; }
    .stat-num { font-size: 1.8rem; }
  }