:root {
  --ink: #29211f;
  --paper: #fbf8f5;
  --blush: #d8beb1;
  --rose: #a66f70;
  --nude: #e8d9d0;
  --cream: #f4ece7;
  --line: rgba(76, 54, 48, .18);
  --muted: #736561;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.5; }
a { color: inherit; }
.site-header { height: 58px; padding: 0 clamp(20px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 2; background: rgba(251,248,245,.96); }
.brand { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 700; text-decoration: none; letter-spacing: -.045em; }
.brand em { font-family: "Playfair Display", serif; font-weight: 600; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: .9rem; font-weight: 600; text-decoration: none; }
.nav-cta { background: var(--ink); color: white; padding: 10px 16px; }
.hero { min-height: 154px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 390px); gap: clamp(20px, 3vw, 42px); align-items: center; padding: 14px clamp(20px, 5vw, 76px); position: relative; overflow: hidden; background: linear-gradient(105deg, var(--paper) 0 63%, var(--cream) 63%); }
.hero::after { content: "FF"; position: absolute; right: 1vw; top: -28px; font-family: "Playfair Display", serif; font-style: italic; font-size: 15rem; line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(103,72,64,.07); z-index: 0; }
.hero-copy { max-width: 920px; }
.eyebrow { margin: 0 0 7px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); }
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.055em; line-height: .98; }
h1 { max-width: 620px; font-size: clamp(1.75rem, 2.7vw, 2.6rem); }
h1 em { font-family: "Playfair Display", serif; font-weight: 600; color: var(--rose); }
.intro { max-width: 590px; margin: 6px 0 0; color: var(--muted); font-size: .86rem; }
.primary-button, .secondary-button { display: inline-flex; gap: 20px; align-items: center; justify-content: space-between; text-decoration: none; font-weight: 700; padding: 17px 21px; background: var(--blush); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transition: transform .2s, box-shadow .2s; }
.primary-button:hover, .secondary-button:hover { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.social-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.social-card { min-height: 62px; display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; align-items: center; padding: 8px 11px; text-decoration: none; border: 1px solid rgba(70,47,42,.25); transition: transform .2s, background .2s; }
.social-card:hover { transform: translateX(-4px); }
.social-card .social-type { grid-column: 1 / -1; color: var(--muted); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.social-card strong { font-family: "Playfair Display", serif; font-size: 1.05rem; font-weight: 600; overflow-wrap: anywhere; }
.vinted-card { background: white; }
.tiktok-card { background: var(--nude); }
.collection { padding: 42px clamp(20px, 5vw, 76px) 90px; background: var(--cream); color: var(--ink); }
.section-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.section-heading h2 { font-size: clamp(2rem, 3.2vw, 3rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.count { margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px clamp(18px, 2.2vw, 34px); }
.product-card { min-width: 0; }
.product-image { position: relative; display: block; overflow: hidden; background: #ddd; aspect-ratio: 4 / 5; }
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; display: block; transition: transform .5s ease; }
.product-image:hover img { transform: scale(1.025); }
.gallery-frame:hover img { transform: none; }
.gallery-arrow { position: absolute; z-index: 2; top: 50%; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); box-shadow: 0 2px 12px rgba(50,35,30,.14); }
.gallery-arrow.previous { left: 14px; }
.gallery-arrow.next { right: 14px; }
.photo-count { position: absolute; left: 16px; bottom: 18px; padding: 7px 10px; background: rgba(41,33,31,.78); color: white; font-size: .76rem; letter-spacing: .08em; }
.gallery-thumbnails { display: flex; gap: 8px; padding-top: 10px; overflow-x: auto; scrollbar-width: thin; }
.gallery-thumb { flex: 0 0 50px; width: 50px; height: 62px; padding: 0; border: 1px solid transparent; background: white; cursor: pointer; overflow: hidden; opacity: .68; }
.gallery-thumb.active { border-color: var(--rose); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.view-pill { position: absolute; right: 18px; bottom: 18px; background: rgba(255,255,255,.94); color: var(--ink); padding: 12px 16px; font-size: .88rem; font-weight: 700; }
.product-info { padding-top: 24px; }
.product-brand { margin: 0 0 10px; color: var(--rose); text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; font-weight: 700; }
.product-info h3 { margin: 0; max-width: 540px; font-family: "Playfair Display", serif; font-size: clamp(1.45rem, 2vw, 2.15rem); font-weight: 600; line-height: 1.08; }
.product-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.product-meta span { border: 1px solid var(--line); padding: 8px 12px; color: var(--muted); background: rgba(255,255,255,.45); }
.text-link { text-underline-offset: 7px; font-weight: 700; }
.vinted-banner { padding: clamp(70px, 10vw, 120px) clamp(20px, 8vw, 130px); background: var(--blush); color: var(--ink); text-align: center; }
.vinted-banner h2 { max-width: 860px; margin: 0 auto; }
.vinted-banner > p:not(.eyebrow) { max-width: 650px; margin: 28px auto 35px; color: #5f4b47; font-size: 1.08rem; }
.secondary-button { background: white; color: var(--ink); box-shadow: 5px 5px 0 var(--rose); }
.banner-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.outline-button { background: transparent; box-shadow: none; }
footer { padding: 56px clamp(20px, 5vw, 76px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
footer p { margin: 0; }
.small { color: var(--muted); font-size: .82rem; text-align: right; }

@media (max-width: 760px) {
  .site-header { height: 56px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 13px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 18px 20px 22px; background: var(--paper); }
  .social-cards { margin-top: 6px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .section-heading { align-items: start; }
  .count { font-size: .85rem; padding-top: 8px; }
  .product-grid { grid-template-columns: 1fr; gap: 68px; }
  .product-info h3 { font-size: 2.65rem; }
  footer { grid-template-columns: 1fr; }
  .small { text-align: left; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
