/* =========================================================
   DTS Drawings — Design System
   Palette: Sand, Dusty Rose, Sage, Stone, Charcoal
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cormorant+SC:wght@300;400&family=Jost:wght@300;400;500&display=swap');

/* ----- CSS Variables ----- */
:root {
  --sand:       #D4C5A9;
  --sand-light: #EDE5D8;
  --sand-pale:  #FAF8F4;
  --rose:       #C9A99A;
  --rose-light: #E8D5CE;
  --sage:       #8B9D77;
  --sage-light: #C4CFBB;
  --stone:      #9E9E8E;
  --charcoal:   #3A3A3A;
  --charcoal-light: #6A6A6A;
  --white:      #FFFFFF;
  --bg:         #FAF8F4;

  --font-script: 'Cormorant Garamond', serif;
  --font-caps:   'Cormorant SC', serif;
  --font-body:   'Jost', sans-serif;

  --nav-height: 72px;
  --max-width:  1160px;
  --radius:     4px;
  --transition: 0.3s ease;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 0.95rem; color: var(--charcoal-light); }
.lead { font-size: 1.05rem; }

.label {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 520px; margin: 0 auto; }

/* ----- Divider ----- */
.divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 20px auto;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-light);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.nav__logo-script-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-icon {
  opacity: 0.45;
  transition: opacity var(--transition);
}
.nav__logo:hover .nav__logo-icon { opacity: 0.75; }
.nav__logo-script {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-family: var(--font-caps);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--charcoal); }

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--charcoal);
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--charcoal-light) !important; color: var(--white) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--sand-light);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-light);
}
.nav__mobile a:last-child { border-bottom: none; }

/* Page offset for fixed nav */
.page-top { padding-top: var(--nav-height); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.btn-primary:hover { background: var(--charcoal-light); border-color: var(--charcoal-light); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-soft {
  background: var(--sand-light);
  color: var(--charcoal);
  border: 1px solid var(--sand);
}
.btn-soft:hover { background: var(--sand); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero__content {
  padding: 80px 60px 80px var(--nav-height);
  max-width: 560px;
}

.hero__label { margin-bottom: 20px; }

.hero__title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  max-width: 380px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  height: 92vh;
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--rose-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__image-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }
.hero__image-placeholder p { font-size: 0.8rem; color: var(--stone); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--charcoal);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.trust-bar__item svg { opacity: 0.7; }

/* =========================================================
   BEFORE / AFTER SLIDER
   ========================================================= */
.before-after-section { background: var(--sand-pale); }

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.before-after-slider__after,
.before-after-slider__before {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.before-after-slider__before {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.before-after-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.before-after-slider__handle::before,
.before-after-slider__handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  margin-top: -20px;
}
.before-after-slider__handle::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A3A3A'%3E%3Cpath d='M8 5l-7 7 7 7M16 5l7 7-7 7'/%3E%3C/svg%3E") center/20px no-repeat;
  background-color: var(--white);
}

.before-after-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 8px;
}
.before-after-labels span {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
}

/* Placeholder version */
.slider-placeholder {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--sand-light) 50%, var(--rose-light) 50%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.slider-placeholder__divider {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.8);
}
.slider-placeholder__labels {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
}
.slider-placeholder__labels span {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--charcoal-light);
  background: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border-radius: 2px;
}

/* =========================================================
   FAN FAVOURITES / GALLERY GRID
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--sand-light);
}
.gallery-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sand-light), var(--rose-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gallery-card__placeholder-icon { font-size: 2rem; opacity: 0.5; }
.gallery-card__placeholder-text {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--stone);
}
.gallery-card:hover .gallery-card__image { transform: scale(1.04); }
.gallery-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(58,58,58,0.7));
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card__overlay-title {
  font-family: var(--font-script);
  font-size: 1rem;
  font-style: italic;
}
.gallery-card__overlay-meta {
  font-size: 0.7rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Category tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.category-tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  color: var(--stone);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.category-tab:hover, .category-tab.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process-section { background: var(--sand-pale); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--sand);
}

.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose);
  position: relative;
  z-index: 1;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.85rem; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--sand-light);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  background: var(--white);
  position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.pricing-card--featured {
  border-color: var(--rose);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__size {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-card__desc { font-size: 0.82rem; margin-bottom: 24px; min-height: 40px; }
.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--sand-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* Prints pricing */
.prints-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 40px auto 0;
}
.print-card {
  border: 1px solid var(--sand-light);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background: var(--white);
}
.print-card__size {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: 8px;
}
.print-card__price {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--charcoal);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section { background: var(--sand-pale); }

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

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid var(--sand-light);
}
.review-stars {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-script);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.review-author {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
}

/* =========================================================
   GIFT SECTION
   ========================================================= */
.gift-section {
  background: var(--charcoal);
  color: var(--white);
}
.gift-section h2,
.gift-section h3 { color: var(--white); }
.gift-section p { color: var(--sand-light); }
.gift-section .label { color: var(--rose); }
.gift-section .divider { background: var(--rose); }

.gift-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.gift-tag {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.82rem;
  color: var(--sand-light);
  letter-spacing: 0.05em;
}

/* =========================================================
   ABOUT SECTION / PAGE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--sand-light), var(--sage-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 400px;
}
.about-content .label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 8px; }
.about-content .divider { margin: 20px 0; }
.about-content p { margin-bottom: 16px; }

/* =========================================================
   ORDER / CONTACT FORM
   ========================================================= */
.order-section { background: var(--sand-pale); }

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

.order-form {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  border: 1px solid var(--sand-light);
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--rose);
}
.form-textarea { min-height: 120px; resize: vertical; }

.form-upload {
  border: 1.5px dashed var(--sand);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--bg);
}
.form-upload:hover { border-color: var(--rose); background: var(--rose-light); }
.form-upload input[type="file"] { display: none; }
.form-upload-icon { font-size: 1.8rem; margin-bottom: 8px; opacity: 0.5; }
.form-upload p { font-size: 0.82rem; }
.form-upload .hint { font-size: 0.72rem; color: var(--stone); margin-top: 4px; }

.form-note {
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 8px;
  font-style: italic;
}

/* =========================================================
   URGENCY BANNER
   ========================================================= */
.urgency-banner {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.urgency-banner strong { font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: var(--sand-light);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
}
.footer__logo-sub {
  font-family: var(--font-caps);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-top: 2px;
}
.footer__tagline {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 12px;
  line-height: 1.6;
}
.footer__col-title {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--sand-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--stone);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
}
.lightbox__close:hover { opacity: 1; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: var(--sand-pale);
  border-bottom: 1px solid var(--sand-light);
}
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { font-style: italic; margin-bottom: 12px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    padding: 48px 24px;
    max-width: 100%;
    order: 2;
  }
  .hero__image {
    height: 56vw;
    min-height: 260px;
    order: 1;
  }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .prints-row { grid-template-columns: 1fr; max-width: 240px; }
  .trust-bar__inner { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .category-tabs { gap: 6px; }
  .category-tab { font-size: 0.68rem; padding: 6px 14px; }
  .order-form { padding: 28px 20px; }
}
