/* ═══════════════════════════════════════════
   ATELIER — Minimal Artistic
   ═══════════════════════════════════════════ */

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

:root {
  --bg:       #000000;
  --bg2:      #111111;
  --ink:      #ffffff;
  --ink-mid:  #e0ddd8;
  --ink-dim:  #c8c4be;
  --line:     rgba(255,255,255,0.10);
  --line-mid: rgba(255,255,255,0.20);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans:    'Montserrat', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gap:  140px;
  --max:  1280px;
}

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink-mid);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-dim); }

/* ─── LOADER ─── */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 10000; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.loader-bar {
  position: absolute; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--ink);
}
.loader-inner { text-align: center; }
.loader-letters { display: flex; gap: 3px; justify-content: center; }
.loader-letters span {
  font-family: var(--serif); font-size: 36px; letter-spacing: 3px;
  color: var(--ink); opacity: 0; transform: translateY(20px); display: inline-block;
}
.loader-sub {
  font-size: 8px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 18px; opacity: 0;
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.section { padding: var(--gap) 0; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 56px;
  transition: background 0.6s, padding 0.4s, border-color 0.6s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  padding: 20px 56px;
  border-bottom-color: var(--line);
}
.logo-text {
  font-family: var(--serif); font-size: 20px;
  letter-spacing: 7px; text-transform: uppercase; color: var(--ink);
}
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-link {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink-mid); position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--line-mid); padding: 8px 22px;
  color: var(--ink) !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }
.nav-cta::after { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: transform 0.35s, opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-link {
  display: block; font-family: var(--display);
  font-size: clamp(30px, 9vw, 50px);
  color: var(--ink); padding: 10px 0; transition: color 0.3s;
}
.mobile-link:hover { color: var(--ink-mid); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 24px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(70px, 13vw, 160px);
  font-weight: 400; line-height: 0.88;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 48px;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-italic { font-style: italic; color: var(--ink-dim); overflow: visible; padding-bottom: 0.15em; }
.hero-line .char {
  display: inline-block;
  opacity: 0; transform: translateY(110%);
  backface-visibility: hidden;
}
.hero-line .char.space { width: 0.28em; }
.hero-actions {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; opacity: 0;
}
.hero-link {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-mid); border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.hero-link:hover { color: var(--ink); border-color: var(--ink); }

.hero-scroll-indicator {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-mid), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.4; } 50%{ opacity:0.9; } }
.hero-scroll-indicator span { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-dim); }
.hero-side-info { position: absolute; left: 56px; bottom: 44px; z-index: 3; opacity: 0; }
.side-info-text {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  writing-mode: vertical-rl; text-orientation: mixed;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 36px; position: relative; overflow: hidden;
  cursor: pointer; transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.btn-primary { background: var(--ink); color: var(--bg); border: 1px solid var(--ink); font-weight: 500; }
.btn-primary:hover { background: var(--bg); color: var(--ink); }
.btn-ghost { border: 1px solid var(--line-mid); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-full { width: 100%; }

/* ─── SECTION TYPOGRAPHY ─── */
.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400; line-height: 1.12; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ink-dim); }
.section-header { margin-bottom: 72px; }
.section-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 12px;
}

/* ─── ABOUT ─── */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 104px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-frame { position: relative; z-index: 1; }
.img-reveal-wrap { position: relative; overflow: hidden; }
.img-reveal-curtain {
  position: absolute; inset: 0;
  background: var(--bg2); transform-origin: right; z-index: 1;
}
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 68%; height: 68%;
  border: 1px solid var(--line); z-index: 0; opacity: 0;
}
.about-stats {
  position: absolute; bottom: -48px; left: -20px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 20px 28px; display: flex; gap: 32px; z-index: 2; opacity: 0;
}
.stat-number { display: block; font-family: var(--display); font-size: 40px; color: var(--ink); line-height: 1; }
.stat-plus { display: inline; font-family: var(--display); font-size: 26px; color: var(--ink); vertical-align: super; }
.stat-label { display: block; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-dim); margin-top: 4px; }
.about-divider { width: 32px; height: 1px; background: var(--line-mid); margin: 28px 0; }
.about-text { font-family: var(--serif); font-size: 17px; font-weight: 300; color: #d8d4ce; line-height: 2; margin-bottom: 18px; }
.about-img-frame img { width: 100%; display: block; object-fit: cover; }
.signature-placeholder { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-dim); margin-top: 32px; }

/* ─── CRAFT ─── */
.craft { background: var(--bg); border-top: 1px solid var(--line); }
.craft-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.craft-card { background: transparent; overflow: visible; }
.craft-card-img { overflow: hidden; }
.craft-card-img img { width: 100%; height: auto; display: block; transition: transform 1s var(--ease); }
.craft-card:hover .craft-card-img img { transform: scale(1.04); }
.craft-visual { width: 100%; aspect-ratio: 4/3; transition: transform 1s var(--ease); }
.craft-card:hover .craft-visual { transform: scale(1.04); }
.craft-visual--painting {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(180,60,40,0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(120,50,160,0.75) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 80%, rgba(30,80,160,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 70%, rgba(200,130,30,0.6) 0%, transparent 45%),
    linear-gradient(135deg, #1a1008 0%, #2c1a0e 100%);
}
.craft-visual--sculpture {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(180,165,140,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 25%, rgba(120,105,85,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 75%, rgba(90,80,65,0.7) 0%, transparent 50%),
    linear-gradient(160deg, #2a2420 0%, #3d3228 50%, #1e1a16 100%);
}
.craft-visual--restore {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(180,130,60,0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 28%, rgba(140,95,40,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 75%, rgba(100,65,25,0.7) 0%, transparent 55%),
    linear-gradient(145deg, #1c1408 0%, #2e1f0a 50%, #161005 100%);
}
.craft-card-body { padding: 22px 0 0; }
.craft-title { font-family: var(--display); font-size: 32px; font-weight: 400; color: var(--ink); margin-bottom: 14px; }
.craft-desc { font-family: var(--serif); font-size: 18px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 20px; }
.craft-link {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-dim); border-bottom: 1px solid var(--line);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
}
.craft-link:hover { color: var(--ink); border-color: var(--ink-mid); }

/* ─── GALLERY ─── */
.gallery-section { background: var(--bg); border-top: 1px solid var(--line); }
.gallery-filters { display: flex; gap: 2px; margin-bottom: 52px; flex-wrap: wrap; }
.filter-btn {
  background: none; border: 1px solid var(--line);
  color: var(--ink-dim); font-family: var(--sans);
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  padding: 9px 22px; cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink-mid); }
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item {
  overflow: hidden; cursor: pointer; transition: opacity 0.4s;
}
.gallery-item.hidden { display: none; }
.gallery-item-inner { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item-inner img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item:hover .gallery-item-inner img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.95) 0%, rgba(20,18,15,0.60) 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 4px; display: block; }
.gallery-name { font-family: var(--display); font-size: 17px; font-weight: 400; color: #ffffff; }
.gallery-year { font-size: 11px; color: rgba(255,255,255,0.85); margin-top: 2px; display: block; }
.gallery-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: #ffffff; font-size: 18px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transform: scale(0) rotate(-45deg);
  transition: transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-zoom { transform: scale(1) rotate(0deg); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; background: rgba(20,18,15,0.97);
  z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 84vw; max-height: 72vh; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 84vw; max-height: 72vh; width: auto; height: auto; object-fit: contain; display: block; }
.lightbox-meta { text-align: center; color: #ffffff; white-space: nowrap; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none;
  border: 1px solid rgba(249,247,244,0.18); color: rgba(249,247,244,0.6); cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lightbox-close { top: 24px; right: 24px; width: 40px; height: 40px; font-size: 16px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); width: 40px; height: 56px; font-size: 26px; }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); width: 40px; height: 56px; font-size: 26px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: rgba(255,255,255,0.6); color: #ffffff; }

/* ─── STEPS ─── */
.steps-section { background: var(--bg); border-top: 1px solid var(--line); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step { padding: 52px 40px 52px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; padding-right: 0; }
.step-num { font-family: var(--serif); font-size: 44px; color: var(--line-mid); line-height: 1; margin-bottom: 20px; }
.step-title { font-family: var(--display); font-size: 19px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.step-desc { font-family: var(--serif); font-size: 14px; color: var(--ink-mid); line-height: 1.9; }

/* ─── QUOTE ─── */
.quote-section { background: var(--bg); padding: 112px 0; border-top: 1px solid var(--line); }
.site-quote {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 400; font-style: italic;
  text-align: center; color: var(--ink); line-height: 1.55;
  max-width: 760px; margin: 0 auto;
}
.quote-mark { font-size: 1.3em; color: var(--ink-dim); vertical-align: -0.1em; line-height: 0; }
.quote-word { display: inline-block; }

/* ─── FOR SALE ─── */
.forsale { background: var(--bg); border-top: 1px solid var(--line); }
.sale-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sale-item { cursor: pointer; }
.sale-item-inner { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.sale-item-inner--tall { aspect-ratio: 1/2; }
.sale-item-inner--square { aspect-ratio: 1/1; }
.sale-item-inner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.sale-item:hover .sale-item-inner img { transform: scale(1.04); }
.sale-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.95) 0%, rgba(20,18,15,0.60) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity 0.4s var(--ease);
}
.sale-item:hover .sale-item-overlay { opacity: 1; }
.sale-item-cat { font-family: var(--sans); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.sale-item-bottom { display: flex; flex-direction: column; gap: 4px; }
.sale-item-title { font-family: var(--display); font-size: 19px; font-weight: 400; color: #ffffff; line-height: 1.2; }
.sale-item-dims { font-family: var(--sans); font-size: 8px; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); display: block; margin-bottom: 10px; }
.sale-item-row { display: flex; justify-content: space-between; align-items: center; }
.sale-item-price { font-family: var(--display); font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.85); }
.sale-item-btn {
  font-family: var(--sans); font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
}
.sale-item-btn:hover { color: #ffffff; border-color: rgba(255,255,255,0.7); }
.sale-subheader { margin-top: 88px; margin-bottom: 56px; }
.forsale-note {
  text-align: center; margin-top: 56px;
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-dim);
}
.forsale-note a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.forsale-note--large { font-size: 20px; margin-top: 40px; color: var(--ink-dim); }

/* ─── CONTACT ─── */
.contact { background: var(--bg); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 104px; align-items: start; }
.contact-text { font-family: var(--serif); font-size: 17px; color: var(--ink-mid); line-height: 2; margin: 20px 0 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 5px; }
.detail-label { font-size: 8px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--ink-dim); }
.detail-value { font-family: var(--serif); font-size: 16px; color: var(--ink); transition: color 0.3s; }
a.detail-value:hover { color: var(--ink-mid); }
.social-links { display: flex; gap: 20px; }
.social-link {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-mid); border-bottom: 1px solid var(--line);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
}
.social-link:hover { color: var(--ink); border-color: var(--ink-mid); }

.contact-form { display: flex; flex-direction: column; gap: 32px; }
.form-group { position: relative; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line); color: var(--ink);
  font-family: var(--serif); font-size: 16px;
  padding: 12px 0 10px; outline: none;
  transition: border-color 0.3s; appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg); color: var(--ink); }
.form-group label {
  position: absolute; left: 0; top: 12px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-dim); transition: top 0.3s, font-size 0.3s, color 0.3s;
  pointer-events: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label { top: -16px; font-size: 8px; color: var(--ink); }
.form-line { position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--ink); transition: width 0.5s var(--ease); }
.form-group:focus-within .form-line { width: 100%; }
textarea { resize: none; }

/* ─── FOOTER ─── */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 56px 0 36px; }
.footer-inner { text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 26px; letter-spacing: 8px; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-dim); margin-bottom: 28px; }
.footer-links { display: flex; gap: 36px; justify-content: center; margin-bottom: 28px; }
.footer-links a { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-dim); transition: color 0.3s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 9px; color: var(--ink-dim); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav { padding: 24px 40px; }
  .nav.scrolled { padding: 18px 40px; }
  .sale-grid { grid-template-columns: 1fr 1fr; }
  .craft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .craft-card:last-child { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 72px; }
  .about-stats { position: static; margin-top: 20px; }
  .about-img-accent { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: none; padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  :root { --gap: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .container { padding: 0 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sale-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; gap: 48px; }
  .craft-card:last-child { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-side-info { display: none; }
  .hero-actions { gap: 28px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 11vw, 56px); }
  .hero-actions { flex-direction: column; align-items: center; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; }
}
