:root {
  --black: #0b0b0b;
  --black-soft: #151411;
  --ivory: #f5f1e8;
  --white: #fffdf8;
  --gold: #c6a15b;
  --gold-bright: #dfc17c;
  --line: rgba(198, 161, 91, .3);
  --serif: "Bodoni 72", Didot, "Bodoni MT", Georgia, serif;
  --sans: "Segoe UI", Helvetica, Arial, sans-serif;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; color: var(--black); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--black); background: var(--gold-bright); }
.shell { width: min(100% - 32px, 1440px); margin-inline: auto; }
.section { padding-block: var(--s7); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; background: var(--gold); color: var(--black); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 40; inset: 0 0 auto; height: 88px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .35s, height .35s, transform .35s; }
.site-header--dark { position: fixed; background: var(--black); border-color: var(--line); }
.site-header.is-fixed { position: fixed; height: 72px; background: rgba(11,11,11,.94); backdrop-filter: blur(12px); }
.brand { position: relative; z-index: 3; display: inline-flex; align-items: center; flex: 0 0 auto; width: 120px; }
.brand-logo { width: 100%; height: auto; object-fit: contain; }
.site-header.is-fixed .brand { width: 104px; }
.menu-toggle { position: relative; z-index: 3; display: grid; align-content: center; gap: 7px; width: 48px; height: 48px; padding: 12px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle i { width: 100%; height: 1px; background: currentColor; transition: transform .3s var(--ease), width .3s; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.site-nav { position: fixed; inset: 0; display: grid; align-content: center; gap: var(--s3); padding: var(--s5); background: var(--black); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .35s, visibility .35s, transform .35s; }
.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.site-nav a { width: max-content; color: var(--ivory); font-family: var(--serif); font-size: clamp(36px, 11vw, 60px); }
.site-nav a.active { color: var(--gold-bright); }

.intro { position: fixed; z-index: 100; inset: 0; display: grid; place-content: center; justify-items: center; color: var(--ivory); background: var(--black); transition: transform 1s var(--ease) .25s; }
.intro-logo { width: clamp(220px, 46vw, 520px); height: auto; object-fit: contain; }
.intro i { width: 0; height: 1px; margin: 14px 0 12px; background: var(--gold); animation: introLine .8s var(--ease) .2s forwards; }
.intro.is-hidden { transform: translateY(-100%); }
@keyframes introLine { to { width: min(70vw, 460px); } }

.hero { position: relative; min-height: 100svh; color: var(--white); overflow: hidden; background: var(--black); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { transform: scale(1.03); }
.hero-media img { object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.15)), linear-gradient(0deg, rgba(0,0,0,.64) 0%, transparent 45%); }
.hero-content { position: relative; z-index: 2; min-height: 100svh; padding-top: 152px; padding-bottom: 88px; display: flex; flex-direction: column; justify-content: flex-end; }
.eyebrow { margin: 0 0 var(--s3); color: var(--gold-bright); font-size: 11px; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .94; letter-spacing: -.035em; }
.hero h1 { max-width: 1050px; margin: 0; font-size: clamp(56px, 10vw, 146px); }
h1 em, h2 em { color: var(--gold-bright); font-weight: 400; }
.hero-foot { display: grid; gap: var(--s4); align-items: end; margin-top: var(--s4); }
.hero-foot p { max-width: 480px; margin: 0; color: rgba(255,255,255,.75); font-size: 15px; }
.round-link { display: grid; place-content: center; justify-items: center; gap: 8px; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 12px; letter-spacing: .12em; transition: color .3s, background .3s, border-color .3s; }
.round-link:hover { color: var(--black); background: var(--gold-bright); border-color: var(--gold-bright); }
.round-link svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.scroll-cue { position: absolute; z-index: 2; right: 16px; bottom: 32px; display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue i { width: 36px; height: 1px; background: currentColor; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleX(.4); opacity: .45; } }

.marquee { overflow: hidden; padding: 20px 0; color: var(--black); background: var(--gold); border-block: 1px solid rgba(0,0,0,.25); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 35s linear infinite; }
.marquee span { padding-inline: 24px; font-family: var(--serif); font-size: 20px; font-style: italic; white-space: nowrap; }
.marquee i { width: 5px; height: 5px; background: var(--black); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-index { display: block; color: #7c6a4d; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.manifesto { display: grid; gap: var(--s5); }
.manifesto-copy { max-width: 1040px; }
.manifesto h2, .collections h2, .contact-section h2 { margin-bottom: var(--s4); font-size: clamp(44px, 7vw, 96px); }
.body-copy { max-width: 630px; margin: 0; color: #4a463f; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.7; }

.editorial-grid { display: grid; gap: var(--s4); padding-bottom: var(--s7); }
.editorial-card a { display: block; }
.editorial-media { aspect-ratio: 4 / 3; overflow: hidden; background: #d9d2c5; }
.editorial-media img { transition: transform 1s var(--ease), filter .6s; }
.editorial-card:hover img { transform: scale(1.035); }
.editorial-meta { position: relative; padding: var(--s3) 0; border-bottom: 1px solid rgba(11,11,11,.25); }
.editorial-meta span { position: absolute; top: 29px; right: 0; color: #8e7a56; font-size: 10px; }
.editorial-meta h3 { margin: 0 0 8px; padding-right: 40px; font-size: 32px; }
.editorial-meta small { color: #6e675c; font-size: 11px; letter-spacing: .08em; }

.feature { display: grid; color: var(--ivory); background: var(--black); overflow: hidden; }
.feature-image { aspect-ratio: 4 / 3; min-height: 0; overflow: hidden; background: #111; }
.feature-image img { object-fit: contain; }
.feature-panel { display: flex; flex-direction: column; justify-content: center; padding: var(--s6) 16px; }
.feature-panel .section-index { margin-bottom: var(--s4); color: var(--gold); }
.feature-panel h2 { margin-bottom: var(--s4); font-size: clamp(48px, 6vw, 72px); }
.feature-panel .body-copy { color: rgba(245,241,232,.62); }
.text-link { width: max-content; margin-top: var(--s4); padding-bottom: 8px; color: var(--gold-bright); border-bottom: 1px solid var(--gold); font-size: 12px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.text-link span, .button span { display: inline-block; margin-left: 12px; transition: transform .3s; }
.text-link:hover span, .button:hover span { transform: translate(3px,-3px); }

.collections-head { display: grid; gap: var(--s5); margin-bottom: var(--s6); }
.collections h2 { margin: 0; }
.collection-list { border-top: 1px solid rgba(11,11,11,.25); }
.collection-row { display: grid; grid-template-columns: 32px 1fr auto; gap: var(--s2); align-items: center; padding: var(--s4) 0; border-bottom: 1px solid rgba(11,11,11,.25); transition: color .3s, padding .3s; }
.collection-row:hover { color: #8a672b; padding-inline: 8px; }
.collection-row > span, .collection-row b { font-size: 10px; font-weight: 500; letter-spacing: .12em; }
.collection-row strong { font-family: var(--serif); font-size: clamp(32px, 5vw, 64px); font-weight: 400; }
.collection-row small { display: none; color: #746d62; }

.cta-band { position: relative; min-height: 80svh; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--black); }
.cta-media, .cta-media::after { position: absolute; inset: 0; }
.cta-media::after { content: ""; background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.12) 75%); }
.cta-content { position: relative; z-index: 2; padding-bottom: var(--s7); }
.cta-content h2 { max-width: 900px; font-size: clamp(48px, 9vw, 120px); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 1px solid currentColor; border-radius: 0; background: transparent; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: color .3s, background .3s, border-color .3s; }
.button--light { color: var(--black); background: var(--ivory); border-color: var(--ivory); }
.button--light:hover { color: var(--black); background: var(--gold-bright); border-color: var(--gold-bright); }
.button--gold { color: var(--black); background: var(--gold); border-color: var(--gold); }
.button--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.site-footer { padding: var(--s6) 0 var(--s4); color: var(--ivory); background: var(--black); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: var(--s5); }
.brand--footer { justify-self: start; width: 168px; opacity: .92; }
.footer-grid > p { max-width: 330px; margin: 0; color: rgba(245,241,232,.55); }
.footer-grid nav { display: grid; gap: 12px; font-size: 13px; }
.footer-grid nav a:hover { color: var(--gold-bright); }
.footer-grid > small { padding-top: var(--s3); color: rgba(245,241,232,.4); border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }

/* Products */
body[data-page="products"] { padding-top: 88px; background: var(--ivory); }
.page-hero { padding-top: var(--s7); padding-bottom: var(--s6); border-bottom: 1px solid rgba(11,11,11,.22); }
.page-hero h1 { max-width: 1100px; margin-bottom: var(--s4); font-size: clamp(52px, 9vw, 128px); }
.page-hero .eyebrow { color: #806631; }
.page-intro { max-width: 520px; margin: 0 0 0 auto; color: #605b52; }
.catalog { padding-top: var(--s5); }
.catalog-tools { display: flex; align-items: end; justify-content: space-between; margin-bottom: var(--s4); }
.catalog-tools h2 { margin: 0; font-size: 38px; }
.catalog-tools p { margin: 0; color: #7b6d54; font-size: 12px; }
.filters { display: flex; gap: 8px; margin-bottom: var(--s5); padding-bottom: 8px; overflow-x: auto; scrollbar-width: none; }
.filter { flex: 0 0 auto; min-height: 42px; padding: 0 16px; border: 1px solid rgba(11,11,11,.3); background: transparent; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s, border-color .25s; }
.filter:hover, .filter:focus-visible { border-color: var(--gold); }
.filter.active { color: var(--ivory); background: var(--black); border-color: var(--black); }
.product-grid { display: grid; gap: var(--s5) var(--s3); }
.product-card { min-width: 0; }
.product-card[hidden] { display: none; }
.product-card button { width: 100%; padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; }
.product-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e7e0d4; }
.product-image::after { content: "İncele  ↗"; position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; color: var(--black); background: var(--gold-bright); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.product-card button:hover .product-image::after, .product-card button:focus-visible .product-image::after { opacity: 1; transform: none; }
.product-image img { object-fit: contain; transition: transform .8s var(--ease); }
.product-card button:hover img { transform: scale(1.015); }
.product-card-meta { padding-top: var(--s2); }
.product-card-meta small { color: #806d4c; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.product-card-meta h3 { margin: 8px 0 0; font-size: clamp(26px, 3vw, 38px); line-height: 1; }
.empty-state { padding: var(--s6) 0; text-align: center; }

.product-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; color: var(--ivory); background: var(--black); }
.product-dialog::backdrop { background: rgba(0,0,0,.8); }
.dialog-layout { min-height: 100%; display: grid; }
.dialog-close { position: fixed; z-index: 3; top: 20px; right: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(11,11,11,.65); cursor: pointer; }
.dialog-close span { position: absolute; left: 12px; right: 12px; top: 23px; height: 1px; background: white; transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }
.dialog-gallery { padding: var(--s3); background: #171613; }
.dialog-main { aspect-ratio: 4 / 3; overflow: hidden; background: #292722; }
.dialog-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.dialog-thumb { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid transparent; background: transparent; cursor: pointer; opacity: .55; }
.dialog-thumb.active { border-color: var(--gold); opacity: 1; }
.dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--s6) var(--s3); }
.dialog-copy h2 { margin-bottom: var(--s4); font-size: clamp(44px, 7vw, 90px); }
.dialog-copy > p:not(.eyebrow) { max-width: 480px; color: rgba(245,241,232,.58); }
.dialog-copy .button { width: max-content; margin-top: var(--s3); }

/* Contact */
.contact-hero { position: relative; min-height: 76svh; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--black); }
.contact-image, .contact-shade { position: absolute; inset: 0; }
.contact-shade { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18)), linear-gradient(0deg, rgba(0,0,0,.65), transparent 55%); }
.contact-hero-copy { position: relative; z-index: 2; padding-bottom: var(--s6); }
.contact-hero h1 { max-width: 1050px; font-size: clamp(52px, 9vw, 126px); }
.contact-section { display: grid; gap: var(--s6); }
.contact-aside .section-index { margin-bottom: var(--s6); }
.contact-note { display: grid; grid-template-columns: auto 1fr; gap: 16px; max-width: 570px; margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid rgba(11,11,11,.22); }
.contact-note span { color: #806631; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.contact-note p { margin: 0; color: #655f55; font-size: 12px; }
.contact-form { display: grid; gap: var(--s4); align-content: start; padding: var(--s4); color: var(--ivory); background: var(--black); }
.field { position: relative; }
.field label { display: block; margin-bottom: 8px; color: var(--gold-bright); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.field label small { color: rgba(245,241,232,.45); text-transform: none; }
.field input, .field textarea, .field select { width: 100%; padding: 10px 0 12px; border: 0; border-bottom: 1px solid rgba(245,241,232,.25); border-radius: 0; outline: none; color: var(--ivory); background: transparent; appearance: none; }
.field select option { color: var(--black); background: var(--ivory); }
.field-line { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.field :is(input, textarea, select):focus + .field-line { transform: scaleX(1); }
.field :is(input, textarea):user-invalid { border-color: #e58b7a; }
.form-status { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--gold-bright); font-size: 12px; }
.contact-form .button { width: max-content; }
.contact-cta { padding: var(--s7) 0; color: var(--ivory); background: #181713; }
.contact-cta h2 { margin-bottom: var(--s5); font-size: clamp(48px, 8vw, 104px); }

/* Motion */
.js .reveal, .js .reveal-card { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal-card { transform: translateY(45px); }
.js .reveal.is-visible, .js .reveal-card.is-visible { opacity: 1; transform: none; }
.js .reveal-text { opacity: 0; color: inherit; filter: blur(10px); transform: translateY(20px); transition: opacity .9s var(--ease), filter .9s var(--ease), transform .9s var(--ease); }
.js .reveal-text.is-visible { opacity: 1; filter: blur(0); transform: none; }
.split-heading .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-heading .word > span { display: inline-block; transform: translateY(108%); transition: transform .9s var(--ease); }
.split-heading.is-visible .word > span { transform: none; }
.split-heading .word:nth-child(2n) > span { transition-delay: .05s; }
.split-heading .word:nth-child(3n) > span { transition-delay: .1s; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (min-width: 720px) {
  .shell { width: min(100% - 64px, 1440px); }
  .site-header { padding-inline: 32px; }
  .hero-content { padding-bottom: 64px; }
  .hero-foot { grid-template-columns: minmax(300px, 1fr) auto; }
  .scroll-cue { right: 32px; }
  .manifesto { grid-template-columns: 1fr 3fr; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .feature { grid-template-columns: 1.15fr .85fr; min-height: 0; }
  .feature-image { aspect-ratio: auto; }
  .feature-panel { padding: var(--s6); }
  .collections-head { grid-template-columns: 1fr 3fr; }
  .collection-row { grid-template-columns: 50px 1.2fr 1fr auto; }
  .collection-row small { display: block; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > small { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .dialog-layout { grid-template-columns: 1.25fr .75fr; }
  .dialog-gallery { display: grid; grid-template-columns: 1fr 88px; gap: 12px; padding: var(--s4); }
  .dialog-main { aspect-ratio: auto; min-height: calc(100svh - 64px); }
  .dialog-thumbs { grid-template-columns: 1fr; margin-top: 0; }
  .contact-section { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr 1fr; padding: var(--s5); }
  .field--full, .contact-form .button { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .site-header { height: 104px; padding-inline: 48px; }
  .site-header--dark { height: 88px; }
  .brand { width: 148px; }
  .site-header.is-fixed .brand { width: 120px; }
  body[data-page="products"] { padding-top: 88px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; inset: auto; display: flex; align-items: center; gap: 36px; padding: 0; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .site-nav a { position: relative; color: inherit; font-family: var(--sans); font-size: 10px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
  .site-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold-bright); transform: scaleX(0); transition: transform .3s; }
  .site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
  .site-nav a.active { color: var(--gold-bright); }
  .hero-content { padding-top: 180px; }
  .hero-foot p { margin-left: 25%; }
  .editorial-grid { grid-template-columns: repeat(3, 1fr); }
  .feature { height: min(720px, calc(100svh - 88px)); min-height: 620px; }
  .feature-panel { padding: var(--s6); }
  .footer-grid { grid-template-columns: 1.5fr 1fr .6fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-section { grid-template-columns: .85fr 1.15fr; }
}

@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-card-meta h3 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .reveal-card, .js .reveal-text { opacity: 1; transform: none; color: inherit; background: none; }
  .split-heading .word > span { transform: none; }
}
