/* Common CSS for Amolik Website */

:root {
  --ink: #15130f;
  --ink-2: #1d1a14;
  --ink-3: #242019;
  --ivory: #f6f1e6;
  --ivory-dim: #eae2d0;
  --gold: #c6a15b;
  --gold-bright: #e4c384;
  --gold-deep: #8c6d34;
  --stone: #a79c89;
}

* {
  border-color: rgba(0,0,0,0.1);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

/* Eyebrow component */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center {
  justify-content: center;
}

/* Container */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}

section.tight {
  padding: 80px 0;
}

.center {
  text-align: center;
}

/* Section head */
.section-head {
  max-width: 640px;
}

.section-head.mx-auto {
  margin: 0 auto;
}

.section-head h2 {
  font-size: 40px;
  margin-top: 16px;
  line-height: 1.15;
  color: #fff;
}

.section-head p {
  font-size: 14.5px;
  color: var(--stone);
  margin-top: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* Buttons */
.btn-gold {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  padding: 14px 30px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(246,241,230,0.35);
  color: var(--ivory);
  padding: 13px 28px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-ghost.light {
  border-color: rgba(21,19,15,0.3);
  color: var(--ink);
}

/* Top bar */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(198,161,91,0.14);
  font-size: 11.5px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 56px;
  color: var(--stone);
}

.topbar .social {
  display: flex;
  gap: 14px;
}

.topbar .social a {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(198,161,91,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .social svg {
  width: 10px;
  height: 10px;
  fill: var(--gold);
}

/* Header */
header.main {
  background: rgba(21,19,15,0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(198,161,91,0.14);
}

header.main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.logo .mark span {
  transform: rotate(-45deg);
  font-family: 'Cormorant Garamond';
  color: var(--gold);
  font-size: 19px;
}

.logo b {
  font-family: 'Cormorant Garamond';
  font-size: 20px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

nav.links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

nav.links a {
  color: var(--ivory-dim);
  position: relative;
  padding-bottom: 4px;
}

nav.links a.active {
  color: var(--gold-bright);
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

nav.links a:hover::after,
nav.links a.active::after {
  transform: scaleX(1);
}

/* Breadcrumb */
.crumb {
  background: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid rgba(198,161,91,0.14);
}

.crumb .wrap {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--stone);
  display: flex;
  gap: 10px;
  align-items: center;
}

.crumb a:hover {
  color: var(--gold);
}

.crumb .sep {
  opacity: 0.5;
}

.crumb .cur {
  color: var(--gold-bright);
}

/* Small interior hero */
.hero-small {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(198,161,91,0.14);
}

.hero-small img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero-small .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,19,15,0.5) 0%, var(--ink-2) 92%);
}

.hero-small .content {
  position: relative;
  z-index: 2;
}

.hero-small h1 {
  font-size: 56px;
  margin-top: 16px;
  line-height: 1.05;
  color: #fff;
}

.hero-small p {
  font-size: 15px;
  color: var(--stone);
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.8;
}

/* Card grids */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(198,161,91,0.22);
  border-left: 1px solid rgba(198,161,91,0.22);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(198,161,91,0.22);
  border-left: 1px solid rgba(198,161,91,0.22);
}

.info-card {
  padding: 44px 32px;
  border: 1px solid rgba(198,161,91,0.22);
  border-bottom: 1px solid rgba(198,161,91,0.22);
  transition: 0.3s;
}

.info-card:hover {
  background: var(--ink-2);
}

.info-card .ic {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
}

.info-card .ic svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.1;
}

.info-card h4 {
  font-family: 'Cormorant Garamond';
  font-size: 20px;
  color: var(--gold-bright);
  font-weight: 500;
}

.info-card p {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.75;
  margin-top: 12px;
  font-weight: 300;
}

/* FAQ accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-top: 54px;
}

.faq-item {
  border-bottom: 1px solid rgba(198,161,91,0.14);
  padding: 20px 0;
  cursor: pointer;
}

.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14.5px;
  color: var(--ivory);
}

.faq-item .q .plus {
  color: var(--gold);
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
  flex-shrink: 0;
}

.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item .a p {
  font-size: 13px;
  color: var(--stone);
  padding-top: 14px;
  line-height: 1.8;
  max-width: 480px;
}

.faq-item.open .a {
  max-height: 200px;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.cta-banner img {
  width: 100%;
  object-fit: cover;
}

.cta-banner .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(21,19,15,0.92) 20%, rgba(21,19,15,0.4) 90%);
}

.cta-banner .wrap {
  width: 100%;
}

.cta-banner h2 {
  font-size: 42px;
  max-width: 560px;
  line-height: 1.15;
  color: #fff;
}

.cta-banner p {
  color: var(--stone);
  margin-top: 14px;
  font-size: 14.5px;
}

.cta-banner .row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--ink);
  padding-top: 80px;
  border-top: 1px solid rgba(198,161,91,0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(198,161,91,0.14);
}

.footer-grid h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-grid li {
  margin-bottom: 11px;
  font-size: 12.5px;
  color: var(--stone);
}

.footer-grid li a:hover {
  color: var(--gold-bright);
}

.footer-about p {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.85;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(198,161,91,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.03em;
  flex-wrap: wrap;
  gap: 10px;
}

/* Animations */
.marquee-track {
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .wrap {
    padding: 0 26px;
  }
  
  .topbar .wrap {
    padding: 10px 26px;
  }
  
  header.main .wrap {
    padding: 16px 26px;
  }
  
  nav.links {
    display: none;
  }
  
  .hero-small h1 {
    font-size: 40px;
  }
  
  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
}

.story-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:70px; align-items:center;}
.story-copy p{font-size:14.5px; line-height:1.95; color:var(--stone); margin-top:16px; font-weight:300;}
.story-media{position:relative;}
.story-media .frame{position:absolute; inset:-16px; border:1px solid var(--gold); z-index:0;}
.story-media img{position:relative; z-index:1; width:100%; height:460px; object-fit:cover;}
.story-media .tag{position:absolute; z-index:2; left:-16px; bottom:32px; background:var(--ink-3); border:1px solid rgba(198,161,91,0.22); padding:18px 26px; max-width:220px;}
.story-media .tag p{font-family:'Cormorant Garamond'; font-style:italic; font-size:17px; color:var(--gold-bright); line-height:1.4;}

.mv-grid{display:grid; grid-template-columns:1fr 1fr; gap:2px;}
.mv-card{background:var(--ink-2); padding:52px 50px; border:1px solid rgba(198,161,91,0.14);}
.mv-card .roman{font-family:'Cormorant Garamond'; font-style:italic; color:var(--gold-deep); font-size:16px;}
.mv-card h3{font-size:28px; margin-top:14px;}
.mv-card p{font-size:14px; color:var(--stone); line-height:1.9; margin-top:16px; font-weight:300;}

.timeline{margin-top:70px; position:relative;}
.timeline::before{content:""; position:absolute; left:110px; top:8px; bottom:8px; width:1px; background:rgba(198,161,91,0.22);}
.t-row{display:grid; grid-template-columns:110px 40px 1fr; gap:0; padding:30px 0;}
.t-row .yr{font-family:'Cormorant Garamond'; font-size:26px; color:var(--gold-bright); font-style:italic;}
.t-row .dot-col{display:flex; justify-content:center;}
.t-row .dot{width:11px; height:11px; border-radius:50%; background:var(--ink-2); border:1px solid var(--gold); margin-top:8px;}
.t-row .body h4{font-size:19px; font-family:'Cormorant Garamond'; font-weight:500;color: #fff;}
.t-row .body p{font-size:13px; color:var(--stone); margin-top:6px; line-height:1.7; max-width:520px;}

.team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px; margin-top:56px;}
.team-card{position:relative; overflow:hidden;}
.team-card .img{height:300px; overflow:hidden;}
.team-card img{width:100%; height:100%; object-fit:cover; filter:grayscale(30%) brightness(0.85); transition:.5s;}
.team-card:hover img{filter:grayscale(0%) brightness(0.95); transform:scale(1.04);}
.team-card .body{padding:20px 4px;}
.team-card h4{font-family:'Cormorant Garamond'; font-size:20px;color: #fff;}
.team-card span{font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); display:block; margin-top:6px;}

.recognition{background:var(--ink); position:relative;}
.recognition::before{content:""; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 20%, rgba(198,161,91,0.08), transparent 55%), radial-gradient(ellipse at 85% 80%, rgba(198,161,91,0.07), transparent 50%);}
.recognition .inner{position:relative; z-index:1; display:grid; grid-template-columns:0.9fr 1px 1.1fr; gap:64px; align-items:center;}
.recognition .divider{width:1px; height:200px; background:linear-gradient(180deg, transparent, var(--gold), transparent);}
.recognition h2{font-size:40px; margin-top:18px; line-height:1.15;color:#fff}
.recognition p{margin-top:18px; color:var(--stone); font-size:14px; line-height:1.85; max-width:400px;}
.awards{display:flex; flex-direction:column;}
.award{display:flex; gap:20px; align-items:flex-start; padding:20px 0; border-bottom:1px solid rgba(198,161,91,0.14);}
.award:first-child{padding-top:0;}
.award:last-child{border-bottom:none;}
.award .ic{width:28px; height:28px; flex-shrink:0;}
.award .ic svg{width:100%; height:100%; stroke:var(--gold); fill:none; stroke-width:1;}
.award h4{font-family:'Cormorant Garamond'; font-size:19px; font-weight:500;color: #fff;}
.award span{font-size:11.5px; color:var(--stone); display:block; margin-top:4px;}

@media (max-width:1100px){
  .story-grid{grid-template-columns:1fr; gap:50px;}
  .mv-grid{grid-template-columns:1fr;}
  .timeline::before{left:20px;}
  .t-row{grid-template-columns:40px 1fr; gap:10px;}
  .t-row .yr{grid-column:1/3; font-size:22px; margin-bottom:6px;}
  .t-row .dot-col{justify-content:flex-start;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .recognition .inner{grid-template-columns:1fr; gap:40px;}
  .recognition .divider{display:none;}
}

.mv-card h3{
  color:#fff;
}
