/* ============================================================
   Arabian Middle East Traders — Design System
   Palette: ink #0E0E0F, parchment #F7F3EC, brass #C8A24A,
            oxblood #8B2E2E, olive #3D4A45, white #FFFFFF
   Display: Cormorant Garamond | Body/Utility: Inter
   ============================================================ */

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

:root{
  --ink:#0E0E0F;
  --ink-soft:#1B1B1C;
  --parchment:#F7F3EC;
  --parchment-deep:#EFE8D9;
  --brass:#C8A24A;
  --brass-light:#E0C171;
  --oxblood:#8B2E2E;
  --olive:#3D4A45;
  --white:#FFFFFF;
  --line:rgba(14,14,15,0.12);
  --line-on-dark:rgba(247,243,236,0.16);
  --shadow:0 20px 50px rgba(14,14,15,0.12);

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:1180px;
  --section-pad:7rem;
}

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

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 2.5rem;
}

:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--font-body);
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--brass);
  display:inline-flex;
  align-items:center;
  gap:0.7rem;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--brass);
  display:inline-block;
}
.eyebrow.center{ justify-content:center; }

/* ---------- Lattice divider (signature element) ---------- */
.lattice-divider{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:3.2rem 0;
  gap:0;
}
.lattice-divider svg{ width:240px; height:28px; }
.lattice-divider .lt-line{ stroke:var(--brass); stroke-width:1; }
.lattice-divider .lt-diamond{ fill:none; stroke:var(--brass); stroke-width:1.2; }
.lattice-divider .lt-dot{ fill:var(--brass); }

/* ============== HEADER / NAV ============== */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(14,14,15,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-on-dark);
  transition:background 0.3s ease;
}
.nav-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 2.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:84px;
}
.brand{
  display:flex;
  align-items:center;
  gap:0.85rem;
  color:var(--parchment);
}
.brand img{ height:48px; width:auto; filter:brightness(0) invert(1); }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text .name{
  font-family:var(--font-display);
  font-size:1.18rem;
  font-weight:600;
  letter-spacing:0.02em;
}
.brand-text .tag{
  font-size:0.6rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--brass-light);
  margin-top:0.15rem;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:2.6rem;
}
.nav-links a{
  color:var(--parchment);
  font-size:0.86rem;
  font-weight:500;
  letter-spacing:0.02em;
  position:relative;
  padding:0.4rem 0;
  opacity:0.85;
  transition:opacity 0.2s ease;
}
.nav-links a:hover{ opacity:1; }
.nav-links a.active{ opacity:1; }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:1.5px;
  background:var(--brass);
}
.nav-cta{
  border:1px solid var(--brass);
  color:var(--brass-light) !important;
  padding:0.6rem 1.3rem;
  border-radius:2px;
  font-size:0.78rem !important;
  letter-spacing:0.06em;
  text-transform:uppercase;
  opacity:1 !important;
  transition:background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover{ background:var(--brass); color:var(--ink) !important; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:0.5rem;
}
.nav-toggle span{
  width:24px; height:1.5px;
  background:var(--parchment);
}

/* ============== HERO ============== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:var(--ink);
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0.34;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,14,15,0.55) 0%, rgba(14,14,15,0.78) 55%, var(--ink) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:9rem 2.5rem 6rem;
  width:100%;
}
.hero-content .eyebrow{ color:var(--brass-light); margin-bottom:1.8rem; }
.hero-content .eyebrow::before{ background:var(--brass-light); }
.hero h1{
  color:var(--parchment);
  font-size:clamp(2.6rem, 5.4vw, 4.6rem);
  line-height:1.08;
  max-width:820px;
  font-weight:600;
}
.hero h1 em{
  font-style:italic;
  color:var(--brass-light);
  font-weight:500;
}
.hero-sub{
  color:rgba(247,243,236,0.78);
  font-size:1.08rem;
  max-width:560px;
  margin-top:1.8rem;
  line-height:1.75;
}
.hero-actions{
  display:flex;
  gap:1.1rem;
  margin-top:2.8rem;
  flex-wrap:wrap;
}
.hero-stats{
  display:flex;
  gap:3rem;
  margin-top:4.5rem;
  flex-wrap:wrap;
}
.hero-stats .stat-num{
  font-family:var(--font-display);
  font-size:2.2rem;
  color:var(--brass-light);
  font-weight:600;
}
.hero-stats .stat-label{
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(247,243,236,0.6);
  margin-top:0.3rem;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  padding:0.95rem 2.1rem;
  font-size:0.84rem;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  border-radius:2px;
  transition:all 0.25s ease;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn-primary{
  background:var(--brass);
  color:var(--ink);
}
.btn-primary:hover{ background:var(--brass-light); transform:translateY(-1px); }
.btn-outline{
  border-color:var(--line-on-dark);
  color:var(--parchment);
}
.btn-outline:hover{ border-color:var(--brass); color:var(--brass-light); }
.btn-dark{
  background:var(--ink);
  color:var(--parchment);
}
.btn-dark:hover{ background:var(--olive); }
.btn-ox{
  background:var(--oxblood);
  color:var(--parchment);
}
.btn-ox:hover{ background:#a13838; }

/* ============== SECTION SCAFFOLDING ============== */
section{ position:relative; }
.section-pad{ padding:var(--section-pad) 0; }
.section-head{
  max-width:680px;
  margin-bottom:3.5rem;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size:clamp(2rem, 3.4vw, 2.9rem);
  margin-top:1.1rem;
  line-height:1.18;
}
.section-head p{
  margin-top:1.2rem;
  color:rgba(14,14,15,0.66);
  font-size:1.02rem;
  line-height:1.75;
}
.section-dark{ background:var(--ink); color:var(--parchment); }
.section-dark .section-head p{ color:rgba(247,243,236,0.65); }
.section-olive{ background:var(--olive); color:var(--parchment); }

/* ============== INTRO / SPLIT ============== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4.5rem;
  align-items:center;
}
.split-media{
  position:relative;
}
.split-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:2px;
}
.split-media .frame{
  position:absolute;
  top:22px; left:22px;
  width:100%; height:520px;
  border:1px solid var(--brass);
  border-radius:2px;
  z-index:-1;
}
.split-body .eyebrow{ margin-bottom:1.4rem; }
.split-body h2{ font-size:clamp(1.9rem,3vw,2.6rem); line-height:1.2; }
.split-body p{
  margin-top:1.4rem;
  color:rgba(14,14,15,0.68);
  line-height:1.8;
}
.split-list{ margin-top:1.8rem; display:flex; flex-direction:column; gap:0.9rem; }
.split-list li{
  display:flex;
  align-items:flex-start;
  gap:0.8rem;
  font-size:0.95rem;
  color:rgba(14,14,15,0.78);
}
.split-list .mark{
  width:6px; height:6px;
  border-radius:50%;
  background:var(--brass);
  margin-top:0.55rem;
  flex-shrink:0;
}

/* ============== SERVICE CARDS ============== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.8rem;
}
.cards-grid.two{ grid-template-columns:repeat(2,1fr); }
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  padding:2.6rem 2.2rem;
  border-radius:2px;
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.service-card .num{
  font-family:var(--font-display);
  font-size:0.9rem;
  color:var(--brass);
  letter-spacing:0.05em;
}
.service-card h3{
  font-size:1.32rem;
  margin-top:1rem;
  line-height:1.3;
}
.service-card p{
  margin-top:0.9rem;
  color:rgba(14,14,15,0.62);
  font-size:0.93rem;
  line-height:1.7;
}
.service-card .icon-mark{
  width:46px; height:46px;
  border:1px solid var(--brass);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.4rem;
  color:var(--brass);
}
.service-card.dark{
  background:var(--ink-soft);
  border-color:rgba(247,243,236,0.1);
}
.service-card.dark h3{ color:var(--parchment); }
.service-card.dark p{ color:rgba(247,243,236,0.6); }
.service-card.dark .num{ color:var(--brass-light); }

/* ============== BAND / CTA STRIP ============== */
.cta-strip{
  background:var(--brass);
  color:var(--ink);
  padding:4rem 0;
}
.cta-strip .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1.6rem;
}
.cta-strip h3{
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  max-width:560px;
}
.cta-strip .btn-dark:hover{ background:#000; }

/* ============== STATS BAR ============== */
.stats-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line-on-dark);
  border-bottom:1px solid var(--line-on-dark);
}
.stats-bar .stat{
  padding:2.8rem 1rem;
  text-align:center;
  border-right:1px solid var(--line-on-dark);
}
.stats-bar .stat:last-child{ border-right:none; }
.stats-bar .stat-num{
  font-family:var(--font-display);
  font-size:2.6rem;
  color:var(--brass-light);
}
.stats-bar .stat-label{
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(247,243,236,0.6);
  margin-top:0.5rem;
}

/* ============== TIMELINE (about) ============== */
.timeline{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:1rem;
}
.timeline-item{
  display:grid;
  grid-template-columns:120px 1px 1fr;
  gap:2.2rem;
  padding:2.4rem 0;
  border-bottom:1px solid var(--line);
}
.timeline-item:first-child{ padding-top:0; }
.timeline-item .year{
  font-family:var(--font-display);
  font-size:1.6rem;
  color:var(--brass);
  font-weight:600;
}
.timeline-item .rail{ background:var(--line); }
.timeline-item h4{ font-size:1.2rem; }
.timeline-item p{ margin-top:0.6rem; color:rgba(14,14,15,0.65); font-size:0.94rem; line-height:1.7; }

/* ============== VALUES GRID ============== */
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
}
.value-item{ text-align:left; }
.value-item .vletter{
  font-family:var(--font-display);
  font-size:2.6rem;
  color:var(--brass);
  line-height:1;
}
.value-item h4{ margin-top:1rem; font-size:1.1rem; }
.value-item p{ margin-top:0.6rem; font-size:0.88rem; color:rgba(14,14,15,0.6); line-height:1.65; }

/* ============== TEAM / LEADERSHIP ============== */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.2rem;
}
.team-card{ text-align:left; }
.team-card .photo{
  width:100%; height:340px;
  background:var(--parchment-deep);
  border:1px solid var(--line);
  border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.4rem;
  overflow:hidden;
}
.team-card .photo svg{ width:64px; height:64px; color:var(--brass); opacity:0.5; }
.team-card h4{ font-size:1.18rem; }
.team-card .role{
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brass);
  margin-top:0.3rem;
}
.team-card p.bio{ margin-top:0.8rem; font-size:0.88rem; color:rgba(14,14,15,0.6); line-height:1.6; }

/* ============== QUOTE BLOCK ============== */
.quote-block{
  text-align:center;
  max-width:760px;
  margin:0 auto;
}
.quote-block .mark{
  font-family:var(--font-display);
  font-size:4rem;
  color:var(--brass);
  line-height:1;
}
.quote-block blockquote{
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(1.4rem,2.4vw,1.9rem);
  line-height:1.5;
  color:var(--parchment);
}
.quote-block .attribution{
  margin-top:1.6rem;
  font-size:0.82rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brass-light);
}

/* ============== MENU / RESTAURANT CARDS ============== */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.6rem;
}
.menu-card{
  display:flex;
  gap:1.6rem;
  padding:1.8rem;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:2px;
}
.menu-card .thumb{
  width:90px; height:90px;
  flex-shrink:0;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--brass);
}
.menu-info{ flex:1; }
.menu-top{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; }
.menu-top h3{ font-size:1rem; margin:0; }
.price{ font-weight:600; color:var(--brass); font-size:0.95rem; }
.menu-card h3{ font-size:1.1rem; }
.menu-card p{ margin-top:0.5rem; font-size:0.86rem; color:rgba(14,14,15,0.6); line-height:1.6; }

/* ============== GALLERY ============== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:200px;
  gap:0.8rem;
}
.gallery-grid img{
  width:100%; height:100%;
  object-fit:cover;
  border-radius:2px;
}
.gallery-grid .tall{ grid-row:span 2; }
.gallery-grid .wide{ grid-column:span 2; }

/* ============== CONTACT ============== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
}
.contact-info-list{ display:flex; flex-direction:column; gap:2.2rem; margin-top:2.2rem; }
.contact-info-item{ display:flex; gap:1.2rem; }
.contact-info-item .ic{
  width:44px; height:44px;
  border:1px solid var(--brass);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color:var(--brass);
}
.contact-info-item h4{ font-size:1rem; font-family:var(--font-body); font-weight:600; }
.contact-info-item p{ margin-top:0.3rem; color:rgba(14,14,15,0.62); font-size:0.92rem; line-height:1.6; }

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  padding:2.8rem;
  border-radius:2px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.field{ margin-bottom:1.3rem; }
.field label{
  display:block;
  font-size:0.74rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(14,14,15,0.55);
  margin-bottom:0.5rem;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:0.85rem 1rem;
  border:1px solid var(--line);
  background:var(--parchment);
  font-family:var(--font-body);
  font-size:0.92rem;
  color:var(--ink);
  border-radius:2px;
  transition:border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--brass);
}
.field textarea{ resize:vertical; min-height:120px; }

.map-embed{
  width:100%;
  height:340px;
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  margin-top:2.2rem;
}
.map-embed iframe{ width:100%; height:100%; border:0; filter:grayscale(0.3); }

/* ============== FOOTER ============== */
.site-footer{
  background:var(--ink);
  color:rgba(247,243,236,0.7);
  padding:5rem 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.2fr;
  gap:3rem;
  padding-bottom:3.5rem;
  border-bottom:1px solid var(--line-on-dark);
}
.footer-brand .brand{ margin-bottom:1.2rem; }
.footer-brand p{ font-size:0.88rem; line-height:1.75; max-width:300px; color:rgba(247,243,236,0.55); }
.footer-col h5{
  font-family:var(--font-body);
  font-size:0.76rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--brass-light);
  margin-bottom:1.3rem;
}
.footer-col ul{ display:flex; flex-direction:column; gap:0.8rem; }
.footer-col a{ font-size:0.9rem; color:rgba(247,243,236,0.65); transition:color 0.2s ease; }
.footer-col a:hover{ color:var(--brass-light); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.8rem 0;
  font-size:0.8rem;
  color:rgba(247,243,236,0.45);
  flex-wrap:wrap;
  gap:1rem;
}
.social-row{ display:flex; gap:1rem; }
.social-row a{
  width:36px; height:36px;
  border:1px solid var(--line-on-dark);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(247,243,236,0.7);
  transition:border-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover{ border-color:var(--brass); color:var(--brass-light); }

/* ============== PAGE HEADER (inner pages) ============== */
.page-header{
  background:var(--ink);
  padding:11rem 0 4.5rem;
  position:relative;
  overflow:hidden;
}
.page-header .hero-bg{ opacity:0.22; }
.page-header-content{ position:relative; z-index:2; }
.breadcrumb{
  font-size:0.78rem;
  color:rgba(247,243,236,0.5);
  margin-top:1.2rem;
}
.breadcrumb a{ color:var(--brass-light); }
.page-header h1{
  color:var(--parchment);
  font-size:clamp(2.2rem,4.2vw,3.4rem);
}

/* ============== FLOATING WHATSAPP BUTTON ============== */
.wa-float{
  position:fixed;
  bottom:26px;
  right:26px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  z-index:999;
  color:#fff;
  transition:transform 0.2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; }

@media (max-width: 620px){
  .wa-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .wa-float svg{ width:26px; height:26px; }
}

/* ============== UTILS ============== */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px){
  :root{ --section-pad:4.5rem; }
  .nav-links{
    position:fixed;
    top:84px; left:0; right:0;
    background:var(--ink);
    flex-direction:column;
    align-items:flex-start;
    padding:2rem 2.5rem;
    gap:1.6rem;
    border-bottom:1px solid var(--line-on-dark);
    transform:translateY(-150%);
    transition:transform 0.3s ease;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-toggle{ display:flex; }
  .nav-cta{ align-self:flex-start; }

  .split{ grid-template-columns:1fr; gap:2.5rem; }
  .split-media .frame{ display:none; }
  .cards-grid{ grid-template-columns:repeat(2,1fr); }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .menu-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; gap:3rem; }
  .stats-bar{ grid-template-columns:repeat(2,1fr); }
  .stats-bar .stat:nth-child(2){ border-right:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:2.5rem; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .timeline-item{ grid-template-columns:80px 1px 1fr; gap:1.4rem; }
}

@media (max-width: 620px){
  .container{ padding:0 1.4rem; }
  .nav-wrap{ padding:0 1.4rem; }
  .cards-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .cta-strip .inner{ flex-direction:column; align-items:flex-start; }
  .gallery-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:140px; }
  .hero-stats{ gap:2rem; }
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}
