/* ============================================================
   ATRUMEDIA PRINT SHOP — Stylesheet
   Theme: Cream & Gold — warm cream ground, gold headings
   Fonts: Playfair Display (display) + DM Sans (body)
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Core palette */
  --gold:         #B8965A;
  --gold-light:   #D4AF6A;
  --gold-dark:    #8A6D3F;
  --gold-dim:     rgba(184, 150, 90, 0.28);
  --gold-faint:   rgba(184, 150, 90, 0.08);
  --gold-border:  rgba(184, 150, 90, 0.22);

  --black:        #1A1A1A;
  --off-black:    #2C2C2C;
  --warm-grey:    #4A4542;
  --mid-grey:     #7A7470;
  --light-grey:   #B0AAA4;
  --pale:         #E8E3DA;

  --cream:        #F5F2ED;
  --cream-dark:   #EDE8E0;
  --white:        #FFFFFF;

  /* Dark sections */
  --ink:          #1C1A17;
  --ink-mid:      #242119;
  --ink-soft:     #2E2B26;

  /* Text hierarchy */
  --text:         var(--black);
  --text-muted:   rgba(28, 26, 23, 0.62);
  --text-faint:   rgba(28, 26, 23, 0.38);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --container:     1320px;
  --gutter:        clamp(20px, 5vw, 64px);
  --section-gap:   clamp(80px, 12vw, 160px);
  --section-gap-sm: clamp(48px, 7vw, 96px);

  /* Borders */
  --border-gold:   1px solid rgba(184, 150, 90, 0.22);
  --border-ink:    1px solid rgba(28, 26, 23, 0.1);

  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper grain on cream */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gold);
}

.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.btn:hover { color: var(--white); }
.btn:hover::before { transform: scaleX(1); }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold::before { background: var(--gold-dark); }
.btn-gold:hover { color: var(--white); }

.btn-dark {
  border-color: rgba(245, 242, 237, 0.4);
  color: var(--cream);
}
.btn-dark::before { background: var(--cream); }
.btn-dark:hover { color: var(--black); }

.btn svg {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.btn:hover svg { transform: translateX(4px); }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
.site-nav.scrolled {
  padding: 14px 0;
  background: rgba(245, 242, 237, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 42px; height: 42px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  color: var(--gold) !important;
  padding: 10px 22px;
  border: 1px solid var(--gold-dim);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--black);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span { background: var(--cream); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  transition: color 0.3s ease;
}
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-contact {
  border-top: var(--border-gold);
  padding-top: 32px;
}
.mobile-menu-contact p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 10px;
}
.mobile-menu-contact a {
  color: var(--gold);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding-top: 170px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 900;
  color: rgba(184, 150, 90, 0.055);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.page-hero .label { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  max-width: 16ch;
  color: var(--gold);
}
.page-hero h1 em { font-style: italic; }
.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin-top: 24px;
  font-weight: 300;
  line-height: 1.8;
}
.page-hero-rule {
  width: 50px; height: 1px;
  background: var(--gold);
  margin-top: 40px;
}

/* --- Divider --- */
.divider {
  width: 100%; height: 1px;
  background: rgba(184, 150, 90, 0.18);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background: var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 96px);
  align-items: center;
}
.hero-content {
  padding: 60px var(--gutter) 60px clamp(20px, 4vw, 80px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9.5vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.35s;
}
.hero-headline em {
  font-style: italic;
  font-weight: 700;
}

.hero-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  max-width: 40ch;
  line-height: 1.85;
  margin-bottom: 52px;
  font-weight: 300;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.65s;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

/* Hero Plate — dark panel for contrast on right */
.hero-plate {
  position: relative;
  height: 100%;
  min-height: 520px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeIn 1.2s ease both;
  animation-delay: 0.3s;
}
.hero-plate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(184,150,90,0.09) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
}
.hero-plate-border {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(184, 150, 90, 0.2);
  pointer-events: none;
}
.hero-plate-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-plate-corner--tl { top: 28px; left: 28px; border-width: 1px 0 0 1px; }
.hero-plate-corner--tr { top: 28px; right: 28px; border-width: 1px 1px 0 0; }
.hero-plate-corner--bl { bottom: 28px; left: 28px; border-width: 0 0 1px 1px; }
.hero-plate-corner--br { bottom: 28px; right: 28px; border-width: 0 1px 1px 0; }

.hero-plate-monogram {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-plate-monogram span {
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(184, 150, 90, 0.09);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  font-style: italic;
}
.hero-plate-tag {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}
.hero-plate-tag .label { margin-bottom: 14px; text-align: center; }
.hero-plate-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   HOME — SERVICES STRIP
   ============================================================ */
.services-strip {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.services-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-strip-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  max-width: 12ch;
  line-height: 1.05;
  color: var(--gold);
}
.services-strip-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  white-space: nowrap;
  padding-bottom: 4px;
}
.services-strip-link:hover { gap: 14px; }
.services-strip-link svg { width: 14px; height: 14px; }

.service-items { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-top: var(--border-gold);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-item:last-child { border-bottom: var(--border-gold); }
.service-item:hover .service-item-num { color: var(--gold); }
.service-item:hover .service-item-name { color: var(--gold-dark); letter-spacing: 0.005em; }
.service-item:hover .service-item-arrow { transform: translateX(6px); opacity: 1; }

.service-item-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--light-grey);
  transition: color 0.3s ease;
}
.service-item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-item-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  transition: letter-spacing 0.4s ease, color 0.3s ease;
}
.service-item-desc {
  font-size: 0.85rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.5;
}
.service-item-arrow {
  color: var(--gold);
  opacity: 0.35;
  transition: var(--transition);
  font-size: 1.4rem;
  line-height: 1;
  text-align: right;
}

/* ============================================================
   HOME — ABOUT TEASER
   ============================================================ */
.about-teaser {
  padding: var(--section-gap) 0;
  background: var(--cream-dark);
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-plate {
  aspect-ratio: 4/5;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.about-teaser-plate::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.09;
}
.about-teaser-plate-border {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(184, 150, 90, 0.18);
  pointer-events: none;
  z-index: 1;
}
.about-teaser-plate-text {
  position: absolute;
  bottom: 36px; left: 36px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(245,242,237,0.08);
  line-height: 1.1;
  z-index: 0;
}

.about-teaser-content { padding-right: 20px; }
.about-teaser-content .label { margin-bottom: 20px; }
.about-teaser-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 28px;
  line-height: 1.1;
  color: var(--gold);
}
.about-teaser-content h2 em { font-style: italic; }
.about-teaser-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-teaser-content p:last-of-type { margin-bottom: 40px; }

/* ============================================================
   HOME — TRUST SECTION
   ============================================================ */
.trust-strip { padding: var(--section-gap) 0; background: var(--cream); }
.trust-strip-header {
  text-align: center;
  margin-bottom: 64px;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 40px 32px;
  border-left: var(--border-gold);
}
.trust-item:last-child { border-right: var(--border-gold); }
.trust-item-num {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
  font-style: italic;
}
.trust-item h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--gold);
}
.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   HOME — CTA BANNER (dark contrast section)
   ============================================================ */
.cta-banner {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--ink) 0%, #201D19 50%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(184,150,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.cta-banner .label { margin: 0 auto 20px; }
.cta-banner-rule {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--cream);
}
.cta-banner p {
  color: rgba(245, 242, 237, 0.6);
  font-size: 1.05rem;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { padding: var(--section-gap) 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: var(--border-gold);
}
.service-block:first-child { border-top: var(--border-gold); }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.service-block-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-block-image-fill { position: absolute; inset: 0; }
.service-block:nth-child(1) .service-block-image-fill { background: #201E1B; }
.service-block:nth-child(2) .service-block-image-fill { background: #1B1A20; }
.service-block:nth-child(3) .service-block-image-fill { background: #1D1B21; }
.service-block:nth-child(4) .service-block-image-fill { background: #201B1B; }
.service-block:nth-child(5) .service-block-image-fill { background: #1B201D; }
.service-block:nth-child(6) .service-block-image-fill { background: #1D201B; }
.service-block:nth-child(7) .service-block-image-fill { background: #1B1D1D; }

.service-block-image-label {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(20,18,15,0.8) 0%, transparent 55%);
  z-index: 1;
}
.service-block-image-label .label { margin-bottom: 6px; }
.service-block-image-label h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
}
.service-block-image-border {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 150, 90, 0.18);
  pointer-events: none;
  z-index: 2;
}

.service-block-content .label { margin-bottom: 16px; }
.service-block-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--gold);
}
.service-block-content h2 em { font-style: italic; }
.service-block-content p {
  color: var(--text-muted);
  font-size: 0.9875rem;
  line-height: 1.85;
  margin-bottom: 12px;
  font-weight: 300;
}
.service-block-items {
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-items li {
  font-size: 0.875rem;
  color: var(--mid-grey);
  padding-left: 18px;
  position: relative;
  font-weight: 300;
}
.service-block-items li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.turnaround-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  margin-bottom: 24px;
  background: var(--gold-faint);
}
.turnaround-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease infinite;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { padding: var(--section-gap) 0; }
.gallery-intro {
  max-width: 54ch;
  margin-bottom: 64px;
}
.gallery-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(184, 150, 90, 0.14);
  z-index: 2;
  transition: border-color 0.45s ease;
  pointer-events: none;
}
.gallery-card:hover::after { border-color: rgba(184, 150, 90, 0.6); }

.gallery-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.65s ease;
}
.gallery-card:hover .gallery-card-bg { transform: scale(1.04); }

.gallery-card:nth-child(1)  .gallery-card-bg { background: #201E1B; }
.gallery-card:nth-child(2)  .gallery-card-bg { background: #1B1B20; }
.gallery-card:nth-child(3)  .gallery-card-bg { background: #1D1A21; }
.gallery-card:nth-child(4)  .gallery-card-bg { background: #201A1A; }
.gallery-card:nth-child(5)  .gallery-card-bg { background: #1A201D; }
.gallery-card:nth-child(6)  .gallery-card-bg { background: #1D201A; }
.gallery-card:nth-child(7)  .gallery-card-bg { background: #201D20; }
.gallery-card:nth-child(8)  .gallery-card-bg { background: #1A1A1A; }
.gallery-card:nth-child(9)  .gallery-card-bg { background: #1E1C1C; }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.92) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gallery-card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.gallery-card-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}

.gallery-card-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 20px;
}
.gallery-card-placeholder span {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(245,242,237,0.1);
  text-align: center;
  line-height: 1.2;
}

/* Grid placements — 6 real Instagram thumbnails */
.gallery-card:nth-child(1) { grid-column: 1 / 7;  grid-row: 1 / 3; }
.gallery-card:nth-child(2) { grid-column: 7 / 9;  grid-row: 1 / 3; }
.gallery-card:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-card:nth-child(4) { grid-column: 1 / 5;  grid-row: 3 / 5; }
.gallery-card:nth-child(5) { grid-column: 5 / 9;  grid-row: 3 / 5; }
.gallery-card:nth-child(6) { grid-column: 9 / 13; grid-row: 3 / 5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { padding: var(--section-gap) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(40px, 8vw, 112px);
  align-items: start;
}

.about-text .label { margin-bottom: 20px; }
.about-text h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 40px;
  max-width: 16ch;
  line-height: 1.1;
  color: var(--gold);
}
.about-text h2 em { font-style: italic; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-text p strong {
  font-weight: 600;
  color: var(--black);
}
.about-pullquote {
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 40px 0;
}
.about-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold) !important;
  margin: 0 !important;
  line-height: 1.45;
}

.about-sidebar { position: sticky; top: 120px; }
.about-photo {
  aspect-ratio: 4/5;
  background: var(--ink-soft);
  position: relative;
  margin-bottom: 36px;
  overflow: hidden;
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
}
.about-photo-label {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-photo-label .label { text-align: center; }
.about-photo-label span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(245,242,237,0.1);
  text-align: center;
  line-height: 1.1;
}
.about-photo-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 150, 90, 0.16);
  pointer-events: none;
}

.about-hours {
  border: var(--border-gold);
  padding: 32px;
  background: var(--white);
}
.about-hours h3 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.925rem;
  padding: 13px 0;
  border-bottom: var(--border-ink);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--mid-grey); font-weight: 300; }
.hours-row .time { color: var(--black); font-weight: 400; }
.hours-row.closed .time { color: var(--light-grey); font-style: italic; font-weight: 300; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-gap) 0; }
/* grid-template-columns: 1fr 1fr; — restore when form is re-enabled */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
  max-width: 680px;
}

.contact-form-wrap > .label { margin-bottom: 10px; }
.contact-form-wrap h2 { margin-bottom: 10px; color: var(--gold); }
.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}

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

label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 12px;
}
input, select, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.9875rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--gold);
}
input::placeholder, textarea::placeholder {
  color: rgba(26, 26, 26, 0.25);
}
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23B8965A' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
select option {
  background: var(--white);
  color: var(--black);
}
textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.form-submit { margin-top: 40px; }

/* Contact Info Panel */
.contact-info { padding-top: 0; }
.contact-info-header .label { margin-bottom: 12px; }
.contact-info-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 40px;
  color: var(--gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: var(--border-ink);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-detail-value {
  font-size: 1.0375rem;
  color: var(--black);
  font-weight: 300;
  line-height: 1.6;
}
.contact-detail-value a { transition: color 0.3s ease; }
.contact-detail-value a:hover { color: var(--gold); }

.contact-hours-block {
  border: var(--border-gold);
  padding: 26px;
  margin-bottom: 36px;
  background: var(--white);
}
.contact-hours-block h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border: var(--border-gold);
  padding: 9px 16px;
  transition: var(--transition);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-faint);
}

/* Map */
.map-section { padding-bottom: var(--section-gap); }
.map-label { margin-bottom: 20px; }
.map-wrap {
  border: var(--border-gold);
  overflow: hidden;
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: sepia(20%) saturate(0.6) brightness(0.95);
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: var(--border-gold);
  padding: 72px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.4);
  line-height: 1.75;
  max-width: 26ch;
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: var(--border-gold);
  padding: 9px 16px;
  transition: var(--transition);
}
.footer-whatsapp:hover {
  background: rgba(184, 150, 90, 0.08);
  border-color: rgba(184, 150, 90, 0.5);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.38);
  transition: color 0.3s ease;
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.38);
  line-height: 1.85;
  font-weight: 300;
}
.footer-col address a { color: rgba(245, 242, 237, 0.38); transition: color 0.3s ease; }
.footer-col address a:hover { color: var(--gold); }

/* Footer logo text override — gold on dark bg */
.site-footer .nav-logo-name { color: var(--gold); }
.site-footer .nav-logo-sub { color: rgba(245, 242, 237, 0.35); }

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 237, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.25);
  font-weight: 300;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.25);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--cream); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px 12px 15px;
  background: var(--cream);
  border: var(--border-gold);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(26, 26, 23, 0.1);
}
.float-wa:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 6px 32px rgba(184, 150, 90, 0.3);
}
.float-wa svg { width: 17px; height: 17px; flex-shrink: 0; }
.float-wa:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--gutter);
}
.not-found-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 16rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(184, 150, 90, 0.1);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
}
.not-found h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 20px; }
.not-found p { color: var(--text-muted); margin-bottom: 40px; }

/* ============================================================
   INSTAGRAM MEDIA — plates & gallery
   ============================================================ */

/* Hero plate with real media */
.hero-plate::before {
  background: rgba(20, 18, 15, 0.40);
  z-index: 1;
}
.hero-plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.hero-plate-border,
.hero-plate-corner { z-index: 2; }
.hero-plate-play {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-plate-play svg {
  width: 56px; height: 56px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.hero-plate:hover .hero-plate-play svg { transform: scale(1.1); }
.hero-plate-play span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.65);
}

/* About teaser plate with real image */
.about-teaser-plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery — real images */
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
  z-index: 0;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-overlay,
.gallery-card::after { z-index: 2; }

/* Instagram CTA strip in gallery */
.gallery-insta-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: var(--border-gold);
}
.gallery-insta-cta p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 44ch;
}
.gallery-insta-cta p strong { color: var(--black); font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-plate { display: none; }
  .hero-content { padding: 60px var(--gutter); }
  .hero-headline { font-size: clamp(4rem, 13vw, 7rem); }

  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-plate { aspect-ratio: 16/9; }

  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: var(--border-gold); }
  .trust-item:last-child { border-right: none; }

  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-sidebar { position: static; }

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

  .gallery-grid { grid-auto-rows: 130px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .trust-items { grid-template-columns: 1fr; }
  .trust-item {
    border-left: none; border-right: none;
    border-top: var(--border-gold);
    padding: 28px 0;
  }
  .trust-item:last-child { border-bottom: var(--border-gold); }

  .service-item { grid-template-columns: 48px 1fr 24px; gap: 16px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: unset;
    gap: 10px;
  }
  .gallery-card:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(3) {
    grid-column: span 2 !important;
    aspect-ratio: 16/9;
  }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-wa { bottom: 20px; right: 20px; }
  .page-hero::before { font-size: clamp(6rem, 30vw, 12rem); }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .service-item { grid-template-columns: 40px 1fr; gap: 14px; }
  .service-item-arrow { display: none; }
  .page-hero::before { display: none; }
  .cta-banner { padding: 80px 0; }
  .map-wrap iframe { height: 260px; }
}
