/* =========================================================
   Ben Peleskey — Photography & Visual Identity
   Stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #f4f1eb;
  --bg-soft:   #ece7dd;
  --ink:       #141414;
  --ink-soft:  #2a2620;
  --muted:     #6c6760;
  --line:      #d9d2c8;
  --card:      #fffaf1;
  --dark:      #0f0f0f;
  --gold:      #b88d55;

  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --shadow-sm: 0 6px 18px rgba(20, 20, 20, .06);
  --shadow-md: 0 18px 40px rgba(20, 20, 20, .10);
  --shadow-lg: 0 30px 80px rgba(20, 20, 20, .18);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Base / resets ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Offsets anchor-link landings so the sticky nav doesn't cover section eyebrows */
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.012em;
  line-height: 1.55;                  /* increased body line-height */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle noise texture overlay on the beige background for depth.
   SVG-encoded so no extra file is loaded. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* Promote real content above the noise layer */
.nav, main, footer { position: relative; z-index: 2; }

/* Consistent, visible focus ring (only on keyboard nav) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link — hidden until focused, then anchors to top-left */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0 0 8px 0;
  transform: translateY(-110%);
  transition: transform .25s var(--ease);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow.light { color: rgba(255, 255, 255, .55); }

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  /* Capped at 128px so "Images with" always fits the hero text column (~642px wide)
     on wide displays — keeps the headline at 2 lines, not 3 */
  font-size: clamp(64px, 9vw, 128px);
  line-height: .82;
  margin: 0 0 28px;
  letter-spacing: -.075em;
  font-weight: 500;
}
h1 em {
  font-style: italic;
  color: var(--gold);   /* warm accent — more visible than --ink-soft */
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: .95;
  margin: 0;
  font-weight: 500;
  letter-spacing: -.05em;
}

/* ---------- Top navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* Frosted glass kicks in only once scrolled past the hero */
.nav.scrolled {
  background: rgba(244, 241, 235, .72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(20, 20, 20, .08);
  box-shadow: 0 8px 24px rgba(20, 20, 20, .04);
}
.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #242424;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1280px;
  margin: auto;
  padding: 90px 28px 110px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: end;
  position: relative;
  min-height: 90vh;
}
.hero-text { padding-bottom: 8px; }
.lead {
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.35;
  max-width: 560px;
  margin: 0;
  color: #2a2620;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

/* Buttons — 300ms scale + shadow on hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .3s var(--ease),
              box-shadow .3s var(--ease),
              background .3s var(--ease),
              color .3s var(--ease);
}
.btn:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 20, 20, .18);
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { background: #000; }
.btn.ghost { border-color: rgba(20, 20, 20, .25); }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease);
}
.hero-visual:hover img { transform: scale(1.03); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.5));
}
.hero-tag {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.hero-tag strong {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}
.hero-tag span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .78);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--muted), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 1px;
  height: 30%;
  background: var(--ink);
  animation: scroll-bounce 2.2s var(--ease) infinite;
}
@keyframes scroll-bounce {
  0%   { top: -30%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Generic section ---------- */
.section {
  max-width: 1280px;
  margin: auto;
  padding: 96px 28px;
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 44px;
  align-items: end;
}
.section-head .eyebrow {
  grid-column: 1 / -1;       /* eyebrow always spans full width */
  margin-bottom: 4px;
}
.section-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

/* ---------- Work grid (overlay hover animation) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.work-card {
  height: 280px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.work-card:hover img {
  transform: scale(1.08);
  filter: brightness(.88);
}

/* Overlay slides up + fades in from bottom */
.work-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: padding .35s var(--ease);
}
.work-title {
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1;
  transform: translateY(8px);
  transition: transform .4s var(--ease);
}
.work-meta {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.work-card:hover .work-title { transform: translateY(0); }
.work-card:hover .work-meta {
  opacity: 1;
  transform: translateY(0);
}
.work-card:hover .work-overlay { padding-bottom: 26px; }

/* Touch devices have no hover — show the resting overlay state by default */
@media (hover: none) {
  .work-title { transform: translateY(0); }
  .work-meta  { opacity: 1; transform: translateY(0); }
}

/* ---------- Gallery (60/40 split, built by JS) ---------- */
.gallery {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 8px;
}

/* Stage */
.stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  min-height: 720px;
  box-shadow: var(--shadow-md);
}
.stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s var(--ease), transform 1.2s var(--ease);
}
.stage img.active { opacity: 1; }
.stage .counter {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, .9);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Prev / next arrows */
.arrows {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(20, 20, 20, .42);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.arrow:hover {
  background: rgba(20, 20, 20, .7);
  transform: scale(1.07);
}

/* Right-side copy panel */
.gallery-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.gallery-copy h3 {
  font-family: Georgia, serif;
  font-size: 44px;
  letter-spacing: -.04em;
  line-height: .98;
  margin: 0;
}
.gallery-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #625c54;
  background: rgba(255, 255, 255, .4);
}

/* Thumbnail grid */
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumb {
  height: 86px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: #ddd;
  cursor: pointer;
  opacity: .7;
  padding: 0;
  transition: opacity .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.thumb:hover { opacity: .92; transform: translateY(-2px); }
.thumb.active { border-color: var(--ink); opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- About (unified panel — dark + light halves connect) ---------- */
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.about-dark {
  background: var(--dark);
  color: #fff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 360px;
  position: relative;
}
.about-dark::after {
  /* Subtle gold accent bar bridging the two panels */
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 20px;
  height: 60px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateY(-50%);
  opacity: .85;
  z-index: 2;
}
.about-quote {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: rgba(255, 255, 255, .92);
  margin: 0;
}
.about-sign {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .55);
}
.about-light {
  background: var(--card);
  padding: 52px 44px;
}
.about-light p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}
.about-light p:last-child { margin-bottom: 0; }

/* ---------- Prices (middle card elevated) ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 36px 30px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-number {
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: .1em;
}
.price-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.price-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.price-card strong {
  display: block;
  margin-top: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
}

/* Featured middle card */
.price-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.price-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.price-card--featured .price-number,
.price-card--featured p { color: rgba(255, 255, 255, .65); }
.price-card--featured strong { color: var(--gold); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--dark);
  color: #fff;
  border-radius: 34px;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: end;
  box-shadow: var(--shadow-lg);
}
.contact h2 { color: #fff; margin-bottom: 16px; }
.contact p {
  font-size: 19px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.5;
  margin: 0;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-links a {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, .04);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-links a:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .35);
  transform: translateX(4px);
}
.contact-links small {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

/* ---------- Back-to-top floating button ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #fff;
  transform: translateY(-2px) scale(1);
}

/* ---------- Body scroll-lock when mobile menu is open ---------- */
body.menu-open { overflow: hidden; }

/* ---------- Footer ---------- */
footer {
  max-width: 1280px;
  margin: auto;
  padding: 36px 28px 64px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-sep { opacity: .5; }
.footer-right a {
  transition: color .25s var(--ease);
}
.footer-right a:hover { color: var(--ink); }

/* ---------- Scroll-triggered reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */

/* Tablet & below */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 90px; min-height: auto; }
  .hero-visual { min-height: 560px; }
  .scroll-indicator { display: none; }

  .section { padding: 72px 24px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .stage { min-height: 540px; }
  .about-panel { grid-template-columns: 1fr; }
  .about-dark::after {
    top: auto;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%);
    width: 60px;
    height: 20px;
  }
  .prices { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .contact { grid-template-columns: 1fr; padding: 40px 32px; }

  /* Mobile nav: hide inline links, show hamburger */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 28px;
    background: rgba(244, 241, 235, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
  }
  .nav-links.open {
    max-height: 360px;
    padding: 12px 28px 24px;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: block; }
}

/* Phone */
@media (max-width: 580px) {
  h1 { font-size: clamp(54px, 14vw, 84px); }
  .hero-visual { min-height: 480px; border-radius: 22px; }
  .stage { min-height: 460px; border-radius: 22px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { height: 320px; }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
  .contact,
  .about-dark,
  .about-light,
  .gallery-copy { padding: 28px; border-radius: 22px; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .brand { font-size: 18px; }
  .nav-inner { padding: 14px 18px; }
  .section { padding: 60px 18px; }
  .hero { padding: 48px 18px 80px; }
}
