/* =====================================================
   PT. ASSIK — Static Landing Page Styles
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --bg-2: #0A0B10;
  --bg-3: #11131A;
  --fg: #F9FAFB;
  --dim: #A1A1AA;
  --muted: #71717A;
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.20);
  --brand-blue: #1E5BC6;
  --accent: #B8E33A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1280px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--accent); color: #050505; }

/* ---------- Containers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section { padding: 144px 0; }
}

.section-dark { background: var(--bg); }
.section-darker { background: var(--bg-2); }

.chapter-num {
  position: absolute;
  top: 48px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .chapter-num { right: 48px; font-size: 200px; }
}

/* ---------- Typography helpers ---------- */
.display, .display-md, .display-sm {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
}
.display { font-size: clamp(48px, 8vw, 128px); }
.display-md { font-size: clamp(40px, 6vw, 96px); }
.display-sm { font-size: clamp(28px, 3.5vw, 40px); }

.accent { color: var(--accent); font-style: italic; }
.accent-text { color: var(--accent); }
.white { color: #fff; }
.dim { color: var(--muted); }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.dot-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.prose p {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  word-wrap: break-word;
}
@media (min-width: 768px) { .prose p { font-size: 18px; } }
.prose p + p { margin-top: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-sm { padding: 12px 24px; }
.btn-lg { padding: 20px 40px; }
.btn-accent { background: var(--accent); color: #050505; }
.btn-accent:hover { background: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}
.site-header.is-scrolled {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { padding: 0 48px; } }

.brand { display: flex; align-items: center; gap: 16px; }
.brand-icon {
  height: 48px;
  width: 48px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.brand-icon img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.brand-text { display: none; line-height: 1.1; }
@media (min-width: 640px) { .brand-text { display: block; } }
.brand-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-desktop { display: none; align-items: center; gap: 40px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dim);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.btn { color: #050505; }

.menu-toggle { display: flex; color: #fff; padding: 8px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.nav-mobile {
  display: none;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile a.btn { color: #050505; align-self: stretch; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 96px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4)),
    linear-gradient(to right, rgba(0,0,0,0.8), transparent 50%);
}

.hero-toplabel {
  position: absolute;
  top: 128px;
  left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero-toplabel { left: 48px; right: 48px; }
}
.hero-toplabel .label-left .dot-label { color: var(--accent); margin: 0; }
.hero-toplabel .label-right { display: none; text-align: right; }
@media (min-width: 768px) { .hero-toplabel .label-right { display: block; } }
.mt-2 { margin-top: 8px; }

.hero-content { width: 100%; }
.hero-content > div { max-width: 1000px; }
.hero-content .eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-lede {
  margin-top: 40px;
  max-width: 560px;
  font-size: 18px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-lede { font-size: 20px; } }
.hero-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.scroll-indicator:hover { color: var(--accent); }
.scroll-indicator i { width: 16px; height: 16px; animation: bounce 1.6s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Story ---------- */
.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); }
}
.gap-lg { gap: 48px; }
@media (min-width: 1024px) { .gap-lg { gap: 80px; } }
.align-start { align-items: flex-start; }
.span-7, .span-5 { grid-column: 1 / -1; min-width: 0; }
@media (min-width: 1024px) {
  .span-7 { grid-column: span 7; }
  .span-5 { grid-column: span 5; }
}

.display-md { margin-bottom: 48px; }
@media (max-width: 767px) { .display-md { margin-bottom: 32px; } }

.story-image .aspect-portrait {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (min-width: 768px) { .story-image .aspect-portrait { aspect-ratio: 4 / 5; } }
.story-image .aspect-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 1024px) { .story-image { margin-top: 96px; } }

.caption-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.caption-row.small { font-size: 10px; letter-spacing: 0.25em; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
@media (min-width: 1024px) { .vm-grid { grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 144px; } }

.vm-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.mission-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mission-list li {
  display: flex; gap: 20px;
  color: var(--dim);
  font-weight: 300;
}
.mission-list .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  padding-top: 4px;
}
.mission-list li > span:last-child {
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }
}
.section-head h2 { margin-bottom: 0; }
.section-head-desc {
  max-width: 420px;
  color: var(--dim);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 3fr 5fr 4fr;
    gap: 40px;
  }
}

.product-tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .product-tabs { flex-direction: column; }
}
.product-tab {
  text-align: left;
  padding: 20px;
  border: 1px solid var(--line);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  min-width: 200px;
}
@media (min-width: 1024px) {
  .product-tab { white-space: normal; flex-shrink: 1; min-width: 0; }
}
.product-tab:hover { border-color: var(--line-2); }
.product-tab.is-active {
  border-color: var(--accent);
  background: rgba(184, 227, 58, 0.06);
}
.tab-num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.tab-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dim);
}
.product-tab.is-active .tab-name { color: #fff; }
.tab-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.product-image-wrap { display: flex; flex-direction: column; }
.product-image {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) { .product-image { aspect-ratio: 4 / 5; } }
.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-detail { display: flex; flex-direction: column; justify-content: center; }
.product-detail .display-sm { margin-top: 12px; }
.product-detail .prose { margin-top: 24px; }
.product-detail .prose p { font-size: 16px; }
.spec-list {
  list-style: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--fg);
}
.spec-list .plus {
  color: var(--accent);
  font-family: monospace;
  font-size: 12px;
}

.link-arrow {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: gap 0.25s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow i { width: 16px; height: 16px; }

.other-fish-block {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.other-fish-block .dot-label { margin-bottom: 40px; }
.other-fish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .other-fish-grid { grid-template-columns: repeat(3, 1fr); } }
.other-fish-grid > div {
  background: var(--bg-2);
  padding: 40px;
  transition: background 0.25s;
}
.other-fish-grid > div:hover { background: var(--bg-3); }
.of-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
}
.of-desc { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- Facilities ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) { .bento { grid-template-columns: repeat(12, 1fr); gap: 16px; } }
.bento-tile {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .bento-tile { grid-column: span 12; } }
.bento-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bento-tile:hover img { transform: scale(1.05); }
.bento-wide { aspect-ratio: 16 / 10; }
@media (min-width: 768px) {
  .bento-wide { grid-column: span 8; aspect-ratio: 16 / 9; }
}
.bento-tall { aspect-ratio: 4 / 5; }
@media (min-width: 768px) { .bento-tall { grid-column: span 4; aspect-ratio: auto; } }
.bento-full { aspect-ratio: 21 / 9; }
.bento-cap {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.cap-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.cap-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  margin-top: 4px;
}

.pillars {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: var(--bg);
  padding: 32px;
  transition: background 0.25s;
}
@media (min-width: 768px) { .pillar { padding: 40px; } }
.pillar:hover { background: var(--bg-2); }
.pillar i {
  color: var(--accent);
  width: 28px; height: 28px;
  stroke-width: 1.5;
}
.p-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  margin-top: 24px;
}
.p-desc { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Marquee */
.marquee {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,0.3);
  animation: marquee 40s linear infinite;
}
@media (min-width: 768px) { .marquee-track { font-size: 48px; } }
.marquee-track .dia { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Contact ---------- */
.section-contact {
  background-image:
    linear-gradient(rgba(5,5,5,0.85), rgba(5,5,5,0.95)),
    url('https://static.prod-images.emergentagent.com/jobs/cf663ec2-dd21-4dd3-94fa-1811a5adf9b6/images/bd20e8b71ae249fe7d3f1692f9946d988e4ffe631572d8f9949f031e3efa65f7.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 7fr 5fr; gap: 80px; }
}

.contact-form { display: flex; flex-direction: column; gap: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form label > span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form label > span em { color: var(--accent); font-style: normal; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  outline: none;
  padding: 12px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  font-family: inherit;
  resize: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form select option { background: var(--bg-2); color: #fff; }
.contact-form textarea::placeholder { color: #52525B; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 8px; }

.contact-success {
  border: 1px solid rgba(184,227,58,0.4);
  background: rgba(184,227,58,0.04);
  padding: 56px;
}
.contact-success i {
  color: var(--accent);
  width: 40px; height: 40px;
  stroke-width: 1.2;
}
.contact-success h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  margin-top: 24px;
}
.contact-success p {
  margin-top: 16px;
  color: var(--dim);
  max-width: 420px;
  line-height: 1.7;
}
.contact-success a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.contact-success .link-arrow { margin-top: 32px; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-side {
    border-left: 1px solid var(--line);
    padding-left: 64px;
  }
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  transition: color 0.2s;
  margin-top: 12px;
}
.email-link:hover { color: var(--accent); }

.office .dot-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.office .dot-label i { width: 12px; height: 12px; }
.office p { color: var(--dim); line-height: 1.7; font-weight: 300; }

.hours {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hours p { margin-top: 12px; font-weight: 300; }
.hours .dim { font-size: 14px; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer-brand .brand-text { display: block; }
.footer-tagline {
  margin-top: 24px;
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.footer-links a { color: var(--dim); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-email {
  display: inline-block;
  color: var(--dim);
  margin-top: 20px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--accent); }
.footer-addr { margin-top: 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #52525B;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ---------- Reveal animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 0.9s ease-out both; }

.in-view { animation: fadeUp 0.8s ease-out both; }

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
  max-width: 360px;
  pointer-events: auto;
  animation: fadeUp 0.3s ease-out;
}
.toast.success { border-color: rgba(184, 227, 58, 0.4); }
.toast.error { border-color: rgba(239, 68, 68, 0.4); }
