/* =========================================================
   The Liner Guy — Shared Stylesheet
   ========================================================= */

:root {
  /* Brand palette — teal, mid grey, white */
  --color-deep:      #0a4f4f;   /* deep teal (hero / footer / CTA bg) */
  --color-primary:   #117a7a;   /* primary teal (buttons, links) */
  --color-secondary: #1aa5a5;   /* mid teal (eyebrow accents) */
  --color-accent:    #2dd4cf;   /* bright teal (ticks, dots, highlights) */
  --color-heading:   #2d3748;   /* charcoal grey for headings */
  --color-grey:      #637280;   /* mid grey */
  --color-water:     #f0f4f4;   /* pale teal-grey for alt sections */
  --color-cream:     #faf6ee;
  --color-ink:       #1a2530;
  --color-muted:     #637280;
  --color-border:    #dce1e3;
  --color-white:     #ffffff;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 6px rgba(14, 26, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 26, 38, 0.10);
  --shadow-lg: 0 20px 60px rgba(14, 26, 38, 0.18);

  --container: 1200px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    url('logo-wordmark.jpg') no-repeat center / clamp(360px, 38vw, 600px) auto fixed,
    #505d66;
  -webkit-font-smoothing: antialiased;
}

main { background: transparent; }
.site-header { background: rgba(255,255,255,0.96); }

/* Light sections become slightly translucent so the body's wordmark shows through as a faded watermark */
main section { background-color: rgba(255,255,255,0.88); }
/* Dark slate sections stay opaque (they're meant to be the brand-coloured stops) */
main section.hero,
main section.page-hero,
main section.cta-band { background-color: #505d66; }
/* Water-tinted alternate sections — translucent tint */
main section[style*="--color-water"],
main section[style*="water"] { background-color: rgba(240,244,244,0.72) !important; }

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--color-secondary); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--color-heading);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-deep);
  border-color: var(--color-deep);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-heading);
}
.brand:hover { color: var(--color-primary); }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
/* Optional larger logo helper */
.brand-mark-lg { width: 64px; height: 64px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--color-deep);
  color: var(--color-white) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-heading);
  margin: 6px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 12px 24px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--color-white);
  background: #505d66;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat bottom / 100% 60px;
}

.hero-inner {
  position: relative;
  padding: 120px 0 160px;
  text-align: center;
  z-index: 1;
}
.hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.95;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  margin-top: 48px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}
.trust-strip .pip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-strip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* compact page hero (non-home pages) */
.page-hero {
  background:
    linear-gradient(rgba(80,93,102,0.85), rgba(80,93,102,0.92)),
    url('logo-wordmark.jpg') no-repeat center / 420px auto,
    #505d66;
  color: var(--color-white);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45,212,207,0.12), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(45,212,207,0.08), transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat bottom / 100% 40px;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 10px; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}
.crumb {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  opacity: 0.8;
}

/* ---------- Section base ---------- */
section { padding: 90px 0; }
.section-tight { padding: 60px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ---------- Card grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  align-items: center;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-water), #cfe6f0);
  color: var(--color-primary);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p {
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--color-water);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

/* ---------- Accreditations ---------- */
.accred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.accred-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  color: var(--color-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.accred-badge .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid; place-items: center;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- Image placeholders ---------- */
.img-block {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,79,0.60), rgba(45,212,207,0.45)),
    repeating-linear-gradient(45deg, #c8d6d6 0 12px, #b8c8c8 12px 24px);
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-family: var(--font-display);
  text-align: center;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.img-block .meta {
  position: relative;
  z-index: 2;
}
.img-block .meta .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.img-block .meta .title {
  font-size: 1.15rem;
  line-height: 1.3;
}
.img-block::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

/* Image-filled block (for services / about) */
.img-block.has-photo {
  background: none;
  padding: 0;
}
.img-block.has-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.img-block.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,26,38,0.10) 0%, rgba(14,26,38,0.55) 100%);
  z-index: 1;
}
.img-block.has-photo .meta {
  z-index: 2;
  align-self: end;
  margin-top: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* before/after pair */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-pair .img-block {
  border-radius: 0;
  aspect-ratio: 1 / 1;
  box-shadow: none;
}
.ba-pair .before {
  background:
    linear-gradient(135deg, rgba(28,32,38,0.55), rgba(86,98,108,0.45)),
    repeating-linear-gradient(45deg, #8c9aa3 0 12px, #7d8b95 12px 24px);
}
.ba-pair .after {
  background:
    linear-gradient(135deg, rgba(10,79,79,0.55), rgba(45,212,207,0.55)),
    repeating-linear-gradient(45deg, #5db8b3 0 12px, #4aa6a3 12px 24px);
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-card .info {
  padding: 18px 20px 22px;
}
.gallery-card .info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--color-heading);
}
.gallery-card .info p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split .copy h2 { margin-bottom: 18px; }
.split .copy p { color: var(--color-muted); }
.split .img-block { aspect-ratio: 5 / 6; }

/* ---------- CTA band ---------- */
.cta-band {
  background: #505d66;
  color: var(--color-white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at right, rgba(45,212,207,0.18), transparent 55%);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--color-white); }
.cta-band p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-card {
  background: var(--color-water);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-card h3 { margin-bottom: 18px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--color-white);
  display: grid; place-items: center;
  color: var(--color-primary);
  flex: 0 0 42px;
  box-shadow: var(--shadow-sm);
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list strong {
  display: block;
  color: var(--color-heading);
  margin-bottom: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-list a { color: var(--color-heading); font-weight: 500; }
.contact-list a:hover { color: var(--color-primary); }

.contact-form { display: grid; gap: 16px; }
.contact-form label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-heading);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(26,165,165,0.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-deep);
  color: rgba(255,255,255,0.78);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--color-accent); }
.footer-brand p { font-size: 0.95rem; max-width: 340px; }
.footer-brand .brand { color: var(--color-white); }
.socials {
  display: flex; gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--color-white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  background: var(--color-accent);
  color: var(--color-deep);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Static photo grid (primary gallery) ---------- */
.ig-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .ig-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ig-photo-grid { grid-template-columns: 1fr; } }

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45,212,207,0.35), rgba(80,93,102,0.85)),
    repeating-linear-gradient(45deg, #5db8b3 0 12px, #4aa6a3 12px 24px);
  border-radius: 10px;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ig-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
}
.ig-tile:hover img { transform: scale(1.06); filter: brightness(0.65); }
.ig-tile img[src=""], .ig-tile img:not([src]) { display: none; }

.ig-tile .ig-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  color: #fff;
  opacity: 0;
  background: rgba(14,26,38,0.55);
  transition: opacity 0.25s ease;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile .ig-overlay svg { width: 32px; height: 32px; margin-bottom: 8px; }
.ig-tile .ig-overlay span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Placeholder appearance when no photo yet */
.ig-tile.placeholder::before {
  content: "Photo coming soon";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  z-index: 1;
}
.ig-tile.placeholder .ig-overlay {
  background: rgba(14,26,38,0.35);
}

/* ---------- Instagram embed grid (live IG section) ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: 1fr; }
}
.ig-card { display: flex; justify-content: center; }
.ig-card .instagram-media { width: 100% !important; margin: 0 !important; }

/* ---------- Supplier logo strip ---------- */
.supplier-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.supplier-strip a {
  display: inline-block;
  cursor: pointer;
}
.supplier-strip img {
  height: 60px;
  width: auto;
  filter: grayscale(45%) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}
.supplier-strip a:hover img,
.supplier-strip img:hover {
  filter: none;
  transform: translateY(-4px) scale(1.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.supplier-strip .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-right: 8px;
}

.card a.logo-link {
  display: inline-block;
  cursor: pointer;
}
.material-logo {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 0 16px;
  filter: grayscale(45%) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}
.card a:hover .material-logo,
.material-logo:hover {
  filter: none;
  transform: translateY(-4px) scale(1.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ---------- Reveal (always visible — animation removed) ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible { opacity: 1; transform: none; }
