/* ═══════════════════════════════════════════
   INDO EUROPEAN SEAFOODS — OPTION B DESIGN
   Section order: Hero › About › Services ›
   Products › Why Us › Contact › Credits
═══════════════════════════════════════════ */
:root {
  --sand:    #f5ede0;
  --warm:    #faf6f1;
  --charcoal:#1c1c1c;
  --mid:     #4a4a4a;
  --light:   #767676;
  --accent:  #e05c3a;
  --green:   #1a5c3a;
  --teal:    #1e7a6e;
  --border:  #e0d8cc;
  --white:   #ffffff;
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

/* ── SKIP LINK (WCAG 2.4.1) ── */
.skip-link {
  position:absolute; top:-120px; left:16px; z-index:9999;
  padding:10px 20px; background:var(--charcoal); color:#fff;
  font-size:.875rem; font-family:'IBM Plex Sans',sans-serif;
  text-decoration:none; border-radius:0 0 4px 4px;
  transition:top .15s ease;
}
.skip-link:focus { top:0; outline:3px solid var(--accent); outline-offset:2px; }
body { font-family:'IBM Plex Sans',sans-serif; background:var(--warm); color:var(--charcoal); overflow-x:hidden; }

/* ── NAV ── */
nav {
  position:sticky; top:0; z-index:200;
  display:flex; justify-content:space-between; align-items:center;
  padding:0 5%; height:68px;
  background:var(--warm); border-bottom:1px solid var(--border);
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo img { height:44px; width:auto; object-fit:contain; display:block; }
.nav-logo-sep { width:1px; height:28px; background:var(--border); }
.nav-logo-text .name { font-family:'Fraunces',serif; font-size:1.05rem; font-weight:600; color:var(--charcoal); line-height:1.2; }
.nav-logo-text .tag  { font-size:0.6rem; letter-spacing:2px; text-transform:uppercase; color:var(--light); margin-top:1px; }
.nav-links { display:flex; gap:1.6rem; list-style:none; }
.nav-links a { color:var(--mid); text-decoration:none; font-size:0.82rem; transition:color .2s; }
.nav-links a:hover { color:var(--accent); }
.nav-actions { display:flex; gap:10px; align-items:center; }
.btn-outline-dark { border:1.5px solid var(--charcoal); color:var(--charcoal); padding:8px 18px; border-radius:100px; font-size:0.77rem; text-decoration:none; transition:all .2s; }
.btn-outline-dark:hover { background:var(--charcoal); color:white; }
.btn-solid { background:var(--accent); color:white; padding:9px 22px; border-radius:100px; font-size:0.77rem; text-decoration:none; transition:opacity .2s; }
.btn-solid:hover { opacity:.85; }

/* ── HERO ── */
.hero { display:grid; grid-template-columns:1fr 1fr; min-height:100vh; }
.hero-left {
  background:var(--sand); padding:80px 6% 80px 5%;
  display:flex; flex-direction:column; justify-content:center;
  position:relative;
}
.hero-left::after {
  content:''; position:absolute; right:0; top:10%; bottom:10%;
  width:1px; background:var(--border);
}
.hero-stamp {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--green); color:white;
  padding:6px 14px; border-radius:100px;
  font-size:0.68rem; letter-spacing:2px; text-transform:uppercase;
  margin-bottom:32px; width:fit-content;
}
.hero-stamp::before { content:''; width:6px; height:6px; background:#5fd99a; border-radius:50%; }
.hero-h1 {
  font-family:'Fraunces',serif; font-weight:300;
  font-size:clamp(2.8rem,4.5vw,4rem);
  line-height:1.08; color:var(--charcoal); margin-bottom:24px;
}
.hero-h1 em { font-style:italic; color:var(--accent); }
.hero-h1 .big { font-size:1.15em; }
.hero-body { font-size:0.95rem; color:var(--mid); line-height:1.75; max-width:440px; margin-bottom:40px; font-weight:300; }
.hero-cta { display:flex; gap:14px; align-items:center; margin-bottom:60px; }
.btn-accent { background:var(--accent); color:white; padding:14px 28px; border-radius:100px; text-decoration:none; font-size:0.85rem; transition:transform .2s; }
.btn-accent:hover { transform:translateY(-2px); }
.btn-link { color:var(--charcoal); text-decoration:none; font-size:0.85rem; display:flex; align-items:center; gap:6px; border-bottom:1px solid var(--charcoal); padding-bottom:1px; }
.hero-tags { display:flex; gap:8px; flex-wrap:wrap; }
.hero-tag { background:white; border:1px solid var(--border); padding:6px 14px; border-radius:100px; font-size:0.72rem; color:var(--mid); }
.hero-right { position:relative; background:var(--charcoal); overflow:hidden; }
.hero-right img { width:100%; height:100%; object-fit:cover; opacity:.85; display:block; }
.hero-right-overlay {
  position:absolute; bottom:0; left:0; right:0; padding:36px 40px;
  background:linear-gradient(to top,rgba(28,28,28,.95) 0%,transparent 100%);
}
.hero-overlay-stats { display:flex; gap:40px; }
.h-stat-num   { font-family:'Fraunces'; font-size:2rem; color:white; font-weight:300; }
.h-stat-label { font-size:.7rem; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.5); margin-top:2px; }

/* ── TICKER ── */
.ticker { background:var(--charcoal); padding:14px 0; overflow:hidden; white-space:nowrap; }
.ticker-inner { display:inline-flex; gap:60px; animation:tickerMove 22s linear infinite; }
.ticker-item { font-size:.72rem; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.5); }
.ticker-item span { color:var(--accent); }
@keyframes tickerMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SHARED SECTION STYLES ── */
.section { padding:100px 5%; }
.section-inner { max-width:1240px; margin:0 auto; }
.eyebrow { font-size:.68rem; letter-spacing:4px; text-transform:uppercase; color:var(--accent); margin-bottom:12px; }
.section-h2 { font-family:'Fraunces'; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; margin-bottom:12px; }
.section-h2 em { font-style:italic; }
.rule { width:40px; height:1.5px; background:var(--charcoal); margin-bottom:50px; }

/* ── ABOUT ── Option B bento layout, index.html text */
.about-section { background:var(--sand); }
.about-bento { display:grid; grid-template-columns:1.3fr 1fr; gap:2px; }
.bento-main { background:var(--charcoal); border-radius:4px; overflow:hidden; position:relative; }
.bento-main img { width:100%; height:100%; object-fit:cover; opacity:.7; display:block; min-height:440px; }
.bento-main-text {
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:40px;
  background:linear-gradient(to top,rgba(28,28,28,.92) 0%,transparent 55%);
}
.bento-main-text h3 { font-family:'Fraunces'; font-size:1.5rem; color:white; font-weight:300; margin-bottom:10px; line-height:1.3; }
.bento-main-text p  { font-size:.84rem; color:rgba(255,255,255,.65); line-height:1.75; }
.bento-right { display:flex; flex-direction:column; gap:2px; }
.bento-metric {
  background:var(--white); padding:32px 36px;
  display:flex; flex-direction:column; justify-content:center;
  border-radius:3px; flex:1;
}
.bento-metric-num   { font-family:'Fraunces'; font-size:2.6rem; font-weight:300; color:var(--charcoal); margin-bottom:4px; }
.bento-metric-label { font-size:.78rem; color:var(--mid); line-height:1.5; }
.bento-cert { background:var(--green); padding:32px 36px; border-radius:3px; }
.bento-cert-title { font-size:.68rem; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:14px; }
.cert-chips { display:flex; flex-wrap:wrap; gap:8px; }
.cert-chip { background:rgba(255,255,255,.12); color:white; padding:5px 12px; border-radius:100px; font-size:.72rem; }

/* ── SERVICES ── Option B editorial table */
.services-section { background:var(--white); }
.services-table { border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.service-row {
  display:grid; grid-template-columns:60px 1fr 2fr auto;
  gap:30px; padding:28px 30px;
  border-bottom:1px solid var(--border); align-items:start;
  transition:background .2s;
}
.service-row:last-child { border-bottom:none; }
.service-row:hover { background:var(--sand); }
.service-num  { font-family:'Fraunces'; font-size:1.1rem; color:var(--light); font-weight:300; padding-top:2px; }
.service-name { font-family:'Fraunces'; font-size:1rem; color:var(--charcoal); }
.service-desc { font-size:.83rem; color:var(--mid); line-height:1.65; }
.service-arrow { color:var(--accent); font-size:1.2rem; padding-top:2px; }

/* ── PRODUCTS — Option A style (3-col, card with tag/name/desc) ── */
.products-section { background:var(--warm); }
.products-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:0; }
.view-all { font-size:.8rem; color:var(--mid); text-decoration:none; display:flex; align-items:center; gap:6px; border-bottom:1px solid var(--border); padding-bottom:2px; }
.products-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; margin-top:50px;
}
.product-card {
  background:var(--white); border-radius:4px; overflow:hidden;
  box-shadow:0 2px 20px rgba(0,0,0,.06);
  transition:transform .3s, box-shadow .3s;
  cursor:pointer; position:relative;
}
.product-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.12); }
.product-card-img { position:relative; overflow:hidden; }
.product-card-img img { width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s; }
.product-card:hover .product-card-img img { transform:scale(1.04); }
/* zoom icon top-right */
.zoom-icon {
  position:absolute; top:10px; right:10px; z-index:5;
  width:32px; height:32px; border-radius:50%;
  background:rgba(28,28,28,.6); color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:.82rem; opacity:0; transition:opacity .2s;
  pointer-events:none;
}
.product-card:hover .zoom-icon { opacity:1; }
.product-card-body { padding:22px; }
.product-tag  { font-size:.65rem; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin-bottom:8px; }
.product-name { font-family:'Fraunces'; font-size:1.12rem; color:var(--charcoal); margin-bottom:8px; }
.product-desc { font-size:.84rem; color:var(--mid); line-height:1.6; }

/* ── TRUST BAR ── */
.trust-bar { background:var(--accent); padding:60px 5%; text-align:center; }
.trust-bar h2 { font-family:'Fraunces'; font-size:1.8rem; color:white; font-weight:300; font-style:italic; margin-bottom:8px; }
.trust-bar p  { color:rgba(255,255,255,.8); font-size:.85rem; }

/* ── WHY US ── */
.why-section { background:var(--sand); }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.diff-item { display:flex; gap:20px; padding:24px 0; border-bottom:1px solid var(--border); }
.diff-item:last-child { border-bottom:none; }
.diff-num  { font-family:'Fraunces'; font-size:1.3rem; color:var(--accent); flex-shrink:0; width:32px; font-weight:300; }
.diff-name { font-family:'Fraunces'; font-size:1rem; color:var(--charcoal); margin-bottom:6px; }
.diff-desc { font-size:.83rem; color:var(--mid); line-height:1.7; }
.process-box { background:var(--charcoal); border-radius:4px; padding:40px; position:sticky; top:90px; }
.process-box-title { font-family:'Fraunces'; font-size:1.2rem; color:white; margin-bottom:6px; }
.process-box-sub   { font-size:.8rem; color:rgba(255,255,255,.5); margin-bottom:28px; line-height:1.7; }
.p-step { display:flex; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.07); align-items:flex-start; }
.p-step:last-child { border-bottom:none; }
.p-dot {
  width:30px; height:30px; border-radius:50%;
  background:rgba(224,92,58,.15); border:1px solid rgba(224,92,58,.35);
  display:flex; align-items:center; justify-content:center;
  font-size:.62rem; font-weight:500; color:var(--accent); flex-shrink:0;
}
.p-step-lbl  { font-size:.6rem; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:3px; }
.p-step-name { font-size:.82rem; color:rgba(255,255,255,.8); line-height:1.5; }

/* ── CONTACT ── */
.contact-section { background:var(--warm); }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:80px; align-items:start; }
.contact-label { font-size:.68rem; letter-spacing:3px; text-transform:uppercase; color:var(--light); margin-bottom:6px; }
.contact-value { font-size:.9rem; color:var(--charcoal); margin-bottom:24px; line-height:1.6; }
.contact-form { background:var(--white); border-radius:8px; padding:44px; border:1px solid var(--border); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:.72rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--light); margin-bottom:6px; }
.form-input,.form-select,.form-textarea {
  width:100%; padding:12px 14px;
  border:1px solid var(--border); border-radius:6px;
  font-family:'IBM Plex Sans'; font-size:.88rem; color:var(--charcoal);
  background:var(--warm); transition:border-color .2s;
}
.form-input:focus,.form-select:focus,.form-textarea:focus { outline:none; border-color:var(--teal); }
.form-textarea { height:110px; resize:vertical; }
.form-submit {
  width:100%; padding:14px; background:var(--charcoal); color:white;
  border:none; border-radius:100px; font-family:'IBM Plex Sans';
  font-size:.83rem; letter-spacing:1px; cursor:pointer; transition:background .2s;
}
.form-submit:hover { background:var(--accent); }

/* ── PHOTO CREDITS ── */
.credits-section { background:var(--sand); padding:60px 5% 80px; }
.credits-table { width:100%; border-collapse:collapse; font-size:.82rem; margin-top:28px; }
.credits-table th { text-align:left; font-size:.62rem; letter-spacing:2px; text-transform:uppercase; color:var(--light); padding:10px 14px; border-bottom:1px solid var(--border); }
.credits-table td { padding:10px 14px; border-bottom:1px solid var(--border); vertical-align:middle; }
.credits-table tr:hover td { background:rgba(255,255,255,.6); }

/* ── FOOTER ── */
footer { background:var(--charcoal); padding:70px 5% 32px; }
.footer-inner { max-width:1240px; margin:0 auto; }
.footer-top { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:32px; }
.footer-logo-wrap { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.footer-logo-wrap img { height:44px; width:auto; object-fit:contain; }
.footer-brand         { font-family:'Fraunces'; font-size:1.3rem; color:white; font-weight:300; margin-bottom:4px; }
.footer-tagline-text  { font-size:.68rem; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:16px; }
.footer-addr-text     { font-size:.8rem; color:rgba(255,255,255,.45); line-height:1.9; }
.footer-nav-links { display:flex; flex-direction:column; gap:10px; }
.footer-nav-links a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.83rem; transition:color .2s; }
.footer-nav-links a:hover { color:white; }
.footer-bottom { display:flex; justify-content:space-between; }
.footer-copy { font-size:.76rem; color:rgba(255,255,255,.3); }
.footer-certs-row { display:flex; gap:12px; }
.footer-cert-badge { font-size:.65rem; padding:4px 10px; border-radius:3px; background:rgba(255,255,255,.05); color:rgba(255,255,255,.4); border:1px solid rgba(255,255,255,.1); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:500;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(37,211,102,.4); transition:transform .2s;
}
.wa-float:hover { transform:scale(1.08); }
.wa-float svg { width:28px; height:28px; fill:white; }

/* ── LIGHTBOX ── */
.lb-overlay {
  position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,.92);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.lb-overlay.open { opacity:1; pointer-events:all; }
.lb-inner { position:relative; max-width:92vw; max-height:92vh; }
.lb-inner img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:2px; display:block; }
.lb-caption { text-align:center; margin-top:12px; font-size:.75rem; color:rgba(255,255,255,.5); }
.lb-caption a { color:rgba(255,255,255,.6); text-decoration:underline; }
.lb-close {
  position:absolute; top:-40px; right:0;
  background:none; border:none; color:white; font-size:1.8rem;
  cursor:pointer; opacity:.7; transition:opacity .2s; line-height:1;
}
.lb-close:hover { opacity:1; }
.lb-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  color:white; width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s; font-size:1.1rem;
}
.lb-nav:hover { background:rgba(255,255,255,.2); }
.lb-prev { right:calc(100% + 14px); }
.lb-next { left:calc(100% + 14px); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero { grid-template-columns:1fr; }
  .hero-right { height:55vw; }
  .hero-left { padding:60px 5% 50px; }
  .section { padding:64px 5%; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .about-bento,.contact-grid,.why-grid { grid-template-columns:1fr; }
  .service-row { grid-template-columns:1fr; gap:8px; }
  .service-num { display:none; }
  .nav-links { display:none; }
  .nav-actions { display:none; }
  .footer-top { flex-direction:column; gap:30px; }
  .footer-bottom { flex-direction:column; gap:10px; }
  .footer-certs-row { flex-wrap:wrap; }
  .zoom-icon { opacity:1; }
  .process-box { position:static; }
  .form-row { grid-template-columns:1fr; }
  .contact-form { padding:32px 24px; }
  .why-grid { gap:40px; }
}
@media(max-width:600px) {
  .hero-left { padding:48px 5% 40px; }
  .section { padding:52px 5%; }
  .products-grid { grid-template-columns:1fr 1fr; }
  .lb-prev,.lb-next { display:none; }
  .hero-cta { flex-direction:column; align-items:flex-start; gap:12px; }
  .credits-section { overflow-x:auto; }
  .credits-table { min-width:540px; }
  .contact-form { padding:24px 18px; }
}

/* ── FLOAT NAV MENU ── */
.float-menu {
  position:fixed; bottom:28px; left:28px; z-index:500;
  display:flex; flex-direction:column; align-items:flex-start;
}
.float-menu-btn {
  width:54px; height:54px; border-radius:50%;
  background:var(--charcoal); border:none; cursor:pointer;
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:5px; flex-shrink:0;
  box-shadow:0 4px 18px rgba(28,28,28,.28);
  transition:transform .2s, background .2s;
}
.float-menu-btn:hover { transform:scale(1.08); background:var(--accent); }
.float-menu-btn:focus { outline:3px solid var(--accent); outline-offset:2px; }
.float-menu-btn .bar {
  width:20px; height:2px; background:white;
  border-radius:2px; display:block;
  transition:transform .25s, opacity .25s;
}
.float-menu.open .float-menu-btn { background:var(--accent); }
.float-menu.open .float-menu-btn .bar:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.float-menu.open .float-menu-btn .bar:nth-child(2) { opacity:0; transform:scaleX(0); }
.float-menu.open .float-menu-btn .bar:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.float-menu-items {
  display:flex; flex-direction:column; gap:7px;
  margin-bottom:10px; pointer-events:none;
  opacity:0; transform:translateY(12px);
  transition:opacity .22s ease, transform .22s ease;
}
.float-menu.open .float-menu-items {
  pointer-events:all; opacity:1; transform:translateY(0);
}
.float-menu-item {
  background:var(--charcoal); color:white;
  text-decoration:none; font-family:'IBM Plex Sans',sans-serif;
  font-size:.78rem; font-weight:500; letter-spacing:.4px;
  padding:8px 18px; border-radius:100px; white-space:nowrap;
  box-shadow:0 2px 10px rgba(0,0,0,.2);
  transition:background .15s, transform .15s;
}
.float-menu-item:hover { background:var(--accent); transform:translateX(3px); }
.float-menu-item:focus { outline:3px solid var(--accent); outline-offset:2px; }

/* ── GDPR NOTICE ── */
.form-gdpr-notice {
  font-size:.74rem; color:var(--light); line-height:1.75;
  margin-top:16px; padding-top:14px;
  border-top:1px solid var(--border);
}
.form-gdpr-notice a { color:var(--teal); text-decoration:underline; }

/* ── FOOTER LEGAL DISCLAIMER ── */
.footer-disclaimer {
  font-size:.72rem; color:rgba(255,255,255,.35); line-height:1.8;
  padding:14px 0; border-top:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
}
.footer-privacy-link { color:rgba(255,255,255,.45); text-decoration:underline; }
.footer-privacy-link:hover { color:rgba(255,255,255,.7); }
</style>
