/* =============================================================
   Future Eyes Ireland — design system
   Colours live in :root so the whole site recolours from here.
   Swap --accent to match the real logo once it's in.
   ============================================================= */

:root {
  /* palette */
  --bg:          #0b0d10;
  --bg-2:        #0f1216;
  --surface:     #14181d;
  --surface-2:   #1b2027;
  --border:      rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text:        #eef1f4;
  --muted:       #9aa2ad;
  --faint:       #6b727c;

  --accent:      #f7a81c;   /* Future Eyes brand amber (matched to logo) */
  --accent-2:    #ffc861;
  --accent-ink:  #1a1204;   /* text on accent */
  --glow:        rgba(247, 168, 28, 0.35);

  --danger:      #ff5d5d;
  --ok:          #37d39a;

  /* type */
  --font-head: "Oxanium", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --maxw: 1180px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 104px;

  --shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.8);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-block: 0.6rem 0.4rem; }
.section-lead { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .section-lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); box-shadow: 0 8px 24px -8px var(--glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px var(--glow); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(11, 13, 16, 0.92); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* logo lockup — replace .brand-mark img src with the real logo */
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent));
  color: var(--accent-ink); font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  box-shadow: 0 0 18px -2px var(--glow);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em; }
.brand-text span { font-size: 0.66rem; letter-spacing: 0.32em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
/* real logo image (full lockup) — height-driven, swaps in when assets/brand/logo.png exists */
.brand-logo { height: 84px; width: auto; display: block; }
.site-footer .brand-logo { height: 84px; }
@media (max-width: 640px) { .brand-logo { height: 58px; } }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  padding: 0.5rem 0.9rem; border-radius: 8px; color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover { color: var(--text); background: var(--surface); }
.nav a.active { color: var(--accent); }
.header-cta { margin-left: 0.5rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; transition: var(--transition); }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 10vw, 8rem); }
.hero::before { /* beam glow */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 70% 0%, var(--glow), transparent 60%),
    radial-gradient(45% 60% at 15% 100%, rgba(255,176,32,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  z-index: -2;
}
.hero::after { /* subtle grid */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.4;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 80%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); text-transform: uppercase; }
.hero h1 .lit { color: var(--accent); text-shadow: 0 0 26px var(--glow); }
.hero-lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); margin-block: 1.4rem 2rem; max-width: 48ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 1.5rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.55rem; color: var(--muted); font-size: 0.9rem; }
.hero-badge svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* hero visual — placeholder frame for a product/night-ride shot */
.hero-visual {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,176,32,0.22), transparent 55%),
    linear-gradient(160deg, var(--surface-2), var(--surface));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.hero-visual .beam {
  position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 200deg at 50% 50%, transparent 0deg, rgba(255,176,32,0.14) 30deg, transparent 60deg);
  animation: sweep 8s linear infinite;
}
@keyframes sweep { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-visual .lamp { position: relative; width: 42%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff, var(--accent) 45%, #8a5c00 78%, #2a1c05);
  box-shadow: 0 0 60px 6px var(--glow), inset 0 0 30px rgba(0,0,0,0.5); }
.placeholder-tag { position: absolute; bottom: 12px; left: 12px; font-size: 0.72rem; color: var(--faint);
  background: rgba(0,0,0,0.5); padding: 4px 9px; border-radius: 6px; letter-spacing: 0.04em; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual--square { aspect-ratio: 1 / 1; }

/* ---------- legal / prose pages ---------- */
.legal { max-width: 800px; }
.legal .updated { color: var(--faint); font-size: 0.88rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.6rem; }
.legal h3 { font-size: 1.08rem; margin: 1.5rem 0 0.4rem; color: var(--text); }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.85rem; }
.legal ul { padding-left: 1.3rem; list-style: disc; margin-bottom: 0.85rem; }
.legal a { color: var(--accent); }
.legal .disclaimer { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: 0.9rem; margin-bottom: 2rem; }

/* =============================================================
   MARQUEE / trust strip
   ============================================================= */
.strip { border-block: 1px solid var(--border); background: var(--bg-2); }
.strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; padding-block: 1.4rem; }
.strip-item { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; color: var(--muted); }
.strip-item svg { width: 22px; height: 22px; color: var(--accent); }

/* =============================================================
   FEATURE CARDS
   ============================================================= */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem; transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,176,32,0.12); color: var(--accent); margin-bottom: 1.1rem;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* =============================================================
   PRODUCTS
   ============================================================= */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--transition), transform var(--transition);
}
.product:hover { border-color: var(--accent); transform: translateY(-4px); }
.product-media {
  position: relative; aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 50% 40%, rgba(255,176,32,0.16), transparent 60%), linear-gradient(160deg, var(--surface-2), var(--bg-2));
  display: grid; place-items: center; overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
/* real product photos come on white — back them with white and contain so nothing crops */
.product-media.has-photo { background: #fff; aspect-ratio: 1 / 1; }
.product-media.has-photo img { object-fit: contain; object-position: center; padding: 7%; }
.product-media .ph-lamp { width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff, var(--accent) 48%, #7a5100 80%, #241804);
  box-shadow: 0 0 40px 2px var(--glow); }
.product-tag {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-head); font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
  background: rgba(0,0,0,0.55); border: 1px solid var(--border); color: var(--accent-2);
}
.product-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.12rem; line-height: 1.25; }
.product-desc { color: var(--muted); font-size: 0.92rem; margin-block: 0.6rem 1rem; flex: 1; }
.product-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.product-specs span { font-size: 0.75rem; color: var(--muted); background: var(--surface-2); border: 1px solid var(--border); padding: 3px 9px; border-radius: 6px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--text); }
.price small { display: block; font-size: 0.68rem; color: var(--faint); font-weight: 400; letter-spacing: 0.05em; }

/* =============================================================
   SPLIT (about / cta)
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media { aspect-ratio: 5/4; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden;
  background: radial-gradient(circle at 60% 30%, rgba(255,176,32,0.15), transparent 55%), linear-gradient(160deg, var(--surface-2), var(--bg-2));
  display: grid; place-items: center; position: relative; }
.split h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
.check-list { margin: 1.4rem 0 2rem; display: grid; gap: 0.8rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text); }
.check-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* =============================================================
   CTA banner
   ============================================================= */
.cta-banner { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: radial-gradient(70% 120% at 80% 0%, rgba(255,176,32,0.2), transparent 60%), linear-gradient(120deg, var(--surface), var(--bg-2));
  padding: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.cta-banner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.cta-banner p { color: var(--muted); max-width: 52ch; margin: 0 auto 2rem; }

/* =============================================================
   PAGE HEADER (interior pages)
   ============================================================= */
.page-head { position: relative; padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem); overflow: hidden; border-bottom: 1px solid var(--border); }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 80% at 75% 0%, var(--glow), transparent 60%), linear-gradient(180deg, var(--bg-2), var(--bg)); }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); text-transform: uppercase; }
.breadcrumb { color: var(--faint); font-size: 0.85rem; margin-top: 0.6rem; }
.breadcrumb a:hover { color: var(--accent); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-methods { display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color var(--transition); }
.contact-method:hover { border-color: var(--accent); }
.contact-method .icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,176,32,0.12); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.contact-method .icon svg { width: 22px; height: 22px; }
.contact-method b { font-family: var(--font-head); display: block; font-size: 0.95rem; }
.contact-method span { color: var(--muted); font-size: 0.92rem; }
.contact-photo { width: 100%; height: auto; margin-top: 1.6rem; border-radius: var(--radius); border: 1px solid var(--border); display: block; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.45rem; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.8rem 1rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--faint); margin-top: 0.8rem; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-grid p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); padding: 0.3rem 0; font-size: 0.94rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: var(--transition); }
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; color: var(--faint); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   scroll-reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.2rem;
    transform: translateY(calc(-100% - var(--header-h) - 12px)); visibility: hidden;
    transition: transform var(--transition), visibility var(--transition); }
  .nav.open { transform: none; visibility: visible; }
  .nav a { padding: 0.9rem 1rem; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .products, .grid-2 { grid-template-columns: 1fr; }
  .strip .container { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
