/* ═══════════════════════════════════════════════
   e_pozivnica.rs — Glavni stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --gold: #C9A456;
  --gold-l: #E8C97A;
  --gold-d: #9A7830;
  --navy: #1B2F5E;
  --cream: #F7F3EC;
  --bg: #FAFAF8;
  --ink: #1A1714;
  --muted: #6B6257;
  --border: rgba(201, 164, 86, .20);
  --r: 6px;
  --serif: 'Playfair Display', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A456' fill-opacity='0.03'%3E%3Cpath d='M30 0 L32 28 L60 30 L32 32 L30 60 L28 32 L0 30 L28 28Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TIPOGRAFIJA ── */
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
}

/* ── ANIMACIJA ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── DUGMAD ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(154, 120, 48, .30);
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(154, 120, 48, .38);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--r);
  border: 1.5px solid rgba(27, 47, 94, .22);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(27, 47, 94, .04);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 66px;
  display: flex;
  align-items: center;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 22px rgba(0, 0, 0, .07);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold-d);
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r);
  transition: opacity .2s;
}

.nav-cta:hover {
  opacity: .85;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 65% 55% at 68% 42%, rgba(201, 164, 86, .10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 12% 68%, rgba(27, 47, 94, .07) 0%, transparent 55%);
  padding-top: 66px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-d);
}

.hero-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card {
  width: 296px;
  background: #F6F1E8;
  border-radius: 12px;
  padding: 28px 24px 24px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, .14), 0 4px 16px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(201, 164, 86, .33);
  border-radius: 6px;
  pointer-events: none;
}

.hero-card-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 10px;
}

.hero-card-tag {
  font-size: 8px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-card-names {
  font-family: var(--script);
  font-size: 36px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 4px;
}

.hero-card-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 9px auto;
}

.hero-card-detail {
  font-size: 9.5px;
  letter-spacing: 1.8px;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 2.1;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 26px rgba(27, 47, 94, .28);
}

.hero-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
}

.bot-corner {
  position: absolute;
  pointer-events: none;
}

.bot-corner.tl {
  top: 0;
  left: 0;
}

.bot-corner.br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.scroll-ind {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .35;
  animation: sBounce 2.6s ease-in-out infinite;
}

@keyframes sBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(7px)
  }
}

.scroll-ind span {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ── SEKCIJE ── */
.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head .tag {
  margin-bottom: 12px;
}

.section-head .section-title {
  margin-bottom: 14px;
}

.section-head .section-sub {
  margin: 0 auto;
}

/* ── O NAMA ── */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .tag {
  margin-bottom: 14px;
}

.about-text .section-title {
  margin: 0 0 16px;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}

.stat-n {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-d);
  line-height: 1;
}

.stat-l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aimg {
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}

.aimg.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.aimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aimg-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.aimg-ph span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

/* ── USLUGE ── */
.services {
  background: var(--cream);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 16px;
}

.svc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
  border-color: rgba(201, 164, 86, .4);
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(201, 164, 86, .1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 13px;
}

.svc-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── KAKO ── */
.how {
  background: var(--navy);
}

.how .tag {
  color: var(--gold-l);
}

.how .section-title {
  color: #fff;
}

.how .section-sub {
  color: rgba(255, 255, 255, .5);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(201, 164, 86, .2);
}

.step {
  text-align: center;
  padding: 0 10px;
}

.step-n {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(201, 164, 86, .35);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step-t {
  font-family: var(--serif);
  font-size: 16px;
  color: #fff;
  margin-bottom: 7px;
}

.step-d {
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65;
}

/* ── GALERIJA ── */
.gallery {
  background: var(--bg);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gal-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.gal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .15);
}

.gal-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gal-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}

.gal-lbl {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26, 23, 20, .6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
}

/* Stilovi kartica */
.card-botanical {
  background: linear-gradient(160deg, #EDF4EE 0%, #E8F0E4 40%, #F0EAE0 100%);
  border: 1px solid rgba(106, 139, 84, .2);
}

.card-botanical::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(106, 139, 84, .25);
  border-radius: 4px;
  pointer-events: none;
}

.card-birthday {
  background: linear-gradient(160deg, #F9F6EE 0%, #F5F0E0 100%);
  border: 1px solid var(--border);
}

.card-birthday::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 164, 86, .3);
  border-radius: 4px;
  pointer-events: none;
}

.card-minimal {
  background: #F8F8F6;
  border: 1px solid #E0DDD8;
}

.card-dark {
  background: linear-gradient(160deg, #1A2A4A, #0F1C36);
  border: none;
}

.card-rose {
  background: linear-gradient(160deg, #FBF0F0, #F5E6E8);
  border: 1px solid rgba(180, 120, 120, .2);
}

.card-gold {
  background: linear-gradient(160deg, #2C1810, #1A0E08);
  border: none;
}

.gc-tag {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gc-names {
  font-family: var(--script);
  line-height: 1.1;
  margin-bottom: 4px;
}

.gc-rule {
  height: 1px;
  width: 60px;
  margin: 8px auto;
}

.gc-detail {
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.9;
}

.gc-logo {
  object-fit: contain;
  margin: 0 auto 8px;
}

/* ── CENOVNIK ── */
.pricing {
  background: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .09);
}

.price-card.feat {
  background: var(--navy);
  border-color: transparent;
}

.price-card.feat .price-desc,
.price-card.feat .price-period,
.price-card.feat .price-feat {
  color: rgba(255, 255, 255, .5);
}

.price-card.feat .price-feat {
  border-color: rgba(255, 255, 255, .10);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
}

.price-tier {
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.price-card.feat .price-tier {
  color: var(--gold-l);
}

.price-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-card.feat .price-name {
  color: #fff;
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-d);
  line-height: 1;
}

.price-card.feat .price-num {
  color: var(--gold-l);
}

.price-cur {
  font-size: 14px;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.price-period {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  margin-bottom: 20px;
}

.price-feats {
  list-style: none;
  margin-bottom: 24px;
}

.price-feat {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-feat::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--r);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: opacity .2s;
}

.price-btn:hover {
  opacity: .85;
}

.price-btn.navy {
  background: var(--navy);
  color: #fff;
}

.price-btn.gold-btn {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #fff;
}

.price-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .28);
}

/* ── FORMA ── */
.order {
  background: var(--bg);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.order-info .tag {
  margin-bottom: 12px;
}

.order-info .section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
  text-align: left;
}

.order-info .section-sub {
  text-align: left;
}

.order-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ob {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ob-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 164, 86, .1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ob-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  padding-top: 3px;
}

.ob-text strong {
  color: var(--ink);
}

/* Forma stilovi */
.custom-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 38px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .07);
}

.form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 28px;
  opacity: .4;
}

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

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(201, 164, 86, .25);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 86, .12);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 6 5-6' fill='none' stroke='%239A7830' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(154, 120, 48, .30);
  transition: transform .2s, box-shadow .2s;
  margin-top: 6px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(154, 120, 48, .38);
}

.form-note-small {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* Success stanje */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-fields.hide {
  display: none;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}

.success-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PREVIEW GRID (galerija) ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.preview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .1);
}

.preview-badge {
  padding: 9px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--ink);
}

.preview-iframe-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--cream);
}

.preview-iframe-wrap iframe {
  width: 200%;
  height: 200%;
  border: none;
  transform: scale(.5);
  transform-origin: top left;
  pointer-events: auto;
}

.preview-drag-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 23, 20, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  pointer-events: none;
  opacity: .7;
  white-space: nowrap;
}

.preview-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.preview-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.preview-open-btn {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-d);
  background: rgba(201, 164, 86, .1);
  border: 1px solid rgba(201, 164, 86, .3);
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .2s, color .2s;
  text-decoration: none;
}

.preview-open-btn:hover {
  background: rgba(201, 164, 86, .2);
  color: var(--gold-d);
}

@media(max-width:900px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-iframe-wrap {
    height: 380px;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .55);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.f-brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.f-brand-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.f-brand-name {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
}

.f-tagline {
  font-size: 13px;
  line-height: 1.72;
  max-width: 220px;
  margin-bottom: 20px;
}

.f-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  transition: border-color .2s, color .2s;
}

.f-ig:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.f-col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.f-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
    padding: 60px 24px 80px;
  }

  .hero-p {
    margin: 0 auto 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .about-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-imgs {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gal-item.wide {
    grid-column: span 2;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .custom-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .gal-grid {
    grid-template-columns: 1fr;
  }

  .gal-item.wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: 268px;
  }
}