/* Ekram Tour & Travels — site.css
   Vanilla CSS, no build step. Palette from the brand: gold camel, navy ink, cream paper. */

@font-face { font-family: "Cinzel"; src: url("../fonts/cinzel.woff2") format("woff2"); font-weight: 400 900; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans.woff2") format("woff2"); font-weight: 100 1000; font-display: swap; }
@font-face { font-family: "Noto Sans Bengali"; src: url("../fonts/notobengali.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --ink: #101C33;
  --ink-2: #17274A;
  --ink-3: #0A1526;
  --ink-soft: #46536E;
  --gold: #A9762A;
  --gold-2: #D9AE5C;
  --gold-3: #F0DDB6;
  --gold-soft: rgba(169, 118, 42, .12);
  --cream: #FBF8F2;
  --cream-2: #F4EEE3;
  --paper: #FFFFFF;
  --line: rgba(16, 28, 51, .12);
  --line-2: rgba(16, 28, 51, .07);
  --wa: #1EBE5D;
  --wa-dark: #128C41;
  --plum: #5B2A86;
  --rose: #C4457C;
  --blue: #2E4A9E;
  --display: "Cinzel", "Trajan Pro", Georgia, serif;
  --body: "DM Sans", "Noto Sans Bengali", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bn: "Noto Sans Bengali", "Kohinoor Bangla", "Bangla MN", "Nirmala UI", "Vrinda", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1180px;
  --bar-h: 74px;
  --shadow: 0 26px 50px -34px rgba(16, 28, 51, .55);
  --shadow-lg: 0 40px 80px -46px rgba(16, 28, 51, .7);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}
html[lang="bn"] body { font-family: var(--bn); line-height: 1.75; }
html[lang="bn"] h1, html[lang="bn"] h2, html[lang="bn"] h3, html[lang="bn"] .dep__m { font-family: var(--bn); font-weight: 700; letter-spacing: 0; }
html[lang="bn"] h1 { font-size: clamp(1.95rem, 4.2vw, 3.15rem); line-height: 1.3; }
html[lang="bn"] .eyebrow, html[lang="bn"] .pill, html[lang="bn"] .rail__t { letter-spacing: 0; text-transform: none; }
html[lang="bn"] .eyebrow { font-size: .95rem; }
.lang select option[lang="bn"] { font-family: var(--bn); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.14; margin: 0; letter-spacing: .01em; }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.4rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; text-decoration: none; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(16,28,51,.35); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #241703; }
.btn--gold:hover { filter: brightness(1.06); }
.btn--line { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--line:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: .62rem 1.05rem; font-size: .92rem; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.top__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--bar-h); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 56px; height: auto; }
.wordmark {
  font-family: var(--display); font-weight: 700; font-size: 1.02rem; letter-spacing: .07em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--plum) 0%, var(--rose) 45%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.15;
}
.nav { display: flex; align-items: center; gap: 1.1rem; }
.nav__links { display: flex; gap: 1.15rem; }
.nav__links a { text-decoration: none; font-weight: 500; font-size: .94rem; color: var(--ink-soft); }
.nav__links a:hover { color: var(--gold); }
.lang { position: relative; display: inline-flex; align-items: center; }
.lang select {
  appearance: none; -webkit-appearance: none;
  border: 1.5px solid rgba(16,28,51,.3); border-radius: 999px; background: transparent; color: var(--ink);
  font: inherit; font-weight: 600; font-size: .88rem;
  padding: .48rem 2.1rem .48rem .95rem; cursor: pointer; line-height: 1.2;
}
.lang select:hover { border-color: var(--gold); }
.lang__caret { position: absolute; right: .75rem; width: 15px; height: 15px; color: var(--ink-soft); pointer-events: none; }
@media (max-width: 900px) { .nav__links { display: none; } .nav { gap: .6rem; } }
@media (max-width: 860px) {
  .brand { gap: .5rem; }
  .brand img { width: 42px; }
  .wordmark { font-size: .78rem; }
  .top .btn--wa span { display: none; }
  .top .btn--wa { padding: .7rem .8rem; }
  .lang select { padding: .44rem 1.9rem .44rem .8rem; font-size: .84rem; }
}
@media (max-width: 640px) {
  .top .btn--wa { display: none; }          /* the fixed bottom bar already has WhatsApp + Chiama */
  .wordmark { font-size: .72rem; letter-spacing: .04em; }
  .lang select { padding: .5rem 1.9rem .5rem .8rem; min-height: 40px; }
}

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 72% 42%; }
/* Left-anchored panel: near-solid under the copy, then a long feather so the
   right two-fifths of the photo stays genuinely visible instead of grey-washed. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,14,28,.97) 0%, rgba(6,14,28,.95) 30%, rgba(6,14,28,.82) 46%, rgba(6,14,28,.42) 66%, rgba(6,14,28,.16) 85%, rgba(6,14,28,.08) 100%),
    linear-gradient(180deg, rgba(6,14,28,.5) 0%, rgba(6,14,28,0) 26%, rgba(6,14,28,0) 62%, rgba(6,14,28,.55) 100%);
}
@media (max-width: 860px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(6,14,28,.88) 0%, rgba(6,14,28,.74) 45%, rgba(6,14,28,.93) 100%); }
}
/* .hero__in used to carry .wrap as well, so narrowing it with max-width let
   .wrap's margin-inline:auto re-centre the copy in the middle of the page.
   The container (.wrap) and the text column (.hero__in) are now separate
   elements, so the column simply starts at the container's left edge. */
.hero__in {
  position: relative;
  padding: clamp(3.6rem, 8.5vw, 7rem) 0 clamp(3rem, 6vw, 4.6rem);
  max-width: 43rem;
}
.hero h1 { margin: 1.15rem 0 1.25rem; letter-spacing: 0; line-height: 1.06; font-size: clamp(2rem, 4vw, 3.05rem); }
.hero h1 em { font-style: normal; display: block; color: var(--gold-2); }
.hero .lead { font-size: clamp(1.02rem, 1.4vw, 1.1rem); color: rgba(255,255,255,.84); max-width: 34rem; }
.hero .cta { margin-top: 1.9rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0; }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; }
.hero .eyebrow { color: var(--gold-2); }
.cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.facts {
  display: flex; flex-wrap: wrap; gap: .55rem 1.8rem; margin: 1.9rem 0 0; padding: 1.25rem 0 0;
  list-style: none; border-top: 1px solid rgba(255,255,255,.2); font-size: .93rem; color: rgba(255,255,255,.82);
}
.facts li { display: inline-flex; align-items: center; gap: .5rem; }
.facts svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; }
@media (max-width: 640px) { .cta .btn { flex: 1 1 auto; justify-content: center; } }

/* ---------- partner rail ---------- */
.rail { background: var(--cream); border-bottom: 1px solid var(--line-2); padding: clamp(1.7rem, 3vw, 2.4rem) 0; }
.rail__t {
  text-align: center; font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 1.1rem;
}
.logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: .5rem; }
/* 17 brands at 2 columns makes a 9-row wall on a phone — go to 3 narrower tiles instead. */
@media (max-width: 700px) { .rail .logos { grid-template-columns: repeat(3, 1fr); } }
.logos--tight { display: flex; flex-wrap: wrap; gap: .5rem; }
.logos--tight .logo { flex: 1 1 96px; max-width: 150px; }
.logo {
  display: grid; place-items: center; height: 72px; padding: .7rem .8rem;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 12px;
}
.logo img { max-height: 27px; width: auto; max-width: 100%; object-fit: contain; }
/* optical sizing — square-ish marks need more height than long wordmarks */
.logo img[src*="saudia"], .logo img[src*="itabus"] { max-height: 46px; }
.logo img[src*="emirates"] { max-height: 44px; }
.logo img[src*="bkash"], .logo img[src*="ups"] { max-height: 42px; }
.logo img[src*="cargo"] { max-height: 40px; }
.logo img[src*="trenitalia"] { max-height: 38px; }
.logo img[src*="ria"] { max-height: 36px; }
.logo img[src*="nagad"], .logo img[src*="fedex"] { max-height: 34px; }
.logo img[src*="qatar"] { max-height: 34px; }
.sec--paper .logo { background: var(--cream); border-color: var(--line-2); }
.logo__txt { font-weight: 700; font-size: .82rem; letter-spacing: .02em; color: var(--ink-soft); text-align: center; line-height: 1.2; }

/* ---------- sections ---------- */
.sec { padding: clamp(3.2rem, 7vw, 5.8rem) 0; }
.sec--paper { background: var(--paper); }
.sec--cream { background: var(--cream-2); }
.sec--dark { background: var(--ink); color: #fff; }
.sec--dark .eyebrow { color: var(--gold-2); }
.sec--dark .sec__head p, .sec--dark .sec__p { color: rgba(255,255,255,.75); }
.sec--photo { position: relative; isolation: isolate; overflow: hidden; }
.sec--photo .sec__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
/* The Kaaba background was brightened for round 5, so the scrim has to carry more
   weight than before or the right-hand departure cards lose their text contrast. */
.sec--photo .sec__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(8,17,32,.96) 0%, rgba(8,17,32,.9) 45%, rgba(8,17,32,.74) 100%); }
@media (max-width: 860px) { .sec--photo .sec__scrim { background: linear-gradient(180deg, rgba(10,21,38,.95) 0%, rgba(10,21,38,.88) 100%); } }
.sec__head { max-width: 46rem; margin-bottom: clamp(1.8rem, 3vw, 2.8rem); }
.sec__head h2 { margin-top: .85rem; text-wrap: balance; }
.sec__head p { color: var(--ink-soft); margin-top: .9rem; font-size: 1.04rem; }
.sec__p { color: var(--ink-soft); margin-top: .9rem; font-size: 1.04rem; }

/* ornament divider */
.orn { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold); opacity: .55; }
.orn::before, .orn::after { content: ""; height: 1px; width: min(120px, 18vw); background: linear-gradient(90deg, transparent, currentColor); }
.orn::after { background: linear-gradient(270deg, transparent, currentColor); }
.orn svg { width: 16px; height: 16px; }

/* ---------- service cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid__t {
  margin: clamp(1.8rem, 3vw, 2.4rem) 0 .9rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 1100px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1040px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .grid, .grid--5, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid, .grid--5, .grid--3 { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .6rem;
  position: relative; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sec--paper .card { background: var(--cream); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(169,118,42,.45); }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); margin-bottom: .2rem;
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.08rem; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card__more { margin-top: auto; padding-top: .5rem; font-weight: 700; font-size: .88rem; color: var(--gold); }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.6rem, 4vw, 3.6rem); align-items: center; }
.split--flip .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__badge {
  position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .8rem; border-radius: 999px; background: rgba(10,21,38,.8); color: #fff;
  font-size: .78rem; font-weight: 600; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.split__badge svg { width: 15px; height: 15px; color: var(--gold-2); }

/* checklists */
.list { margin: 1.3rem 0 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.list--2 { grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; }
@media (max-width: 560px) { .list--2 { grid-template-columns: 1fr; } }
.list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-soft); font-size: .98rem; }
.list svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: .22rem; }
.sec--dark .list li { color: rgba(255,255,255,.82); }
.sec--dark .list svg { color: var(--gold-2); }

/* small chips */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.chips li { font-size: .85rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); background: var(--paper); }
.sec--dark .chips li { border-color: rgba(217,174,92,.4); color: var(--gold-3); background: transparent; }

/* ---------- umrah ---------- */
.umrah { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
@media (max-width: 1000px) { .umrah { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .umrah { grid-template-columns: repeat(2, 1fr); } }
.dep {
  background: rgba(10,21,38,.55); border: 1px solid rgba(217,174,92,.28); border-radius: var(--radius);
  padding: 1.15rem .9rem 1rem; text-align: center;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.dep__m { font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--gold-2); letter-spacing: .04em; }
.dep__y { font-size: .78rem; color: rgba(255,255,255,.55); }
.dep__d { margin-top: .55rem; font-size: .88rem; color: rgba(255,255,255,.85); }
.umrah__foot { margin-top: 1.7rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.umrah__foot p { color: rgba(255,255,255,.75); font-size: .95rem; max-width: 38rem; }

/* ---------- shop gallery ---------- */
.photos { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: auto auto; gap: .75rem; }
.photos img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 100%; box-shadow: var(--shadow); }
.photos__tall { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.photos img:not(.photos__tall) { aspect-ratio: 4 / 3; }

/* ---------- where ---------- */
.where { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); align-items: stretch; }
.where .box { display: flex; flex-direction: column; }
@media (max-width: 1000px) { .where { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .where { grid-template-columns: 1fr; } }
.box { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 1.5rem; }
.sec--cream .box { background: var(--paper); }
.box .cta { margin-top: auto; }
.box h3 { margin-bottom: .9rem; display: flex; align-items: center; gap: .7rem; font-size: 1.05rem; }
.box h3 svg { width: 21px; height: 21px; color: var(--gold); }
/* Coloured chips so "Dove siamo" isn't three identical cream boxes. */
.box__i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; flex: none; }
.box__i svg { width: 20px; height: 20px; color: #fff; }
.box__i--map { background: linear-gradient(160deg, var(--gold-2), var(--gold)); }
.box__i--time { background: linear-gradient(160deg, #4E6BC4, var(--blue)); }
.box__i--wa { background: linear-gradient(160deg, #3FD37C, var(--wa)); }
/* Dove siamo: keep the cream ground, but the cards were plain white and read flat.
   Each one is tinted to match its own chip, with a coloured hairline on top. */
#dove { background: linear-gradient(180deg, var(--cream-2) 0%, #F7EFE0 55%, var(--cream-2) 100%); }
#dove .box, #dove .social__c { position: relative; overflow: hidden; box-shadow: 0 18px 34px -30px rgba(16,28,51,.5); }
#dove .social__c::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: currentColor; opacity: .85;
}
/* Solid coloured header band on each card + a tinted body. Two earlier passes
   used soft tints and the client couldn't see any colour at all, so this is
   deliberately unmistakable. */
/* Keep the box's own horizontal padding so `.hours` (width:100%) still fits,
   and let only the h3 break out of it to become a full-bleed header band. */
#dove .where .box { padding: 0 1.5rem 1.5rem; }
#dove .box h3 {
  margin: 0 -1.5rem 1.2rem; padding: 1rem 1.35rem; border-radius: 15px 15px 0 0;
  color: #fff; font-size: 1.08rem;
}
#dove .box h3 svg { color: #fff; }
#dove .box__i { width: 32px; height: 32px; border-radius: 10px; background: rgba(255,255,255,.22) !important; }
#dove .where .box:nth-child(1) { background: #FCF2DC; border-color: var(--gold); color: var(--gold); }
#dove .where .box:nth-child(1) h3 { background: linear-gradient(120deg, var(--gold-2), var(--gold)); }
#dove .where .box:nth-child(2) { background: #E7EDFB; border-color: var(--blue); color: var(--blue); }
#dove .where .box:nth-child(2) h3 { background: linear-gradient(120deg, #4E6BC4, var(--blue)); }
#dove .where .box:nth-child(3) { background: #DFF3E7; border-color: var(--wa-dark); color: var(--wa-dark); }
#dove .where .box:nth-child(3) h3 { background: linear-gradient(120deg, #3FD37C, var(--wa-dark)); }
#dove .social__c--wa { background: #DFF3E7; border-color: var(--wa-dark); color: var(--wa-dark); }
#dove .social__c--fb { background: #E7EDFB; border-color: #1877F2; color: #1877F2; }
#dove .social__c--map { background: #FCF2DC; border-color: var(--gold); color: var(--gold); }
#dove .social__c { border-width: 1.5px; }
#dove .hours td { border-bottom-color: rgba(16,28,51,.13); }
/* the tint sets `color` for the hairline, so put the text colours back */
#dove .box h3, #dove .addr, #dove .hours td, #dove .contacts a, #dove .social__t strong { color: var(--ink); }
#dove .addr small, #dove .note, #dove .contacts small, #dove .social__t small { color: var(--ink-soft); }
#dove .hours .closed { color: #A63D3D; }
#dove .contacts svg { color: var(--gold); }
.hours { width: 100%; border-collapse: collapse; font-size: .96rem; }
.hours td { padding: .5rem 0; border-bottom: 1px solid var(--line-2); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours tr:last-child td { border-bottom: 0; }
.hours tr.today td { font-weight: 700; color: var(--gold); }
.hours .closed { color: #A63D3D; }
.contacts { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.contacts li { display: flex; align-items: center; gap: .8rem; }
.contacts a { text-decoration: none; font-weight: 600; }
.contacts a:hover { text-decoration: underline; }
.contacts svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.contacts small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .85rem; }
.addr { font-size: 1.12rem; font-weight: 600; line-height: 1.45; }
.addr small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .92rem; margin-top: .25rem; }
.note { font-size: .85rem; color: var(--ink-soft); margin-top: .9rem; }

/* ---------- chi siamo badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.badges li { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .95rem; }
.badges svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ---------- sub-heading inside a section ---------- */
.sub {
  margin: clamp(1.9rem, 3vw, 2.5rem) 0 1rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.sub:first-of-type { margin-top: 0; }
.sec--dark .sub { color: var(--gold-2); }
html[lang="bn"] .sub, html[lang="bn"] .grid__t { letter-spacing: 0; text-transform: none; font-size: .98rem; }

/* ---------- smaller secondary cards ---------- */
.card--sm { padding: 1.15rem 1.15rem 1rem; }
.card--sm h3 { font-size: 1rem; }
.card--sm p { font-size: .9rem; }

/* ---------- perfume product tiles ---------- */
.prods { display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem; }
.prod { margin: 0; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: .7rem .7rem .85rem; text-align: center; }
.prod img { aspect-ratio: 1 / 1; object-fit: contain; width: 100%; mix-blend-mode: multiply; }
.prod b { display: block; margin-top: .5rem; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.prod small { display: block; font-size: .82rem; color: var(--ink-soft); line-height: 1.35; }
@media (max-width: 1040px) { .prods { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .prods { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .prods { grid-template-columns: repeat(2, 1fr); } }

/* ---------- social / contact cards ---------- */
.social { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(1.4rem, 3vw, 2rem); }
.social__c {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social__c:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(169,118,42,.45); }
.social__i { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; flex: none; color: #fff; }
.social__i svg { width: 24px; height: 24px; }
.social__c--wa .social__i { background: var(--wa); }
.social__c--fb .social__i { background: #1877F2; }
.social__c--map .social__i { background: var(--ink); }
.social__t strong { display: block; font-size: 1rem; }
.social__t small { display: block; margin-top: .15rem; font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 900px) { .social { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.foot { background: var(--ink-3); color: rgba(255,255,255,.78); padding: 2.6rem 0 calc(2rem + var(--bottom-bar, 0px)); font-size: .92rem; }
.foot__in { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.2rem; }
.foot .brand .wordmark { background: linear-gradient(90deg, #D9B8F2, #F6A9CB, #A8BDF5); -webkit-background-clip: text; background-clip: text; }
.foot a { color: #fff; }
.foot__links { display: flex; flex-wrap: wrap; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }
.foot__legal { width: 100%; margin-top: .5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; font-size: .8rem; color: rgba(255,255,255,.55); }
.foot__legal a { color: rgba(255,255,255,.75); }
.foot__by { display: inline-flex; align-items: center; gap: .6rem; }
.foot__by img { width: 88px; height: auto; opacity: .95; }
.foot__by a { display: inline-flex; line-height: 0; }
.foot__by a:hover img { opacity: 1; }
@media (max-width: 640px) { .foot__by img { width: 78px; } }

/* ---------- mobile bottom bar ---------- */
.bar { display: none; }
@media (max-width: 860px) {
  :root { --bottom-bar: 64px; }
  .bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(251,248,242,.96); border-top: 1px solid var(--line);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .bar .btn { justify-content: center; width: 100%; }
  body { padding-bottom: var(--bottom-bar); }
}

/* focus */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.sec--dark :focus-visible, .hero :focus-visible { outline-color: var(--gold-2); }

/* privacy page */
.prose { max-width: 46rem; padding: 3rem 0 4rem; }
.prose h1 { margin-bottom: 1rem; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: .8rem; }
