/* =============================================
   IRIS VANCE PHOTOGRAPHY
   Dark · Cinematic · Editorial
   ============================================= */

/* ── Design tokens ─────────────────────────── */
:root {
  --bg:          #080807;
  --bg-card:     #0d0c0b;
  --bg-soft:     #111009;
  --gold:        #c4a35a;
  --gold-dim:    #7d6735;
  --gold-glow:   rgba(196, 163, 90, 0.12);
  --text:        #f0ebe0;
  --text-dim:    #a09878;
  --text-mute:   #524e45;
  --border:      rgba(196, 163, 90, 0.14);
  --border-soft: rgba(240, 235, 224, 0.07);

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  /* Protection: prevent right-click hit on img element itself */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }
::selection { background: rgba(196, 163, 90, 0.2); color: var(--text); }

/* ── Custom cursor ──────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              opacity 0.3s;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              opacity 0.3s;
  will-change: left, top;
}

.cursor.hover  { width: 14px; height: 14px; background: var(--gold); }
.cursor-ring.hover { width: 50px; height: 50px; }

/* ── Copyright protection notice ───────────── */
.protection-notice {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: rgba(8, 8, 7, 0.96);
  border: 1px solid var(--gold-dim);
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 11px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.protection-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notice-icon {
  color: var(--gold-dim);
  font-size: 0.85rem;
}

/* ── Protected image wrapper ────────────────── */
.protected-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.protected-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.5s ease;
}

/* Transparent shield sits above img, intercepts right-click */
.image-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: crosshair;
  /* user-select: none so text tools can't grab pixels */
  user-select: none;
  -webkit-user-select: none;
}

/* Watermark — appears on hover */
.photo-watermark {
  position: absolute;
  bottom: 10px;
  right: 14px;
  z-index: 3;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.gallery-item:hover .photo-watermark,
.about-image:hover .photo-watermark {
  opacity: 1;
}

/* ── Navigation ─────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 52px;
  transition: padding 0.45s var(--ease-out), background 0.45s, border-color 0.45s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  padding: 18px 52px;
  background: rgba(8, 8, 7, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-soft);
}

.nav-logo {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.65; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 4px 0;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav-toggle.open span:first-child { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap .protected-wrap { height: 100%; }

.hero-img {
  transform: scale(1.1);
  transition: transform 10s linear;
  filter: brightness(0.9);
}

#hero.loaded .hero-img { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,7,0.82) 0%, rgba(8,8,7,0.3) 55%, rgba(8,8,7,0.65) 100%),
    linear-gradient(to top,   rgba(8,8,7,0.6) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 860px;
}

/* Hero reveal helpers */
.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.hero-reveal.in { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  transition-delay: 0.15s;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(5.5rem, 13vw, 12rem);
  font-weight: 300;
  line-height: 0.87;
  letter-spacing: -0.015em;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.ht-1 { transition-delay: 0.30s; }
.ht-2 {
  transition-delay: 0.48s;
  padding-left: 0.09em;
}

.hero-title em {
  font-style: italic;
  color: var(--text);
}

.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 44px;
  transition-delay: 0.62s;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  width: fit-content;
  transition-delay: 0.76s;
  transition: opacity 0.9s var(--ease-out) 0.76s,
              transform 0.9s var(--ease-out) 0.76s,
              color 0.3s;
}

.hero-cta:hover { color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9; }
}

/* ── Section label ──────────────────────────── */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.section-num {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-dim);
}

.section-title {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── Gallery ────────────────────────────────── */
#work {
  padding: 130px 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 10px;
  margin-bottom: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

/* Grid placement is applied by JS (applyGridLayout) so the
   layout works for any number of photos Laura uploads. */

/* Loading & empty states */
.gallery-loading,
.gallery-empty {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.gallery-empty a {
  color: var(--gold-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.gallery-empty a:hover { color: var(--gold); }

/* Hover zoom */
.gallery-item:hover .protected-wrap img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

/* Info bar — slides up on hover */
.item-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(8,8,7,0.88) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
}

.gallery-item:hover .item-info { transform: translateY(0); }

.item-num {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.item-text { flex: 1; }

.item-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.item-cat {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}

.item-lock {
  font-size: 0.9rem;
  color: var(--gold-dim);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Gallery CTA */
.gallery-cta { text-align: center; }

.btn-outline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 17px 40px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}

/* ── About ──────────────────────────────────── */
#about {
  padding: 130px 56px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image .protected-wrap {
  aspect-ratio: 3 / 4;
}

.about-image-caption {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 12px;
  text-align: right;
}

.about-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.28;
  color: var(--text);
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  margin-bottom: 36px;
}

.about-quote em { color: var(--gold); font-style: italic; }

.about-body {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 52px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 7px;
}

/* ── Services ───────────────────────────────── */
#services {
  padding: 130px 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border-soft);
  gap: 1px;
  border: 1px solid var(--border-soft);
}

.service-card {
  background: var(--bg);
  padding: 52px 38px;
  transition: background 0.35s;
}

.service-card:hover { background: var(--bg-soft); }

.service-icon {
  display: block;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 28px;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover .service-icon { transform: scale(1.12) rotate(15deg); }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 36px;
}

.service-price {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── Contact ────────────────────────────────── */
#contact {
  padding: 130px 56px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 110px;
  align-items: start;
}

.contact-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-heading em {
  font-style: italic;
  color: var(--gold);
}

.contact-intro > p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 52px;
  max-width: 340px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.contact-link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color 0.3s;
}

a.contact-link:hover { color: var(--gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.87rem;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-mute); }

.form-group select {
  color: var(--text-mute);
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%237d6735' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}

.form-group select option { background: var(--bg); color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }

.form-group textarea { resize: none; line-height: 1.65; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.btn-submit {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 17px 40px;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
  cursor: none;
}

.btn-submit:hover:not(:disabled) { background: var(--text); }
.btn-submit:disabled { opacity: 0.55; }

.form-note {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

/* ── Footer ─────────────────────────────────── */
#footer {
  border-top: 1px solid var(--border-soft);
}

.footer-inner { padding: 64px 56px 52px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}

.footer-logo {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.75;
  text-align: right;
  max-width: 520px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.footer-links { display: flex; gap: 26px; }

.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-dim); }

/* ── Scroll reveal ──────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal-up.in-view { opacity: 1; transform: translateY(0); }

/* Stagger gallery items */
.gallery-item.reveal-up:nth-child(1)  { transition-delay: 0.00s; }
.gallery-item.reveal-up:nth-child(2)  { transition-delay: 0.08s; }
.gallery-item.reveal-up:nth-child(3)  { transition-delay: 0.12s; }
.gallery-item.reveal-up:nth-child(4)  { transition-delay: 0.18s; }
.gallery-item.reveal-up:nth-child(5)  { transition-delay: 0.24s; }
.gallery-item.reveal-up:nth-child(6)  { transition-delay: 0.08s; }
.gallery-item.reveal-up:nth-child(7)  { transition-delay: 0.00s; }
.gallery-item.reveal-up:nth-child(8)  { transition-delay: 0.08s; }
.gallery-item.reveal-up:nth-child(9)  { transition-delay: 0.00s; }
.gallery-item.reveal-up:nth-child(10) { transition-delay: 0.08s; }
.gallery-item.reveal-up:nth-child(11) { transition-delay: 0.16s; }
.gallery-item.reveal-up:nth-child(12) { transition-delay: 0.08s; }

/* Stagger service cards */
.service-card.reveal-up:nth-child(1)  { transition-delay: 0.00s; }
.service-card.reveal-up:nth-child(2)  { transition-delay: 0.10s; }
.service-card.reveal-up:nth-child(3)  { transition-delay: 0.20s; }
.service-card.reveal-up:nth-child(4)  { transition-delay: 0.30s; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid  { gap: 60px; }
}

@media (max-width: 900px) {
  #nav     { padding: 22px 28px; }
  #nav.scrolled { padding: 14px 28px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 7, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 1000;
  }

  .nav-links.open  { opacity: 1; pointer-events: all; }
  .nav-links a     { font-size: 0.95rem; letter-spacing: 0.3em; color: var(--text-dim); }
  .nav-toggle      { display: flex; }

  .hero-content    { padding: 0 28px; max-width: 100%; }
  .hero-scroll-hint { left: 28px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  /* On tablet, reset JS-applied grid placement and let items flow naturally */
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }

  #work, #about, #services, #contact { padding: 90px 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image .protected-wrap { aspect-ratio: 4/3; }

  .contact-grid { grid-template-columns: 1fr; gap: 52px; }

  .footer-top    { flex-direction: column; }
  .footer-copy   { text-align: left; }
  .footer-inner  { padding: 48px 28px 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 32px; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item:nth-child(n) { grid-column: 1; grid-row: auto; }
}

/* ── Print protection ───────────────────────
   Hides all content when the page is printed
   or saved as PDF — images cannot be printed.
   ─────────────────────────────────────────── */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
  }
}
