/* ============================================================
   DAVY NESTOR VISUALS — Main Stylesheet v1.0
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #0a0a0a;
  --white:      #f5f3ef;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --muted:      #888078;
  --surface:    #111110;
  --surface2:   #161614;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Raleway', sans-serif; font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* CURSOR */
.dn-cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; mix-blend-mode: difference; }
.dn-cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(201,169,110,.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: left .12s ease, top .12s ease, width .3s, height .3s; }
.dn-cursor.expanded { width: 14px; height: 14px; }
.dn-cursor-ring.expanded { width: 54px; height: 54px; }

/* NAV */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 2rem 3rem; }
#site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,.95) 0%, transparent 100%); pointer-events: none; }
.site-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: .25em; text-transform: uppercase; color: var(--white); position: relative; }
#primary-menu { display: flex; gap: 2.5rem; list-style: none; position: relative; }
#primary-menu a { font-size: .65rem; font-weight: 300; letter-spacing: .3em; color: rgba(245,243,239,.6); text-transform: uppercase; transition: color .3s; }
#primary-menu a:hover, #primary-menu .current-menu-item > a { color: var(--gold); }

/* HERO */
.dn-hero { height: 100vh; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.dn-hero__left { position: relative; overflow: hidden; }
.dn-hero__left img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); filter: brightness(.85) contrast(1.05); }
.dn-hero__left::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--black) 100%); }
.dn-hero__right { display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5rem 8rem 3rem; }
.dn-hero__eyebrow { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s .5s forwards; }
.dn-hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; letter-spacing: .02em; margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s .7s forwards; }
.dn-hero__title em { font-style: italic; color: var(--gold-light); }
.dn-hero__desc { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,243,239,.5); line-height: 2; max-width: 260px; margin-bottom: 3rem; opacity: 0; animation: fadeUp 1s .9s forwards; }
.dn-hero__cta { display: inline-flex; align-items: center; gap: 1.2rem; opacity: 0; animation: fadeUp 1s 1.1s forwards; }
.dn-hero__cta span { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; font-weight: 400; }
.dn-hero__cta-line { width: 50px; height: 1px; background: var(--gold); transition: width .4s; }
.dn-hero__cta:hover .dn-hero__cta-line { width: 80px; }
.dn-hero__scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .75rem; opacity: 0; animation: fadeIn 1s 1.5s forwards; }
.dn-hero__scroll span { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; color: rgba(245,243,239,.4); writing-mode: vertical-rl; }
.dn-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s 2s infinite; }

/* SECTION HEADER */
.dn-section-header { display: flex; align-items: baseline; gap: 2rem; margin-bottom: 4rem; }
.dn-section-label { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); }
.dn-section-rule { flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,169,110,.3), transparent); }

/* CATEGORY GRID */
.dn-categories { padding: 8rem 3rem; max-width: 1400px; margin: 0 auto; }
.dn-cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 500px 340px; gap: 3px; }
.dn-cat-item { position: relative; overflow: hidden; }
.dn-cat-item:first-child { grid-row: 1 / 3; }
.dn-cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .6s; filter: brightness(.75) saturate(.9); }
.dn-cat-item:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1); }
.dn-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 50%); }
.dn-cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transform: translateY(8px); transition: transform .4s; }
.dn-cat-item:hover .dn-cat-content { transform: translateY(0); }
.dn-cat-num { font-family: 'Cormorant Garamond', serif; font-size: .7rem; letter-spacing: .3em; color: var(--gold); margin-bottom: .5rem; display: block; }
.dn-cat-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; letter-spacing: .05em; line-height: 1; }
.dn-cat-item:first-child .dn-cat-title { font-size: 2.8rem; }
.dn-cat-tag { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; color: rgba(245,243,239,.5); display: inline-block; margin-top: .5rem; }

/* ABOUT */
.dn-about { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.dn-about__image { position: relative; overflow: hidden; }
.dn-about__image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) contrast(1.05) sepia(.1); }
.dn-about__text { background: var(--surface); display: flex; flex-direction: column; justify-content: center; padding: 6rem 5rem; position: relative; }
.dn-about__text::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 18rem; color: rgba(201,169,110,.05); position: absolute; top: -2rem; left: 3rem; line-height: 1; pointer-events: none; }
.dn-about__quote { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; font-weight: 300; line-height: 1.5; color: var(--gold-light); margin-bottom: 2rem; position: relative; z-index: 1; }
.dn-about__body { font-size: .78rem; line-height: 2.2; color: rgba(245,243,239,.55); letter-spacing: .08em; max-width: 360px; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.dn-about__sig { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--gold); letter-spacing: .05em; position: relative; z-index: 1; }

/* TICKER */
.dn-ticker { padding: 1.5rem 0; background: var(--gold); overflow: hidden; white-space: nowrap; }
.dn-ticker__inner { display: inline-flex; gap: 4rem; animation: ticker 20s linear infinite; }
.dn-ticker__item { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: var(--black); letter-spacing: .1em; display: inline-flex; align-items: center; gap: 1.5rem; }
.dn-ticker__dot { width: 4px; height: 4px; background: rgba(10,10,10,.4); border-radius: 50%; display: inline-block; }

/* GALLERY */
.dn-gallery { padding: 8rem 3rem; max-width: 1400px; margin: 0 auto; }
.dn-gallery__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; letter-spacing: .03em; margin-bottom: 4rem; line-height: 1.1; }
.dn-gallery__title em { font-style: italic; color: var(--gold); }
.dn-gallery__masonry { columns: 3; column-gap: 3px; }
.dn-gallery__item { break-inside: avoid; margin-bottom: 3px; overflow: hidden; }
.dn-gallery__item img { width: 100%; display: block; transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s; filter: brightness(.8) contrast(1.05); }
.dn-gallery__item:hover img { transform: scale(1.04); filter: brightness(.95) contrast(1.05); }

/* SERVICES */
.dn-services { background: var(--surface); padding: 8rem 3rem; }
.dn-services__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.dn-services__heading { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem; }
.dn-services__heading em { font-style: italic; color: var(--gold); }
.dn-services__sub { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,239,.4); line-height: 2; margin-bottom: 2.5rem; }
.dn-btn-outline { display: inline-flex; align-items: center; gap: 1rem; padding: .9rem 2rem; border: 1px solid rgba(201,169,110,.4); color: var(--gold); font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; font-weight: 300; transition: border-color .3s, background .3s, color .3s; }
.dn-btn-outline:hover { border-color: var(--gold); background: var(--gold); color: var(--black); }
.dn-services__list { list-style: none; }
.dn-service-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 1.8rem 0; border-bottom: 1px solid rgba(245,243,239,.06); transition: padding-left .3s; }
.dn-service-row:first-child { border-top: 1px solid rgba(245,243,239,.06); }
.dn-service-row:hover { padding-left: .5rem; }
.dn-service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; }
.dn-service-desc { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,239,.35); margin-top: .3rem; }
.dn-service-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); text-align: right; }

/* CONTACT */
.dn-contact { padding: 10rem 3rem; max-width: 900px; margin: 0 auto; text-align: center; }
.dn-contact__eyebrow { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.dn-contact__heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem; }
.dn-contact__heading em { font-style: italic; color: var(--gold-light); }
.dn-contact__text { font-size: .75rem; letter-spacing: .15em; color: rgba(245,243,239,.45); line-height: 2.2; text-transform: uppercase; margin: 0 auto 3.5rem; max-width: 400px; }
.dn-contact__email { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; letter-spacing: .1em; color: var(--gold); border-bottom: 1px solid rgba(201,169,110,.3); padding-bottom: .3rem; transition: border-color .3s; }
.dn-contact__email:hover { border-color: var(--gold); }

/* ---- PRINT SHOP ---- */
.dn-print-hero { height: 60vh; min-height: 500px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.dn-print-hero__bg { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.dn-print-hero__bg-img { overflow: hidden; }
.dn-print-hero__bg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.4) contrast(1.1) saturate(.7); transform: scale(1.05); }
.dn-print-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.3) 60%, transparent 100%); }
.dn-print-hero__content { position: relative; z-index: 2; padding: 0 3rem 5rem; width: 100%; }
.dn-print-hero__eyebrow { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0; animation: fadeUp .9s .3s forwards; }
.dn-print-hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,5vw,5rem); font-weight: 300; line-height: 1.05; opacity: 0; animation: fadeUp .9s .5s forwards; }
.dn-print-hero__title em { font-style: italic; color: var(--gold-light); }
.dn-print-hero__desc { margin-top: 1.2rem; font-size: .72rem; letter-spacing: .2em; color: rgba(245,243,239,.45); text-transform: uppercase; line-height: 2; max-width: 500px; opacity: 0; animation: fadeUp .9s .7s forwards; }

.dn-info-bar { background: var(--surface); border-top: 1px solid rgba(201,169,110,.15); border-bottom: 1px solid rgba(201,169,110,.15); padding: 1.8rem 3rem; display: flex; gap: 4rem; align-items: center; overflow-x: auto; }
.dn-info-item { display: flex; align-items: center; gap: 1rem; white-space: nowrap; flex-shrink: 0; }
.dn-info-icon { width: 28px; height: 28px; border: 1px solid rgba(201,169,110,.3); display: flex; align-items: center; justify-content: center; }
.dn-info-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.dn-info-label { font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(245,243,239,.4); margin-bottom: .2rem; }
.dn-info-value { font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--white); }
.dn-info-sep { width: 1px; height: 40px; background: rgba(245,243,239,.08); flex-shrink: 0; }

.dn-filter-bar { padding: 3rem 3rem 0; display: flex; align-items: center; justify-content: space-between; }
.dn-filters { display: flex; gap: .5rem; }
.dn-filter-btn { background: none; border: 1px solid rgba(245,243,239,.12); color: rgba(245,243,239,.45); font-family: 'Raleway',sans-serif; font-size: .58rem; font-weight: 300; letter-spacing: .3em; text-transform: uppercase; padding: .5rem 1.2rem; cursor: pointer; transition: all .3s; }
.dn-filter-btn:hover, .dn-filter-btn.active { border-color: var(--gold); color: var(--gold); }
.dn-filter-btn.active { background: rgba(201,169,110,.07); }

.dn-prints-grid { padding: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.dn-print-card { position: relative; overflow: hidden; background: var(--surface2); aspect-ratio: 3/4; }
.dn-print-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .5s; filter: brightness(.82) contrast(1.05) saturate(.9); }
.dn-print-card:hover img { transform: scale(1.06); filter: brightness(.6); }
.dn-print-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.92) 0%, transparent 50%); }
.dn-print-card:hover .dn-print-overlay { opacity: .9; }
.dn-print-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; transform: translateY(4px); transition: transform .4s; }
.dn-print-card:hover .dn-print-info { transform: translateY(0); }
.dn-print-edition { display: inline-flex; align-items: center; gap: .5rem; font-size: .52rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.dn-edition-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.dn-print-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; line-height: 1.1; margin-bottom: .5rem; }
.dn-print-series { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,243,239,.4); margin-bottom: 1.2rem; }
.dn-print-actions { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(245,243,239,.1); padding-top: 1rem; opacity: 0; transform: translateY(8px); transition: opacity .4s .05s, transform .4s .05s; }
.dn-print-card:hover .dn-print-actions { opacity: 1; transform: translateY(0); }
.dn-print-sizes { display: flex; gap: .4rem; }
.dn-size-badge { font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; border: 1px solid rgba(245,243,239,.2); color: rgba(245,243,239,.5); padding: .25rem .5rem; }
.dn-order-btn { background: none; border: 1px solid rgba(201,169,110,.5); color: var(--gold); font-family: 'Raleway',sans-serif; font-size: .55rem; font-weight: 300; letter-spacing: .35em; text-transform: uppercase; padding: .5rem 1rem; cursor: pointer; transition: all .3s; }
.dn-order-btn:hover { background: var(--gold); color: var(--black); }

/* MODAL */
.dn-modal-backdrop { position: fixed; inset: 0; z-index: 500; background: rgba(10,10,10,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s; padding: 2rem; }
.dn-modal-backdrop.open { opacity: 1; pointer-events: all; }
.dn-modal { background: var(--surface); border: 1px solid rgba(201,169,110,.15); width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; transform: translateY(20px); transition: transform .4s; }
.dn-modal-backdrop.open .dn-modal { transform: translateY(0); }
.dn-modal__image { position: relative; overflow: hidden; min-height: 480px; }
.dn-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.dn-modal__image-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; font-family: 'Cormorant Garamond',serif; font-size: .8rem; font-style: italic; color: rgba(245,243,239,.6); }
.dn-modal__body { padding: 2.5rem; display: flex; flex-direction: column; }
.dn-modal__close { align-self: flex-end; background: none; border: none; color: rgba(245,243,239,.4); font-size: 1.2rem; cursor: pointer; transition: color .3s; margin-bottom: 1.5rem; font-family: 'Raleway',sans-serif; font-weight: 200; }
.dn-modal__close:hover { color: var(--gold); }
.dn-modal__edition-label { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; }
.dn-modal__title { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 300; line-height: 1.1; margin-bottom: .5rem; }
.dn-modal__series { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,243,239,.35); margin-bottom: 1.5rem; }
.dn-modal__desc { font-size: .72rem; line-height: 2; color: rgba(245,243,239,.5); margin-bottom: 2rem; }
.dn-size-section-label { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; color: rgba(245,243,239,.4); margin-bottom: .8rem; }
.dn-size-options { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.dn-size-option { border: 1px solid rgba(245,243,239,.15); background: none; color: rgba(245,243,239,.55); font-family: 'Raleway',sans-serif; font-size: .6rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; padding: .6rem 1rem; cursor: pointer; transition: all .25s; display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.dn-size-option .size-cm { font-size: .7rem; font-weight: 400; color: var(--white); }
.dn-size-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.07); }
.dn-size-option.selected .size-cm { color: var(--gold); }
.dn-paper-options { display: flex; gap: .5rem; margin-bottom: 2rem; }
.dn-paper-option { flex: 1; border: 1px solid rgba(245,243,239,.12); background: none; color: rgba(245,243,239,.4); font-family: 'Raleway',sans-serif; font-size: .55rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; padding: .6rem .5rem; cursor: pointer; transition: all .25s; }
.dn-paper-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.07); }
.dn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.dn-form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.dn-form-label { font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(245,243,239,.35); }
.dn-form-input { background: rgba(245,243,239,.04); border: 1px solid rgba(245,243,239,.1); color: var(--white); font-family: 'Raleway',sans-serif; font-size: .8rem; font-weight: 300; padding: .7rem .9rem; outline: none; transition: border-color .3s; }
.dn-form-input:focus { border-color: rgba(201,169,110,.4); }
.dn-form-input::placeholder { color: rgba(245,243,239,.2); }
textarea.dn-form-input { resize: vertical; min-height: 80px; }
.dn-submit-btn { width: 100%; background: none; border: 1px solid rgba(201,169,110,.4); color: var(--gold); font-family: 'Raleway',sans-serif; font-size: .6rem; font-weight: 300; letter-spacing: .4em; text-transform: uppercase; padding: 1rem 2rem; cursor: pointer; transition: all .3s; margin-top: .5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.dn-submit-btn:hover { background: var(--gold); color: var(--black); }
.dn-submit-line { width: 30px; height: 1px; background: currentColor; }
.dn-success-msg { display: none; text-align: center; padding: 2rem 0; }
.dn-success-msg.show { display: block; }
.dn-success-icon { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.dn-success-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.dn-success-title { font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 300; margin-bottom: .8rem; }
.dn-success-text { font-size: .68rem; letter-spacing: .15em; line-height: 2; color: rgba(245,243,239,.45); text-transform: uppercase; }

/* PROCESS */
.dn-process { padding: 8rem 3rem; background: var(--surface); border-top: 1px solid rgba(245,243,239,.05); }
.dn-process__inner { max-width: 1400px; margin: 0 auto; }
.dn-process__header { display: flex; align-items: baseline; gap: 2rem; margin-bottom: 5rem; }
.dn-process__rule { flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,169,110,.3), transparent); }
.dn-process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; }
.dn-process__step { position: relative; }
.dn-step-num { font-family: 'Cormorant Garamond',serif; font-size: 4rem; font-weight: 300; line-height: 1; color: rgba(201,169,110,.12); margin-bottom: 1.5rem; }
.dn-step-title { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 300; margin-bottom: .8rem; color: var(--gold-light); }
.dn-step-desc { font-size: .68rem; line-height: 2.2; color: rgba(245,243,239,.4); }
.dn-step-connector { position: absolute; top: 2rem; right: -1.5rem; width: 3rem; height: 1px; background: linear-gradient(to right, rgba(201,169,110,.3), transparent); }
.dn-process__step:last-child .dn-step-connector { display: none; }

/* SPECS & FAQ */
.dn-print-specs { padding: 6rem 3rem; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.dn-specs-title { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.1; }
.dn-specs-title em { font-style: italic; color: var(--gold); }
.dn-specs-list { list-style: none; }
.dn-spec-row { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(245,243,239,.06); }
.dn-spec-row:first-child { border-top: 1px solid rgba(245,243,239,.06); }
.dn-spec-key { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,243,239,.35); width: 100px; flex-shrink: 0; }
.dn-spec-val { font-family: 'Cormorant Garamond',serif; font-size: 1rem; color: var(--white); line-height: 1.5; }
.dn-faq-item { border-bottom: 1px solid rgba(245,243,239,.06); overflow: hidden; }
.dn-faq-item:first-child { border-top: 1px solid rgba(245,243,239,.06); }
.dn-faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 0; cursor: pointer; gap: 1rem; }
.dn-faq-q-text { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 300; color: var(--white); text-align: left; }
.dn-faq-icon { width: 22px; height: 22px; border: 1px solid rgba(201,169,110,.3); display: flex; align-items: center; justify-content: center; transition: border-color .3s; flex-shrink: 0; }
.dn-faq-icon svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2; transition: transform .3s; }
.dn-faq-item.open .dn-faq-icon { border-color: var(--gold); }
.dn-faq-item.open .dn-faq-icon svg { transform: rotate(45deg); }
.dn-faq-a { font-size: .7rem; line-height: 2.2; color: rgba(245,243,239,.4); max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.dn-faq-item.open .dn-faq-a { max-height: 200px; padding-bottom: 1.2rem; }

/* FOOTER */
#site-footer { border-top: 1px solid rgba(245,243,239,.06); padding: 3rem; display: flex; align-items: center; justify-content: space-between; }
.dn-footer-logo { font-family: 'Cormorant Garamond',serif; font-size: 1rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,243,239,.4); }
.dn-footer-copy { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,243,239,.25); }
.dn-footer-socials { display: flex; gap: 1.5rem; }
.dn-footer-socials a { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,243,239,.35); transition: color .3s; }
.dn-footer-socials a:hover { color: var(--gold); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100%{opacity:.4;} 50%{opacity:1;} }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,.3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dn-hero { grid-template-columns: 1fr; }
  .dn-hero__left { position: absolute; inset: 0; }
  .dn-hero__left::after { background: rgba(10,10,10,.55); }
  .dn-hero__right { position: relative; z-index: 1; padding: 0 2rem 6rem; }
  .dn-cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dn-cat-item:first-child { grid-row: auto; grid-column: 1/3; }
  .dn-about { grid-template-columns: 1fr; }
  .dn-about__image { height: 50vw; }
  .dn-services__inner { grid-template-columns: 1fr; gap: 3rem; }
  .dn-process__steps { grid-template-columns: repeat(2,1fr); }
  .dn-print-specs { grid-template-columns: 1fr; }
  .dn-gallery__masonry { columns: 2; }
  .dn-prints-grid { grid-template-columns: repeat(2,1fr); }
  .dn-modal { grid-template-columns: 1fr; }
  .dn-modal__image { min-height: 300px; }
}
@media (max-width: 640px) {
  #site-header { padding: 1.5rem; }
  #primary-menu { display: none; }
  .dn-categories, .dn-gallery, .dn-contact, .dn-print-specs { padding-left: 1.5rem; padding-right: 1.5rem; }
  .dn-cat-grid { grid-template-columns: 1fr; }
  .dn-cat-item:first-child { grid-column: auto; }
  .dn-gallery__masonry { columns: 1; }
  .dn-prints-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  .dn-process__steps { grid-template-columns: 1fr; }
  .dn-info-bar { gap: 2rem; padding: 1.5rem; }
}

/* 404 */
.dn-404-main { min-height: calc(100vh - 160px); display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.dn-404-wrap { text-align: center; max-width: 520px; }
.dn-404-visual { margin-bottom: 2.5rem; }
.dn-404-visual svg { width: clamp(180px, 40vw, 280px); height: auto; animation: dn404float 4s ease-in-out infinite; }
.dn-404-code { font-family: 'Cormorant Garamond',serif; font-size: clamp(5rem, 15vw, 9rem); font-weight: 300; line-height: 1; color: rgba(201,169,110,0.15); letter-spacing: .15em; margin: 0 0 .25rem; }
.dn-404-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 300; font-style: italic; color: var(--white); margin: 0 0 1.2rem; }
.dn-404-sub { font-size: .7rem; letter-spacing: .18em; line-height: 2.2; color: rgba(245,243,239,.38); text-transform: uppercase; margin: 0 0 3rem; }
.dn-404-cta { display: inline-flex; align-items: center; gap: 1.2rem; font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,.35); padding: 1rem 2.5rem; transition: background .3s, color .3s; text-decoration: none; }
.dn-404-cta:hover { background: var(--gold); color: var(--black); }
.dn-404-cta-line { width: 28px; height: 1px; background: currentColor; flex-shrink: 0; }
@keyframes dn404float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* LOGIN PAGE */
.dn-login-main { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--black); }
.dn-login-box { width: 100%; max-width: 400px; display: flex; flex-direction: column; align-items: center; }
.dn-login-logo { font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 300; letter-spacing: .25em; text-transform: uppercase; color: var(--white); margin-bottom: 3rem; }
.dn-login-logo img { height: 40px; width: auto; }
.dn-login-eyebrow { font-size: .55rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.dn-login-title { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 2.5rem; }
.dn-login-form-wrap { width: 100%; }

/* Drupal login form overrides */
.dn-login-form-wrap .form-item { margin-bottom: 1.2rem; }
.dn-login-form-wrap label { display: block; font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(245,243,239,.35); margin-bottom: .5rem; }
.dn-login-form-wrap input[type="text"],
.dn-login-form-wrap input[type="password"],
.dn-login-form-wrap input[type="email"] { width: 100%; background: rgba(245,243,239,.04); border: 1px solid rgba(245,243,239,.1); border-radius: 0; color: var(--white); font-family: 'Raleway',sans-serif; font-size: .85rem; font-weight: 300; padding: .85rem 1rem; outline: none; transition: border-color .3s; box-sizing: border-box; }
.dn-login-form-wrap input[type="text"]:focus,
.dn-login-form-wrap input[type="password"]:focus { border-color: rgba(201,169,110,.5); }
.dn-login-form-wrap input[type="submit"] { width: 100%; margin-top: 1.5rem; background: none; border: 1px solid rgba(201,169,110,.4); color: var(--gold); font-family: 'Raleway',sans-serif; font-size: .6rem; font-weight: 300; letter-spacing: .4em; text-transform: uppercase; padding: 1rem 2rem; cursor: pointer; transition: background .3s, color .3s; }
.dn-login-form-wrap input[type="submit"]:hover { background: var(--gold); color: var(--black); }
.dn-login-form-wrap .form-item--password-confirm,
.dn-login-form-wrap .description { font-size: .65rem; color: rgba(245,243,239,.3); margin-top: .4rem; line-height: 1.8; }
.dn-login-form-wrap .messages { padding: .8rem 1rem; margin-bottom: 1rem; font-size: .7rem; border-left: 2px solid var(--gold); background: rgba(201,169,110,.05); color: rgba(245,243,239,.7); }
.dn-login-form-wrap .messages--error { border-color: rgba(201,80,80,.6); background: rgba(201,80,80,.05); }
.dn-login-form-wrap a { color: var(--gold); font-size: .65rem; }

.dn-login-back { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2.5rem; font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(245,243,239,.3); transition: color .3s; }
.dn-login-back:hover { color: var(--gold); }
.dn-login-back-line { width: 22px; height: 1px; background: currentColor; flex-shrink: 0; }

/* ─── GALLERY LIGHTBOX HOVER ─────────────────────────────────── */
.dn-gallery__item { position: relative; cursor: zoom-in; overflow: hidden; }
.dn-gallery__item img { transition: transform 0.45s ease; display: block; width: 100%; }
.dn-gallery__item:hover img { transform: scale(1.06); }
.dn-gallery__zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.dn-gallery__item:hover .dn-gallery__zoom { opacity: 1; }
.dn-gallery__zoom svg {
  width: 38px; height: 38px; color: #c9a96e;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}

/* ─── LIGHTBOX OVERLAY ────────────────────────────────────────── */
.dn-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dn-lightbox.is-open { opacity: 1; visibility: visible; }
.dn-lightbox__img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; display: block;
  transition: opacity 0.3s;
}
.dn-lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.7); cursor: pointer;
  font-size: 1.8rem; line-height: 1; padding: 0.25rem;
  transition: color 0.2s;
}
.dn-lightbox__close:hover { color: #c9a96e; }
.dn-lightbox__prev,
.dn-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.45); cursor: pointer;
  font-size: 3rem; line-height: 1; padding: 1rem 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.dn-lightbox__prev { left: 0; }
.dn-lightbox__next { right: 0; }
.dn-lightbox__prev:hover { color: #c9a96e; transform: translateY(-50%) translateX(-3px); }
.dn-lightbox__next:hover { color: #c9a96e; transform: translateY(-50%) translateX(3px); }
.dn-lightbox__caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; letter-spacing: 0.12em; white-space: nowrap;
  pointer-events: none;
}
.dn-lightbox__counter {
  position: absolute; top: 1.25rem; left: 1.5rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .dn-lightbox__prev, .dn-lightbox__next { font-size: 2rem; padding: 0.6rem 0.9rem; }
}

/* ═══ MOBILE NAV ══════════════════════════════════════════════ */

/* Hide cursor on touch devices */
@media (hover: none) {
  .dn-cursor, .dn-cursor-ring { display: none !important; }
}

/* Hamburger button */
.dn-nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; position: relative; z-index: 201;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.dn-nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.dn-nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dn-nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.dn-nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.dn-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1000;
}
.dn-mobile-nav.is-open { display: block; }
.dn-mobile-nav__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.72);
  opacity: 0; transition: opacity 0.35s;
}
.dn-mobile-nav.is-open .dn-mobile-nav__backdrop { opacity: 1; }
.dn-mobile-nav__drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--surface);
  border-left: 1px solid rgba(201,169,110,0.15);
  display: flex; flex-direction: column; padding: 1.8rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.dn-mobile-nav.is-open .dn-mobile-nav__drawer { transform: translateX(0); }
.dn-mobile-nav__close {
  align-self: flex-end;
  background: none; border: none;
  color: rgba(245,243,239,0.4); font-size: 1.6rem;
  cursor: pointer; padding: 0.4rem;
  transition: color 0.2s; margin-bottom: 1.5rem; line-height: 1;
}
.dn-mobile-nav__close:hover { color: var(--gold); }
.dn-mobile-nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.dn-mobile-nav__list { list-style: none; display: flex; flex-direction: column; }
.dn-mobile-nav__list li { border-bottom: 1px solid rgba(245,243,239,0.06); }
.dn-mobile-nav__list a {
  display: block; padding: 1rem 0;
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.dn-mobile-nav__list a:hover,
.dn-mobile-nav__list .is-active > a,
.dn-mobile-nav__list .current-menu-item > a { color: var(--gold); padding-left: 0.5rem; }

/* ═══ MOBILE LAYOUT FIXES ════════════════════════════════════ */
@media (max-width: 640px) {
  /* Show hamburger, hide desktop nav */
  .dn-nav-toggle { display: flex; }
  #primary-menu { display: none; }

  /* Hero */
  .dn-hero__right { padding: 0 1.5rem 5rem; }

  /* Footer — stack vertically */
  #site-footer {
    flex-direction: column; gap: 1.2rem;
    text-align: center; padding: 2.5rem 1.5rem;
  }

  /* Services */
  .dn-services { padding: 5rem 1.5rem; }

  /* Contact */
  .dn-contact { padding: 5rem 1.5rem; }

  /* Gallery — show zoom hint on touch */
  .dn-gallery__zoom { opacity: 0.45; }
}

@media (max-width: 1024px) {
  /* About section: tighter padding */
  .dn-about__text { padding: 3.5rem 2rem; }
}

/* ─── FOOTER SOCIAL ICONS ─────────────────────────────────── */
.dn-footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(245,243,239,0.35);
  transition: color 0.3s, transform 0.3s;
}
.dn-footer-social-link:hover { color: var(--gold); transform: translateY(-2px); }
.dn-footer-social-link svg { width: 18px; height: 18px; }
