/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --blue:      #1a6fd4;
  --blue-dark: #1254a8;
  --green:     #3aaa35;
  --green-dark:#2a8426;
  --ink:       #0f1f2e;
  --ink2:      #2c4a5a;
  --muted:     #6b8899;
  --line:      #dde8ef;
  --wash:      #f4f9fc;
  --white:     #ffffff;
  --gold:      #f5a623;
  --radius:    14px;
  --shadow:    0 8px 40px rgba(15,31,46,.10);
  --shadow-lg: 0 20px 60px rgba(15,31,46,.16);
  --ff-head:   'Fraunces', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(14px) rotate(-2deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity:.6; }
  100% { transform: scale(1.7); opacity:0; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%  { background-position: -200% center; }
  100%{ background-position:  200% center; }
}
@keyframes badge-pop {
  0%   { transform: scale(.7); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes card-in {
  from { opacity: 0; transform: translateX(40px) scale(.96); }
  to   { opacity: 1; transform: translateX(0)   scale(1); }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fade-up  { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }
.delay-5 { animation-delay: .58s; }

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

/* ─── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px clamp(16px,4vw,56px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,232,239,.7);
  transition: box-shadow .3s;
}
.topbar.scrolled { box-shadow: 0 4px 24px rgba(15,31,46,.08); }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 10px;
  overflow: hidden; background: #e8f4ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.brand-text small  { display: block; font-size: 11.5px; color: var(--muted); margin-top: 1px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  position: relative; padding-bottom: 2px;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--blue);
  border-radius: 2px; transition: width .25s ease;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }

.cta-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 99px;
  background: var(--blue); color: #fff;
  font-size: 13.5px; font-weight: 600;
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 14px rgba(26,111,212,.3);
}
.cta-pill:hover { background: var(--blue-dark); transform: translateY(-1px); }
.cta-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7fffb0;
  position: relative;
}
.cta-dot::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%; border: 2px solid rgba(127,255,176,.5);
  animation: pulse-ring .9s ease-out infinite;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,111,212,.35);
}
.btn-primary:hover { box-shadow: 0 8px 26px rgba(26,111,212,.45); }

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(58,170,53,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.18);
  color: #fff; border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

/* ─── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-label.light { color: rgba(255,255,255,.7); }
.section-label.green { color: var(--green); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 40%, #0e3a6e 100%);
  background-image: url("assets/shop-front.jpg");
  background-size: cover;
  background-position: center top;
  background-blend-mode: luminosity;
  background-image: url("assets/shop-front.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden; display: flex; flex-direction: column;
}

/* decorative circles */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-circle {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,111,212,.25), rgba(58,170,53,.15));
  filter: blur(1px);
}
.dc1 { width: 520px; height: 520px; top: -140px; right: -80px; animation: floatA 8s ease-in-out infinite; }
.dc2 { width: 320px; height: 320px; bottom: -60px; left: -80px; animation: floatB 10s ease-in-out infinite; }
.dc3 { width: 180px; height: 180px; top: 40%; left: 42%; animation: floatC 6s ease-in-out infinite; opacity:.4; }

/* hex grid pattern */
.hero-hex-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 17.3v17.4L30 52 0 34.7V17.3z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  flex: 1;
  padding: clamp(80px,10vw,120px) clamp(20px,5vw,80px) 60px;
  max-width: 1320px; margin: 0 auto; width: 100%;
}

/* left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(127,255,176,.12); border: 1px solid rgba(127,255,176,.3);
  color: #7fffb0; border-radius: 99px;
  padding: 6px 14px; font-size: 12.5px; font-weight: 600;
  margin-bottom: 24px;
  animation: badge-pop .6s cubic-bezier(.34,1.56,.64,1) .2s both;
}
.badge-live-dot {
  width: 7px; height: 7px; background: #7fffb0; border-radius: 50%;
  position: relative; flex-shrink: 0;
}
.badge-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(127,255,176,.5);
  animation: pulse-ring 1.1s ease-out infinite;
}

.hero h1 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(36px, 5vw, 62px); line-height: 1.08;
  color: #fff; margin-bottom: 20px;
  animation: fadeUp .7s ease .3s both;
}
.hero h1 em { font-style: italic; color: #7fffb0; }

.hero-sub {
  font-size: clamp(15px,1.6vw,18px); line-height: 1.7;
  color: rgba(255,255,255,.72); margin-bottom: 32px;
  animation: fadeUp .7s ease .45s both;
  max-width: 520px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeUp .7s ease .58s both;
}

/* right — floating cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  animation: fadeIn .8s ease .5s both;
}
.hc {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border-radius: 16px; padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: transform .25s, background .25s;
  animation: card-in .6s ease both;
}
.hc:nth-child(1){ animation-delay:.5s; }
.hc:nth-child(2){ animation-delay:.62s; }
.hc:nth-child(3){ animation-delay:.74s; }
.hc:nth-child(4){ animation-delay:.86s; }
.hc:hover { transform: translateY(-4px); background: rgba(255,255,255,.13); }
.hc-icon { font-size: 28px; flex-shrink: 0; }
.hc-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }
.hc-sub   { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }

/* stats row */
.hero-stats {
  grid-column: 1/-1;
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .7s ease .7s both;
}
.hstat-num {
  font-family: var(--ff-head);
  font-size: 36px; font-weight: 700; color: #fff; line-height: 1;
}
.hstat-num span { color: #7fffb0; }
.hstat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* scroll hint */
.hero-scroll {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 0 clamp(20px,5vw,80px) 32px;
  color: rgba(255,255,255,.35); font-size: 12px;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 32px; height: 1px; background: rgba(255,255,255,.25);
}
@keyframes bounce-down {
  0%,100%{ transform:translateY(0);} 50%{transform:translateY(5px);}
}
.scroll-arrow { animation: bounce-down 1.4s ease-in-out infinite; }

/* ─── TICKER / MARQUEE ────────────────────────────────────── */
.ticker {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green-dark) 100%);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 36px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
}
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,.5); border-radius: 50%; flex-shrink:0; }

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 24px clamp(16px,2.5vw,32px);
  border-right: 1px solid var(--line);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--wash); }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.trust-item span   { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ─── ORDER SECTION ───────────────────────────────────────── */
.order-section { padding: clamp(64px,8vw,100px) clamp(20px,5vw,80px); background: var(--wash); }
.order-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); align-items: start;
}

.order-left { position: sticky; top: 90px; }
.order-left h2 {
  font-family: var(--ff-head); font-size: clamp(28px,3.5vw,44px);
  line-height: 1.12; color: var(--ink); margin-bottom: 14px;
}
.order-desc { color: var(--muted); line-height: 1.7; margin-bottom: 32px; font-size: 15px; }

.info-blocks { display: grid; gap: 14px; margin-bottom: 28px; }
.info-block {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px;
  transition: box-shadow .2s;
}
.info-block:hover { box-shadow: var(--shadow); }
.info-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.info-block strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.info-block span   { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; line-height: 1.5; }

.cat-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-tags span {
  font-size: 12.5px; font-weight: 500;
  background: #fff; border: 1px solid var(--line);
  border-radius: 99px; padding: 5px 13px; color: var(--ink2);
  transition: border-color .2s, color .2s;
}
.cat-tags span:hover { border-color: var(--blue); color: var(--blue); }

/* form */
.order-form {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px,4vw,40px);
}
.form-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.form-header-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg,#e8f2ff,#d6eaff);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.form-header h3 { font-size: 17px; font-weight: 700; color: var(--ink); }
.form-header p  { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.form-row { display: grid; gap: 6px; margin-bottom: 16px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.form-row:last-of-type { margin-bottom: 0; }

label { font-size: 13px; font-weight: 600; color: var(--ink2); }
.optional { font-weight: 400; color: var(--muted); }

input, select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--wash); color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-size: 14.5px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,212,.12);
  background: #fff;
}
textarea { resize: vertical; min-height: 100px; }

.file-drop {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 2px dashed var(--line); border-radius: 12px;
  padding: 24px; cursor: pointer; color: var(--muted);
  transition: border-color .2s, background .2s;
  text-align: center;
}
.file-drop:hover { border-color: var(--blue); background: #f0f6ff; color: var(--blue); }
.file-drop-icon { font-size: 28px; }
.file-drop span  { font-size: 13.5px; font-weight: 500; }
.file-drop small { font-size: 12px; }
.visually-hidden { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.form-check {
  display: flex; align-items: center; gap: 10px; margin: 16px 0;
}
.form-check input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; flex-shrink:0;
}
.form-check label { font-size: 13.5px; color: var(--ink2); cursor: pointer; font-weight:500; }

.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-note.success { color: var(--green); }
.form-note.error   { color: #e53935; }

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section {
  padding: clamp(64px,8vw,100px) clamp(20px,5vw,80px);
  background: linear-gradient(160deg, #071428 0%, #0d2847 60%, #0a1e3d 100%);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 17.3v17.4L30 52 0 34.7V17.3z' fill='none' stroke='white' stroke-width='.5'/%3E%3C/svg%3E") repeat;
  background-size: 60px 52px; opacity: .04; pointer-events: none;
}

.services-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index:1; }
.services-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.services-head h2 {
  font-family: var(--ff-head); font-size: clamp(28px,3.5vw,44px);
  color: #fff; line-height: 1.12;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: transform .25s, background .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity .25s;
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.service-card:hover::after { opacity: 1; }

.sc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(26,111,212,.25); color: #60b0ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p  { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ─── WHY SECTION ─────────────────────────────────────────── */
.why-section {
  padding: clamp(64px,8vw,100px) clamp(20px,5vw,80px);
  background: #fff;
}
.why-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center;
}
.why-left h2 {
  font-family: var(--ff-head); font-size: clamp(28px,3.5vw,44px);
  line-height: 1.12; color: var(--ink); margin-bottom: 14px;
}
.why-desc { color: var(--muted); line-height: 1.75; margin-bottom: 28px; font-size: 15px; }

.why-list { display: grid; gap: 12px; margin-bottom: 32px; }
.why-item { display: flex; align-items: center; gap: 12px; }
.why-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#e8f8e8,#d0f0d0);
  color: var(--green-dark); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-item span { font-size: 14.5px; color: var(--ink2); }

/* credentials card */
.credentials-card {
  background: linear-gradient(160deg, #0d2847 0%, #1a3a6e 100%);
  border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(10,22,40,.35);
  position: relative; overflow: hidden;
}
.credentials-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,.3), transparent 70%);
}
.cred-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.cred-logo-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  flex-shrink: 0;
}
.cred-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.cred-name { font-size: 16px; font-weight: 700; color: #fff; }
.cred-loc  { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 2px; }
.cred-divider { height: 1px; background: rgba(255,255,255,.1); margin: 18px 0; }
.cred-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.cred-row:last-of-type { border: none; }
.cred-key { font-size: 12.5px; color: rgba(255,255,255,.45); font-weight: 500; }
.cred-val { font-size: 13px; color: rgba(255,255,255,.88); font-weight: 600; text-align: right; }
.cred-tagline {
  margin-top: 18px; text-align: center;
  font-family: var(--ff-head); font-style: italic;
  color: rgba(255,255,255,.45); font-size: 14px;
}

/* ─── PHOTO SECTION ───────────────────────────────────────── */
.photo-section {
  padding: clamp(64px,8vw,100px) clamp(20px,5vw,80px);
  background: var(--wash);
}
.photo-inner { max-width: 1280px; margin: 0 auto; }
.photo-inner h2 {
  font-family: var(--ff-head); font-size: clamp(28px,3.5vw,42px);
  color: var(--ink); margin-bottom: 8px;
}
.photo-inner > p { color: var(--muted); margin-bottom: 36px; font-size: 15px; }

.photo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.photo-item {
  border-radius: 18px; overflow: hidden;
  position: relative; background: #dce9f5;
  min-height: 240px;
}
.photo-item.tall { grid-row: span 2; min-height: 460px; }
.photo-item img  { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.photo-item:hover img { transform: scale(1.04); }
.photo-placeholder {
  width: 100%; height: 100%; min-height: inherit;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; background: linear-gradient(135deg,#dce9f5,#c8ddf0);
  color: var(--muted);
}
.photo-placeholder .ph-icon { font-size: 40px; opacity: .5; }
.photo-placeholder span { font-size: 13px; font-weight: 500; opacity: .6; }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500;
  padding: 20px 16px 14px;
}

/* ─── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: clamp(64px,8vw,90px) clamp(20px,5vw,80px);
  background: linear-gradient(135deg, #0a1628 0%, #0e3055 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,170,53,.2), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.contact-text h2 {
  font-family: var(--ff-head); font-size: clamp(26px,3.5vw,42px);
  color: #fff; line-height: 1.15; margin-bottom: 10px;
}
.contact-text p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #060f1e;
  padding: 28px clamp(20px,5vw,80px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; background: rgba(255,255,255,.1); }
.footer-brand strong { color: rgba(255,255,255,.85); font-size: 14px; }
.footer-copy { color: rgba(255,255,255,.35); font-size: 12.5px; }

/* ─── ADMIN (unchanged structure) ────────────────────────── */
body.admin-page { background: #f2f7f5; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-cards { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .order-inner { grid-template-columns: 1fr; }
  .order-left { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-item.tall { grid-row: span 1; min-height: 240px; }
}

@media (max-width: 620px) {
  .topbar { flex-wrap: wrap; }
  .nav { display: none; }
  .hero-stats { gap: 20px; }
  .hstat-num { font-size: 28px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row-two { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; }
  .contact-actions { width: 100%; }
  .contact-actions .btn { flex: 1; justify-content: center; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

/* ─── HERO IMAGE OVERLAY ──────────────────────────────────── */
.hero {
  background-image: url("assets/shop-front.jpg") !important;
  background-size: cover !important;
  background-position: center 30% !important;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,18,38,.88) 0%, rgba(10,24,52,.75) 50%, rgba(8,22,45,.65) 100%);
  z-index: 0;
}
.hero-deco, .hero-inner, .hero-scroll { position: relative; z-index: 1; }
