/* ═══════════════════════════════════════
   BEARDFACE DESIGN CO. — Shared Styles
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --bg:           #F5F3EE;
  --white:        #FFFFFF;
  --surface:      #EDEAE2;
  --border:       #D4D0C7;
  --text:         #1A1917;
  --muted:        #78756F;
  --green:        #057f3f;
  --green-dark:   #0c5900;
  --green-light:  #ECF5F1;
  --amber:        #B87C20;
  --amber-light:  #FBF3E4;
  --font-head:    'Lora', serif;
  --font-body:    'Instrument Sans', sans-serif;
  --nav-h:        64px;
  --max-w:        960px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.01em; color: var(--text);
}
h2 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15; letter-spacing: -0.005em; color: var(--text);
}
h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
h1 em, h2 em { font-style: italic; color: var(--green); }
p { line-height: 1.75; }

/* ══════════════════════
   NAV
══════════════════════ */
.site-nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0 2.5rem;
  background: rgba(245,243,238,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 300;
}
.nav-logo { display: flex; align-items: center; height: 28px; flex-shrink: 0; }
.nav-logo svg { height: 28px; width: auto; }

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0 auto 0 2.5rem;
}
.nav-links .nav-link {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.875rem; color: var(--muted);
  text-decoration: none; padding: 0.4rem 0.7rem;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links .nav-link:hover,
.nav-links li.active > .nav-link { color: var(--text); }
.nav-links li.active > .nav-link {
  color: var(--green); font-weight: 600;
}
.caret {
  width: 10px; height: 10px; stroke: currentColor;
  fill: none; stroke-width: 2; transition: transform 0.2s;
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  min-width: 260px; padding: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dd-item {
  display: block; padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s;
}
.dd-item:hover { background: var(--green-light); }
.dd-name {
  display: block; font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; color: var(--text);
  margin-bottom: 2px;
}
.dd-meta {
  font-size: 0.78rem; color: var(--muted);
}
.dd-meta strong { color: var(--amber); font-weight: 600; }

/* Nav right: lang + hamburger */
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Lang toggle */
.lang-toggle { display: flex; align-items: center; gap: 3px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 2px 3px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  line-height: 1.4;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--green); border-bottom-color: var(--green); }
.lang-sep { font-size: 0.6rem; color: var(--border); user-select: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 5px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%; background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 290;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
.mobile-menu a, .mobile-sub-toggle {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 2.8rem); color: var(--text);
  text-decoration: none; padding: 0.3rem 0; line-height: 1.2;
  background: none; border: none; cursor: pointer; text-align: left;
  width: 100%;
  transition: color 0.18s;
}
.mobile-menu a:hover, .mobile-sub-toggle:hover { color: var(--green); }
.mobile-sub-items {
  display: none; padding-left: 1rem; border-left: 2px solid var(--green-light);
  margin: 0.35rem 0 0.5rem;
}
.mobile-sub-items.open { display: block; }
.mobile-sub-items a {
  font-family: var(--font-body); font-weight: 500;
  font-size: 1rem; color: var(--muted); padding: 0.2rem 0;
}
.mobile-sub-items a:hover { color: var(--green); }
.mobile-sub-items .sub-meta {
  font-size: 0.8rem; color: var(--amber); font-weight: 600;
  margin-left: 0.5rem;
}
.mobile-cta {
  margin-top: 2rem;
  display: inline-block !important; width: auto !important;
  font-family: var(--font-body) !important; font-weight: 600 !important;
  font-size: 0.85rem !important; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--green); color: var(--white) !important;
  padding: 0.8rem 1.8rem; text-decoration: none !important;
  transition: background 0.2s !important;
}
.mobile-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* ══════════════════════
   SHARED LAYOUT
══════════════════════ */
hr.divider { border: none; border-top: 1px solid var(--border); }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 4rem 2.5rem; max-width: var(--max-w); margin: 0 auto; }
.section-sm { padding: 3rem 2.5rem; max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::after { content: ''; height: 1px; background: var(--border); width: 48px; }
.section-label.amber { color: var(--amber); }
.section-label.amber::after { background: var(--amber); }

/* ══════════════════════
   BUTTONS
══════════════════════ */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.85rem 2rem; transition: background 0.2s, transform 0.15s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--bg); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }

/* ══════════════════════
   HERO (shared base)
══════════════════════ */
.hero {
  padding: 6rem 2.5rem 5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.eyebrow {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); border: 1px solid var(--green);
  padding: 0.3rem 0.75rem; margin-bottom: 1.75rem;
}
.eyebrow.amber {
  color: var(--amber); border-color: var(--amber);
}
.hero h1 { margin-bottom: 1rem; }
.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 460px;
  line-height: 1.75; margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.price-tag {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--text);
}
.price-tag small {
  font-size: 0.82rem; color: var(--muted); font-weight: 400;
  font-family: var(--font-body); margin-left: 0.3rem;
}

/* ══════════════════════
   INCLUDES GRID
══════════════════════ */
.includes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.include-item {
  background: var(--white); padding: 1.75rem 1.5rem; transition: background 0.18s;
}
.include-item:hover { background: var(--green-light); }
.include-num {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--green); margin-bottom: 0.7rem; font-family: var(--font-body);
}
.include-title {
  font-family: var(--font-head); font-weight: 600; font-size: 0.975rem;
  color: var(--text); margin-bottom: 0.45rem;
}
.include-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════
   FOR WHO
══════════════════════ */
.for-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.for-inner {
  padding: 4.5rem 2.5rem; max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.for-col h3 { font-size: 1rem; margin-bottom: 1.2rem; }
.for-col h3.yes { color: var(--green); }
.for-col h3.no { color: var(--muted); }
.for-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.for-list li {
  font-size: 0.875rem; color: var(--muted);
  padding-left: 1.25rem; position: relative;
}
.for-list li::before {
  content: attr(data-m); position: absolute; left: 0;
  color: var(--green); font-weight: 600;
}
.for-list.nope li::before { color: var(--border); }

/* ══════════════════════
   STEPS
══════════════════════ */
.steps { border: 1px solid var(--border); }
.step {
  display: grid; grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--border); transition: background 0.18s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: var(--green-light); }
.step-n {
  font-family: var(--font-head); font-weight: 700; font-size: 1.6rem;
  color: var(--border); display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); transition: color 0.18s;
}
.step:hover .step-n { color: var(--green); }
.step-body { padding: 1.5rem 1.75rem; }
.step-body strong {
  font-family: var(--font-head); font-weight: 600; font-size: 0.975rem;
  display: block; margin-bottom: 0.3rem; color: var(--text);
}
.step-body p { font-size: 0.86rem; color: var(--muted); }

/* ══════════════════════
   PRICE BAND
══════════════════════ */
.price-band { background: var(--green); border-top: 1px solid var(--green-dark); }
.price-inner {
  padding: 5rem 2.5rem; max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
}
.big-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(4.5rem, 11vw, 7.5rem);
  line-height: 1; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.35rem;
}
.price-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.price-right p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 1.75rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pill {
  font-size: 0.74rem; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3); padding: 0.28rem 0.7rem;
  letter-spacing: 0.03em;
}

/* ══════════════════════
   FAQ
══════════════════════ */
.faq-list { border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--text); padding: 1.35rem 1.75rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; user-select: none; background: var(--white); transition: background 0.18s;
}
.faq-q:hover, .faq-item.open .faq-q { background: var(--green-light); }
.faq-icon {
  color: var(--green); font-size: 1.2rem; flex-shrink: 0;
  transition: transform 0.24s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.875rem; color: var(--muted); line-height: 1.78;
  padding: 0 1.75rem 1.4rem; background: var(--green-light); display: none;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════
   HOME: PRODUCT CARD
══════════════════════ */
.home-product {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-product-inner {
  padding: 4rem 2.5rem; max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.25rem; position: relative;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--amber);
}
.featured-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); border: 1px solid var(--amber);
  padding: 0.25rem 0.6rem; margin-bottom: 1.25rem;
}
.product-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem); margin-bottom: 0.75rem;
}
.product-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.product-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 2rem; color: var(--text); margin-bottom: 1.5rem;
}
.product-price small { font-size: 0.82rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; margin-left: 0.3rem; }

/* ══════════════════════
   HOME: VALUE PROPS
══════════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.value-item {
  background: var(--white); padding: 2rem 1.75rem; transition: background 0.18s;
}
.value-item:hover { background: var(--green-light); }
.value-num {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--green); margin-bottom: 0.75rem;
}
.value-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--text); margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════
   CTA STRIP
══════════════════════ */
.cta-strip {
  text-align: center; padding: 4rem 2.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p { color: var(--muted); margin-bottom: 2.25rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ══════════════════════
   ABOUT PAGE
══════════════════════ */
.about-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: start;
}
.photo-block {
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.photo-frame {
  width: 100%; aspect-ratio: 4/5; background: var(--surface);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; width: 100%; height: 100%;
}
.photo-placeholder svg { opacity: 0.25; }
.photo-placeholder span {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.about-text h1 { margin-bottom: 1.5rem; }
.about-text .lead {
  font-family: var(--font-head); font-style: italic;
  font-size: 1.2rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 540px;
}
.about-text p { color: var(--muted); margin-bottom: 1.25rem; max-width: 580px; }
.values-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); margin-top: 2.5rem;
}
.values-list li {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; gap: 1rem; align-items: flex-start;
}
.values-list li:last-child { border-bottom: none; }
.values-list li::before {
  content: attr(data-n);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  color: var(--green); flex-shrink: 0; padding-top: 2px;
}
.values-list strong { display: block; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 2px; }
.values-list span { font-size: 0.86rem; color: var(--muted); }

/* ══════════════════════
   CONTACT PAGE
══════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap .sub { color: var(--muted); margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem;
}
.form-group label span { color: var(--green); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--white); border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.18s;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378756F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.gdpr-check { display: flex; gap: 0.75rem; align-items: flex-start; }
.gdpr-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--green); border-radius: 0;
}
.gdpr-check label {
  font-size: 0.8rem; color: var(--muted); text-transform: none;
  letter-spacing: 0; font-weight: 400; margin-bottom: 0;
}
.gdpr-check a { color: var(--green); text-decoration: underline; }
.contact-details h3 { margin-bottom: 1.5rem; font-size: 1rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.contact-detail-value { font-size: 0.95rem; color: var(--text); }
.contact-detail-value a { text-decoration: none; color: var(--text); }
.contact-detail-value a:hover { color: var(--green); }

/* ══════════════════════
   LEGAL PAGE
══════════════════════ */
.legal-nav {
  display: flex; gap: 0; border: 1px solid var(--border);
  margin-bottom: 3rem; overflow: hidden;
}
.legal-nav a {
  flex: 1; text-align: center; padding: 0.85rem 1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  background: var(--white); border-right: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.legal-nav a:last-child { border-right: none; }
.legal-nav a:hover, .legal-nav a.active { background: var(--green-light); color: var(--green); }
.legal-section { display: none; }
.legal-section.active { display: block; }
.legal-section h2 { margin-bottom: 2rem; }
.legal-section h3 { font-size: 1rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--text); font-weight: 600; }
.legal-section p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.legal-section ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-section ul li { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.3rem; }
.legal-section a { color: var(--green); }
.legal-meta { font-size: 0.78rem; color: var(--border); margin-top: 2.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ══════════════════════
   FOOTER
══════════════════════ */
.site-footer {
  background: var(--text);
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem 2rem;
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto 2.5rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start;
}
.footer-logo { height: 32px; }
.footer-logo svg { height: 32px; width: 32px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.25rem 1.5rem; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact a { font-size: 0.84rem; color: rgba(255,255,255,0.55); text-decoration: none; display: block; transition: color 0.18s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }
.footer-legal-links { display: flex; gap: 1.25rem; }

/* ══════════════════════
   COOKIE BANNER
══════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--text); border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.7); max-width: 640px; }
.cookie-banner a { color: rgba(255,255,255,0.9); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--green); color: var(--white);
  border: none; cursor: pointer; padding: 0.55rem 1.25rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cookie-decline {
  background: none; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; padding: 0.55rem 1rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
}
.cookie-decline:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════
   ANIMATIONS
══════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.5s ease both; }
.hero > *:nth-child(1) { animation-delay: 0.05s; }
.hero > *:nth-child(2) { animation-delay: 0.14s; }
.hero > *:nth-child(3) { animation-delay: 0.23s; }
.hero > *:nth-child(4) { animation-delay: 0.32s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

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

  .hero { padding: 3rem 1.5rem 2.5rem; }
  .section { padding: 3rem 1.5rem; }
  .section-sm { padding: 2rem 1.5rem; }
  .wrap { padding: 0 1.5rem; }

  .home-product-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .for-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .price-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1.5rem; }
  .step { grid-template-columns: 56px 1fr; }
  .step-n { font-size: 1.2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-block { position: static; }
  .photo-frame { aspect-ratio: 1/1; max-width: 280px; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { display: none; }
  .legal-nav { flex-direction: column; }
  .legal-nav a { border-right: none; border-bottom: 1px solid var(--border); }
  .legal-nav a:last-child { border-bottom: none; }
  .site-nav { padding: 0 1.5rem; }
  .mobile-menu { padding: 5rem 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════
   LOGO DESIGN PORTFOLIO
══════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.portfolio-item {
  background: var(--white);
  overflow: hidden; transition: background 0.18s;
}
.portfolio-item:hover { background: var(--green-light); }
.portfolio-thumb {
  aspect-ratio: 4/3; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.portfolio-ph {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; opacity: 0.3; text-align: center; padding: 1.5rem;
}
.portfolio-ph svg { opacity: 0.6; }
.portfolio-ph span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.portfolio-caption { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
.portfolio-num {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--green); margin-bottom: 0.25rem;
}
.portfolio-name {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.88rem; color: var(--text); margin-bottom: 0.15rem;
}
.portfolio-type { font-size: 0.76rem; color: var(--muted); }
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════
   HOME HERO — SPLIT + COLLAGE
══════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(640px, 88vh, 960px);
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: var(--bg);
  animation: none;
  position: relative;
  z-index: 10;
}
.hero-split > * { animation: none; }

/* Left: text */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
}
.hero-text > * {
  animation: fadeUp 0.55s ease both;
}
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.15s; }
.hero-text > *:nth-child(3) { animation-delay: 0.25s; }
.hero-text > *:nth-child(4) { animation-delay: 0.35s; }

/* Right: collage */
.hero-collage {
  position: relative;
  background: var(--bg);
  animation: fadeIn 0.7s ease 0.1s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Inner frame — inset: 10% uses the collage HEIGHT for top/bottom (unlike padding which uses width) */
.collage-inner {
  position: absolute;
  inset: 10%;
  display: grid;
  grid-template-columns: 30fr 11fr 48fr 11fr;
  grid-template-rows: 50fr 50fr;
  gap: 3px;
}

/* Grid images — contain shows 100% of each PNG, no background paint */
.ci {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  min-width: 0;
  min-height: 0;
}

/* ── Grid placement (4 cols × 2 rows) ──
   [man3 (full ht)] [plant ] [    man1    ]  [·]
   [man3 (full ht)] [cup   ] [    man2    ]  [plant2]
─────────────────────────────────────────────────── */
.ci-man3   { grid-column:1;   grid-row:1/3; } /* spans both rows */
.ci-plant  { grid-column:2;   grid-row:1;   }
.ci-man1   { grid-column:3/5; grid-row:1;   } /* spans cols 3-4 */
.ci-cup    { grid-column:2;   grid-row:2;   }
.ci-man2   { grid-column:3;   grid-row:2;   }
.ci-plant2 { grid-column:4;   grid-row:2;   }

/* Staggered load-in */
@keyframes ciSlide {
  from { opacity: 0; transform: translate(var(--tx,0), var(--ty,10px)) scale(0.97); }
  to   { opacity: 1; transform: translate(0,0) scale(1); }
}
.ci-man3   { --tx:-8px; --ty:0;    animation: ciSlide 0.6s ease 0.0s  both; }
.ci-plant  { --tx:-4px; --ty:6px;  animation: ciSlide 0.6s ease 0.1s  both; }
.ci-man1   { --tx:8px;  --ty:-6px; animation: ciSlide 0.6s ease 0.15s both; }
.ci-cup    { --tx:-4px; --ty:8px;  animation: ciSlide 0.6s ease 0.25s both; }
.ci-man2   { --tx:6px;  --ty:6px;  animation: ciSlide 0.6s ease 0.3s  both; }
.ci-plant2 { --tx:6px;  --ty:6px;  animation: ciSlide 0.6s ease 0.4s  both; }

/* ── Decorative floating marks ── */
.cd { position: absolute; pointer-events: none; }

/* + cross — bottom right */
.cd-cross {
  width: 20px; height: 20px;
  bottom: 5%; right: 7%;
  color: var(--green); opacity: 0.28; z-index: 10;
  animation: cdFloat 5s ease-in-out 0.3s infinite;
}
/* ○ circle outline — left mid */
.cd-circle {
  width: 26px; height: 26px;
  top: 44%; left: 1%;
  color: var(--amber); opacity: 0.22; z-index: 10;
  animation: cdFloat 7s ease-in-out 1.5s infinite;
}
/* □ square outline — bottom left area */
.cd-square {
  width: 18px; height: 18px;
  bottom: 8%; left: 36%;
  color: var(--muted); opacity: 0.2; z-index: 10;
  animation: cdFloat 5.5s ease-in-out 2s infinite;
}
/* — — dashes — top left gap */
.cd-dash {
  width: 28px; height: 10px;
  top: 3%; left: 3%;
  color: var(--border); opacity: 0.55; z-index: 10;
  animation: cdFloat 8s ease-in-out 0.5s infinite;
}
/* × small x mark — center top */
.cd-ex {
  width: 14px; height: 14px;
  top: 2%; left: 42%;
  color: var(--muted); opacity: 0.2; z-index: 10;
  animation: cdFloat 6s ease-in-out 1s infinite;
}
/* · · · · dot row — lower left */
.cd-dots2 {
  width: 46px; height: 10px;
  bottom: 14%; left: 2%;
  color: var(--green); opacity: 0.2; z-index: 10;
  animation: cdFloat 7.5s ease-in-out 2.5s infinite;
}

@keyframes cdFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-text {
    max-width: 100%;
    padding: 2rem 1.5rem 2.5rem;
    order: 1;
  }
  .hero-collage {
    order: 0;
    height: 72vw;
    min-height: 260px;
    max-height: 380px;
  }
  .cd-cross { width: 14px; height: 14px; bottom: 6%; right: 6%; }
  .cd-circle, .cd-square, .cd-dash, .cd-ex, .cd-dots2 { display: none; }
}
