/* =========================================================
   GALERIA SMAKU — v5 — Kamil "Lary" Kulesza, Prywatny Szef
   ========================================================= */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --clr-bg:        #0a0a0a;
  --clr-bg-card:   #111111;
  --clr-bg-input:  #141414;
  --clr-surface:   #1a1917;
  --clr-text:      #f5f0e8;
  --clr-muted:     #888880;
  --clr-gold:      #b8860b;
  --clr-gold-lt:   #d4a017;
  --clr-gold-dim:  rgba(184,134,11,.18);
  --clr-overlay:   rgba(10,10,10,.72);
  --clr-border:    rgba(184,134,11,.25);

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Outfit', system-ui, sans-serif;

  --sp-xs:  .4rem;
  --sp-sm:  .8rem;
  --sp-md:  1.6rem;
  --sp-lg:  3.2rem;
  --sp-xl:  6rem;
  --sp-2xl: 10rem;

  --radius:    6px;
  --radius-lg: 12px;
  --trans:     .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a {
  color: var(--clr-gold-lt);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--clr-text); }

/* ── Typography helpers ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
}

h1,h2,h3,h4 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.15;
}

.accent { font-style: italic; color: var(--clr-gold-lt); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  background: linear-gradient(to bottom, rgba(10,10,10,.9) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.nav-brand {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--clr-text);
  font-style: italic;
}
.nav-brand span { color: var(--clr-gold); }

.nav-links {
  display: flex;
  gap: var(--sp-lg);
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--clr-gold-lt); }

.nav-cta {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-bg) !important;
  background: var(--clr-gold);
  padding: .55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta:hover {
  background: var(--clr-gold-lt) !important;
  transform: translateY(-1px);
  color: var(--clr-bg) !important;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* cinematic gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,.85) 0%, rgba(10,10,10,.4) 60%, rgba(10,10,10,.15) 100%),
    linear-gradient(to top,   rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 50%, transparent 100%);
}

/* warm amber spot — mimics kitchen light */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; right: 10%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(184,134,11,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--sp-xl) var(--sp-xl);
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
  opacity: 0;
  animation: fadeUp .8s .3s ease forwards;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: var(--sp-xs);
  opacity: 0;
  animation: fadeUp .9s .5s ease forwards;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--clr-gold-lt);
  font-size: .65em;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--sp-md);
  opacity: 0;
  animation: fadeUp .9s .7s ease forwards;
}

.hero-tagline {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--clr-text);
  opacity: .88;
  max-width: 520px;
  margin-bottom: var(--sp-lg);
  opacity: 0;
  animation: fadeUp .9s .9s ease forwards;
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s 1.1s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover {
  background: var(--clr-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,134,11,.35);
  color: var(--clr-bg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245,240,232,.2);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
}
.btn-ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-lt);
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}

.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.15); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SECTION WRAPPER ────────────────────────────────────── */
.section {
  padding: var(--sp-2xl) var(--sp-xl);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: var(--sp-sm);
}

.section-header p {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--clr-gold);
  margin: var(--sp-md) auto;
  opacity: .6;
}

/* ── GALLERY GRID ───────────────────────────────────────── */
.gallery-section {
  background: var(--clr-bg);
  padding: var(--sp-2xl) 0;
}

.gallery-section .section-header {
  padding: 0 var(--sp-xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  padding: 0 3px;
}

/* Cell assignments */
.g-cell-1 { grid-column: 1 / 5;  grid-row: 1 / 2; } /* market       — 4 cols */
.g-cell-2 { grid-column: 5 / 9;  grid-row: 1 / 3; } /* cooking feat — 4 cols 2 rows */
.g-cell-3 { grid-column: 9 / 13; grid-row: 1 / 2; } /* plating      — 4 cols */
.g-cell-4 { grid-column: 1 / 4;  grid-row: 2 / 3; } /* teaching     — 3 cols */
.g-cell-5 { grid-column: 4 / 7;  grid-row: 2 / 3; } /* portrait     — 3 cols */
.g-cell-6 { grid-column: 9 / 13; grid-row: 2 / 3; } /* dinner feat  — 4 cols */

.g-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.g-cell:hover img {
  transform: scale(1.06);
}

/* thin gold border frame on hover */
.g-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  z-index: 3;
  transition: border-color var(--trans);
  pointer-events: none;
}
.g-cell:hover::before {
  border-color: var(--clr-gold);
}

/* caption overlay */
.g-caption {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-md);
  transition: background var(--trans);
  z-index: 2;
}

.g-cell:hover .g-caption {
  background: rgba(10,10,10,.6);
}

.g-caption-text {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clr-text);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--trans), transform var(--trans);
}

.g-caption-line {
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  margin: .4rem 0 .1rem;
  opacity: 0;
  transition: opacity var(--trans) .05s;
}

.g-caption-tag {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  opacity: 0;
  transition: opacity var(--trans) .1s;
}

.g-cell:hover .g-caption-text,
.g-cell:hover .g-caption-line,
.g-cell:hover .g-caption-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-section {
  background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-surface) 100%);
  padding: var(--sp-2xl) 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

/* warm spotlight effect */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 40% 40%, rgba(184,134,11,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--clr-border),
    0 40px 80px rgba(0,0,0,.6),
    0 8px 24px rgba(0,0,0,.4);
}

.about-photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .8s ease;
}
.about-photo-frame:hover img { transform: scale(1.03); }

/* gold corner accent */
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--clr-gold);
  border-left: 2px solid var(--clr-gold);
  z-index: 2;
  opacity: .7;
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 16px; right: 16px;
  width: 50px; height: 50px;
  border-bottom: 2px solid var(--clr-gold);
  border-right: 2px solid var(--clr-gold);
  z-index: 2;
  opacity: .7;
}

.about-text { padding-left: var(--sp-md); }

.about-text h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: var(--sp-xs);
}

.about-text h2 em {
  display: block;
  font-size: .7em;
  color: var(--clr-gold-lt);
}

.about-lead {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--clr-muted);
  margin: var(--sp-md) 0;
  line-height: 1.6;
}

.about-body {
  font-size: .95rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.about-stats {
  display: flex;
  gap: var(--sp-lg);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-lg);
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  color: var(--clr-gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: .25rem;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services-section {
  background: var(--clr-bg);
  padding: var(--sp-2xl) 0;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--clr-gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-card:hover {
  border-color: rgba(184,134,11,.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px var(--clr-gold-dim);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--clr-gold-lt);
  transition: background var(--trans), border-color var(--trans);
}
.service-card:hover .service-icon {
  background: rgba(184,134,11,.28);
  border-color: var(--clr-gold);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-xs);
}

.service-card .service-sub {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.service-card p {
  color: var(--clr-muted);
  font-size: .9rem;
  line-height: 1.75;
}

.service-tag {
  display: inline-block;
  margin-top: var(--sp-md);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
  padding: .3rem .9rem;
  border-radius: 99px;
}

/* ── PROCESS TIMELINE ───────────────────────────────────── */
.process-section {
  background: var(--clr-surface);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.process-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(184,134,11,.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: var(--sp-xl);
}

/* horizontal connector line */
.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(to right, var(--clr-gold), rgba(184,134,11,.3));
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-sm);
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 2;
  transition: background var(--trans), box-shadow var(--trans);
}

.step-num:hover {
  background: var(--clr-gold-dim);
  box-shadow: 0 0 24px rgba(184,134,11,.3);
}

.step-num-inner {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--clr-gold-lt);
  line-height: 1;
}

.step-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  margin-bottom: .3rem;
}

.step-desc {
  font-size: .82rem;
  color: var(--clr-muted);
  line-height: 1.6;
  max-width: 180px;
}

.step-arrow {
  position: absolute;
  top: 36px;
  right: -14px;
  transform: translateY(-50%);
  color: var(--clr-gold);
  font-size: .8rem;
  z-index: 3;
  opacity: .7;
}
.process-step:last-child .step-arrow { display: none; }

/* ── PRICING ────────────────────────────────────────────── */
.pricing-section {
  background: var(--clr-bg);
  padding: var(--sp-2xl) 0;
}

.pricing-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  text-align: center;
}

.price-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(184,134,11,.1);
}

/* top glow bar */
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold-lt), transparent);
}

/* corner ornaments */
.price-card::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-top: 1px solid rgba(184,134,11,.4);
  border-right: 1px solid rgba(184,134,11,.4);
}

.price-badge {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
}

.price-amount {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--clr-text);
  margin-bottom: .25rem;
}
.price-amount em { font-style: italic; color: var(--clr-gold-lt); }
.price-amount span { font-size: .35em; color: var(--clr-muted); vertical-align: super; }

.price-note {
  color: var(--clr-muted);
  font-size: .85rem;
  margin-bottom: var(--sp-lg);
}

.price-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem var(--sp-md);
  text-align: left;
  margin: var(--sp-lg) 0;
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.price-features li {
  font-size: .88rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.price-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(160deg, var(--clr-surface) 0%, var(--clr-bg) 100%);
  padding: var(--sp-2xl) 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--sp-md);
}

.contact-info p {
  color: var(--clr-muted);
  font-size: .95rem;
  margin-bottom: var(--sp-lg);
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--clr-gold-lt);
  flex-shrink: 0;
}

.contact-item-body { flex: 1; }

.contact-item-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: .2rem;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--clr-text);
  font-weight: 300;
}

.contact-item-value a {
  color: var(--clr-text);
  transition: color var(--trans);
}
.contact-item-value a:hover { color: var(--clr-gold-lt); }

/* contact form */
.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: var(--sp-sm);
}

.contact-form p {
  font-size: .85rem;
  color: var(--clr-muted);
  margin-bottom: var(--sp-lg);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: .4rem;
}

input, textarea, select {
  width: 100%;
  background: var(--clr-bg-input);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder { color: rgba(136,136,128,.5); }

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(184,134,11,.5);
  box-shadow: 0 0 0 3px rgba(184,134,11,.08);
}

textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.6;
}

select option { background: var(--clr-bg-card); }

.form-submit {
  width: 100%;
  margin-top: var(--sp-sm);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-brand {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-muted);
}
.footer-brand span { color: var(--clr-gold-lt); }

.footer-links {
  display: flex;
  gap: var(--sp-lg);
  list-style: none;
}
.footer-links a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.footer-links a:hover { color: var(--clr-gold-lt); }

.footer-copy {
  font-size: .75rem;
  color: rgba(136,136,128,.5);
}

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --sp-xl:  4rem;
    --sp-2xl: 6rem;
  }

  .nav-links { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
  }
  .g-cell-1 { grid-column: 1; grid-row: 1; }
  .g-cell-2 { grid-column: 2; grid-row: 1; }
  .g-cell-3 { grid-column: 1; grid-row: 2; }
  .g-cell-4 { grid-column: 2; grid-row: 2; }
  .g-cell-5 { grid-column: 1; grid-row: 3; }
  .g-cell-6 { grid-column: 2; grid-row: 3; }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-frame img { height: 400px; }
  .about-text { padding-left: 0; }

  .services-grid { grid-template-columns: 1fr; }

  .process-track {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .process-track::before { display: none; }
  .step-arrow { display: none; }

  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --sp-xl:  2rem;
    --sp-2xl: 4rem;
  }

  .nav { padding: var(--sp-md); }
  .nav-cta { display: none; }

  .hero-content { padding: 0 var(--sp-md) var(--sp-xl); }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 260px);
  }
  .g-cell-1 { grid-column: 1; grid-row: 1; }
  .g-cell-2 { grid-column: 1; grid-row: 2; }
  .g-cell-3 { grid-column: 1; grid-row: 3; }
  .g-cell-4 { grid-column: 1; grid-row: 4; }
  .g-cell-5 { grid-column: 1; grid-row: 5; }
  .g-cell-6 { grid-column: 1; grid-row: 6; }

  .process-track { grid-template-columns: 1fr; }

  .price-features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .about-stats { gap: var(--sp-md); }

  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}
