/* ==========================================================================
   East Point Form & Label Inc. — mockup stylesheet
   Warm coastal palette built around the hand-drawn lighthouse mark:
   deep ocean navy (kept from the original direction) + warm cream/sand
   neutrals + a brass "beacon" gold accent. Poppins (Black/800) for display
   type, matching the industry-standard treatment seen on Stick2.com and
   other label/packaging sites — big, bold, no italics, no condensed caps.
   ========================================================================== */

:root {
  /* ocean navy — kept, this is the blue from the original direction */
  --navy-dark: #101f30;
  --navy: #16304d;
  --navy-mid: #1b3a5c;
  --navy-light: #234872;
  --blue-accent: #3f78b5;
  --blue-accent-light: #5c93cd;

  /* warm coastal neutrals */
  --white: #ffffff;
  --cream: #faf6ec;
  --border-soft: #e3d3ac;
  /* cool pale grey — closer to Vancouver Sign Group's white/navy
     alternation (no beige) for non-locked section backgrounds */
  --grey-pale: #f4f5f7;
  --border-cool: #e2e5ea;

  /* brass / lighthouse-beacon accent */
  --gold: #c98a2e;
  --gold-light: #e3a94f;

  /* warm ink, replaces cold navy-as-text */
  --ink: #2b2419;
  --ink-soft: #6b5d48;

  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius: 16px;
  --gutter: 24px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  overflow: hidden;
}

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

/* ---------- typography helpers ---------- */

.eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.eyebrow--navy {
  background: var(--navy-mid);
  color: var(--cream);
}

/* Punchy all-caps line under a headline — replaces the old small eyebrow
   tag for sections that need to state a claim, not label a category
   (pattern borrowed from Stick2.com / Labels Lab: big statement headline,
   then a short bold all-caps line, no "what we do"-style meta-labels). */
.tagline {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: -0.4rem 0 1.2rem;
}

.tagline--gold {
  color: var(--gold);
}

.tagline--cream {
  color: var(--gold-light);
}

.tagline--navy {
  color: var(--navy);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
}

p {
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.section-lede {
  max-width: 640px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  padding: 0.85em 1.7em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn--no-arrow::after {
  content: none;
}

.btn--light {
  color: var(--cream);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--navy-dark);
}

.btn--dark {
  color: var(--ink);
}

.btn--dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--accent {
  color: var(--gold-light);
}

.btn--accent:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  border-color: var(--gold-light);
}

/* ---------- ghosted watermark ---------- */

.watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.watermark span {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(3.5rem, 16vw, 11rem);
  letter-spacing: 0.01em;
  line-height: 1;
}

.watermark--on-navy span {
  color: rgba(227, 169, 79, 0.09);
}

.watermark--on-white span {
  color: rgba(43, 36, 25, 0.05);
}

/* Scattered multi-word ghost text — several keywords at different sizes/
   positions/angles rather than one centered word, closer to how VSG tiles
   its service keywords across a section background. */
.watermark-scatter {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.watermark-scatter .ws-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.watermark-scatter--on-navy .ws-word {
  color: rgba(227, 169, 79, 0.09);
}

.watermark-scatter--on-white .ws-word {
  color: rgba(22, 48, 77, 0.055);
}

.ws-word--1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  top: 6%;
  left: -3%;
  transform: rotate(-4deg);
}

.ws-word--2 {
  font-size: clamp(3rem, 9.5vw, 7.4rem);
  top: 40%;
  right: -4%;
  transform: rotate(3deg);
}

.ws-word--3 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  bottom: 2%;
  left: 14%;
  transform: rotate(-3deg);
}

/* ---------- parallax background sections ---------- */

.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -16%;
  left: 0;
  width: 100%;
  height: 132%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.parallax-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(35, 72, 114, 0.82) 0%, rgba(16, 31, 48, 0.9) 100%);
}

.parallax-section > .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Nav
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  background: transparent;
}

.site-nav.is-scrolled {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(16, 31, 48, 0.1);
  height: 68px;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  position: relative;
  display: block;
  height: 56px;
  aspect-ratio: 1400 / 544;
  flex-shrink: 0;
  transition: height 0.3s ease;
}

.site-nav.is-scrolled .nav-brand {
  height: 46px;
}

.logo-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.logo-img--dark {
  opacity: 0;
}

.site-nav.is-scrolled .logo-img--light {
  opacity: 0;
}

.site-nav.is-scrolled .logo-img--dark {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.2s ease;
}

.site-nav.is-scrolled .nav-links a {
  color: var(--ink);
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: color 0.3s ease, background 0.2s ease;
}

.site-nav.is-scrolled .nav-social a {
  color: var(--ink);
}

.nav-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.nav-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: background 0.3s ease;
}

.site-nav.is-scrolled .nav-toggle span {
  background: var(--ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(201, 138, 46, 0.16) 0%, rgba(201, 138, 46, 0) 62%),
    linear-gradient(160deg, rgba(35, 72, 114, 0.82) 0%, rgba(16, 31, 48, 0.88) 55%, rgba(16, 31, 48, 0.93) 100%),
    url("images/hero-bg-coast.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center 65%;
  background-repeat: no-repeat;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) var(--gutter) 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero-mark {
  position: relative;
  width: clamp(200px, 22vw, 280px);
  margin: 0 auto 2.2rem;
}

.hero-mark::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 38%;
  transform: translateX(-50%);
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(227, 169, 79, 0.55) 0%, rgba(227, 169, 79, 0) 68%);
  filter: blur(4px);
  z-index: 1;
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(8, 14, 24, 0.45));
}

.hero h1 {
  color: var(--cream);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}

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

.hero-sub {
  color: rgba(250, 246, 236, 0.85);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 2.6rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero-ctas-divider {
  color: rgba(250, 246, 236, 0.6);
  font-size: 0.95rem;
}

.phone-link--hero {
  color: var(--gold-light);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.7vw, 1.45rem);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 236, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

/* ==========================================================================
   Industries strip
   ========================================================================== */

.industries {
  background: var(--grey-pale);
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--border-cool);
}

.industries .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0.8rem;
}

.industries-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 0.3rem;
  white-space: nowrap;
}

.industry-badge {
  border: 1.5px solid var(--border-cool);
  background: var(--white);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.45em 0.85em;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   Split sections (Our Story + Services)
   ========================================================================== */

.split-section {
  padding: 6.5rem 0;
}

.split-section.on-navy {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
}

.split-section.on-white {
  background: var(--white);
}

.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.split-grid.reverse .split-media {
  order: 2;
}

.split-grid.reverse .split-text {
  order: 1;
}

.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Our Story portrait — deliberately smaller than the standard split-media
   photo treatment (this is a headshot, not a landscape product/scene shot),
   right-aligned in its column, with a shadow to lift it off the busy
   coastline background photo behind the section. */
.story-portrait-wrap {
  display: flex;
  justify-content: flex-end;
}

.story-portrait-wrap .story-portrait {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(8, 14, 24, 0.35);
}

.split-text.on-navy-text h2 {
  color: var(--cream);
}

.split-text.on-navy-text p {
  color: rgba(250, 246, 236, 0.78);
}

.split-text.on-white-text h2 {
  color: var(--navy);
}

/* ==========================================================================
   What we produce
   ========================================================================== */

.produce {
  background:
    linear-gradient(180deg, rgba(244, 245, 247, 0.45) 0%, rgba(244, 245, 247, 0.9) 42%, var(--grey-pale) 72%),
    url("images/produce-bg-clock.jpg");
  background-size: cover;
  background-position: 68% 15%;
  background-repeat: no-repeat;
  padding: 6.5rem 0;
  text-align: center;
}

.produce-head {
  max-width: 620px;
  margin: 0 auto 3.2rem;
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}

.produce-card {
  background: var(--white);
  border: 1px solid var(--border-cool);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.produce-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(43, 36, 25, 0.14);
}

.produce-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--grey-pale);
}

.produce-card-body {
  padding: 1.4rem 1.5rem 1.7rem;
}

.produce-card-body h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.produce-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.produce-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.produce-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background:
    linear-gradient(160deg, rgba(16, 31, 48, 0.9) 0%, rgba(16, 31, 48, 0.95) 100%),
    url("images/cta-bg-compass.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  padding: 6.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: rgba(250, 246, 236, 0.75);
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--cream);
  text-align: left;
}

.contact-line a {
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: var(--gold-light);
}

.phone-link {
  white-space: nowrap;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.55);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(250, 246, 236, 0.08);
  padding: 3rem 0 2rem;
  color: rgba(250, 246, 236, 0.68);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
}

.footer-brand {
  display: block;
  position: relative;
  height: 30px;
  aspect-ratio: 1400 / 544;
}

.footer-brand img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 246, 236, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: var(--cream);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
}

.footer-address-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.55);
  margin-bottom: 0.5rem;
}

.footer-address address {
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-credits {
  font-size: 0.76rem;
  line-height: 1.9;
  color: rgba(250, 246, 236, 0.4);
}

.footer-credits summary {
  cursor: pointer;
  color: rgba(250, 246, 236, 0.6);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-credits table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
}

.footer-credits th,
.footer-credits td {
  text-align: left;
  padding: 0.4rem 0.7rem 0.4rem 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
  vertical-align: top;
}

.footer-bottom {
  padding-top: 1.6rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .split-grid.reverse .split-media,
  .split-grid.reverse .split-text {
    order: initial;
  }

  .split-media img {
    height: 320px;
  }

  .story-portrait-wrap {
    justify-content: center;
  }

  .story-portrait-wrap .story-portrait {
    max-width: 220px;
  }

  .produce-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 1.3rem;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 12px 20px rgba(43, 36, 25, 0.1);
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--ink) !important;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .split-section,
  .produce {
    padding: 4rem 0;
  }

  .cta-band {
    padding: 3.5rem 0;
  }

  .cta-band-actions {
    flex-direction: column;
    gap: 1.6rem;
  }

  .contact-line {
    align-items: center;
    text-align: center;
  }

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

  .industries .container {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.8rem;
  }
}
