/* ============================================================
   ADVITA — advitafashions.com
   Shared stylesheet. Edit colors here; they apply site-wide.
   ============================================================ */

:root {
  --green:       #1E3B1F;   /* forest green — main background */
  --green-line:  #2F5331;   /* borders on green */
  --green-soft:  #7FA382;   /* muted text on green */
  --cream:       #FBFAF7;   /* light sections / light text */
  --mint:        #DCE8DD;   /* body text on green */
  --amber:       #F39100;   /* buttons, accents */
  --amber-dark:  #DB8300;   /* button hover */
  --gold:        #F7AC3D;   /* numerals, highlights */
  --red:         #E5161F;   /* brand red */
  --ink:         #2A322A;   /* body text on cream */
  --stone:       #9B958A;   /* muted text on cream */
  --serif: 'Cormorant Garamond', 'Mukta', serif;
  --sans:  'Mukta', sans-serif;
  --script:'Great Vibes', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--green);
  color: var(--mint);
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; }

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

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* subtle warm glow at page bottom */
body::after {
  content: "";
  position: fixed; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(to top, rgba(245,180,72,0.09) 0%, rgba(245,180,72,0.025) 55%, rgba(245,180,72,0) 100%);
  pointer-events: none; z-index: 1;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30,59,31,0.55);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(127,163,130,0.28);
  box-shadow: 0 6px 24px rgba(22,40,26,0.15);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: inline-flex; flex-direction: column; gap: 5px; }
.brand img { height: 38px; width: auto; display: block; }
.brand .underline { height: 2px; width: 100%; background: var(--red); border-radius: 2px; }
.nav-group { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 15px; color: var(--mint); padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); border-bottom-color: var(--amber); font-weight: 600; }
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--green-line); border-radius: 999px; padding: 3px;
}
.lang-toggle a, .lang-toggle span {
  padding: 4px 12px; border-radius: 999px;
  font-weight: 600; font-size: 13px; color: var(--mint);
}
.lang-toggle .current { background: var(--amber); color: var(--green); }
.lang-toggle a:hover { color: var(--cream); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-weight: 600; font-size: 15px; color: var(--cream);
  background: var(--amber); padding: 15px 32px; border-radius: 4px;
  border: 0; cursor: pointer; transition: background .15s ease;
}
.btn:hover { background: var(--amber-dark); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 580px; overflow: hidden;
  padding-top: 78px; padding-bottom: 64px;
}
.hero-img {
  position: absolute; top: 0; right: 0; bottom: 0; width: 66%; z-index: 0;
}
.hero-img img {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 100%; width: auto; max-width: none; display: block;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 22%, rgba(0,0,0,0.4) 42%, rgba(0,0,0,0.82) 58%, #000 72%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 22%, rgba(0,0,0,0.4) 42%, rgba(0,0,0,0.82) 58%, #000 72%);
}
.hero-text { position: relative; z-index: 1; max-width: 640px; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 7vw, 84px); line-height: 1.04;
  color: var(--cream); text-shadow: 0 2px 26px rgba(15,28,16,0.55);
}
.hero .sub {
  font-weight: 300; font-size: 18px; line-height: 1.62;
  color: var(--mint); max-width: 440px; margin: 26px 0 36px;
  text-shadow: 0 1px 14px rgba(15,28,16,0.55);
}
.hero .cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero .note { font-weight: 500; font-size: 14px; color: var(--mint); }

/* ---------- light sections ---------- */
.section-light { background: var(--cream); color: var(--ink); }
.section-light h2 { color: var(--green); }

h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 4.6vw, 44px); line-height: 1;
}

.eyebrow {
  font-weight: 600; font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
}

/* ---------- carousel (What we offer) ---------- */
.offer { padding: 74px 0; }
.offer .wrap h2 { margin-bottom: 38px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee .track {
  display: flex; width: max-content;
  animation: marquee 42s linear infinite;
}
/* one track holds the card set twice; sliding by exactly half loops seamlessly */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* When the OS asks for reduced motion (accessibility setting / battery saver),
   stop the auto-scroll and show a normal swipeable horizontal strip instead. */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none; mask-image: none;
    padding-bottom: 10px;
  }
  .marquee .track { animation: none; padding-left: 32px; padding-right: 32px; }
  .card.dup { display: none; }
}
.card { flex: 0 0 320px; width: 320px; margin-right: 28px; }
.card .frame {
  height: 480px; border-radius: 4px; overflow: hidden; position: relative;
  background: repeating-linear-gradient(135deg, #EFEBE3 0 14px, #E6E1D8 14px 28px);
}
.card .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .name {
  font-family: var(--serif); font-weight: 600; font-size: 26px;
  color: var(--green); margin: 16px 0 4px;
}
.card .sub { font-weight: 300; font-size: 14px; color: var(--stone); }
.card .overlay-title {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  text-align: center; width: 80%;
  font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.15;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(15,28,16,0.85), 0 1px 3px rgba(15,28,16,0.9);
}

/* ---------- why / values ---------- */
.values { padding: 64px 0; }
.values h2 { margin-bottom: 42px; }
.values.on-green h2 { color: var(--cream); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; }
.value-item .num { font-family: var(--serif); font-size: 34px; color: var(--gold); }
.section-light .value-item .num { color: var(--amber); }
.value-item h3 {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  margin: 8px 0 8px; color: var(--cream);
}
.section-light .value-item h3 { color: var(--green); }
.value-item p { font-weight: 300; font-size: 14.5px; line-height: 1.6; }

/* ---------- partner CTA ---------- */
.partner { padding: 84px 0; text-align: center; }
.partner h2 { font-size: clamp(32px, 5vw, 50px); }
.partner p {
  font-weight: 300; font-size: 17px; line-height: 1.62;
  max-width: 560px; margin: 16px auto 32px;
}

/* ---------- about ---------- */
.page-head { padding-top: 78px; padding-bottom: 56px; }
.page-head h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 6vw, 58px); line-height: 1.06;
  color: var(--cream); max-width: 760px;
}
.about-body { padding-top: 56px; padding-bottom: 64px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-body .photo { border-radius: 5px; overflow: hidden; }
.about-body .photo img { width: 100%; height: auto; display: block; }
.about-body p { font-weight: 300; font-size: 18px; line-height: 1.7; margin-bottom: 20px; }
.about-body p:last-child { margin-bottom: 0; }

.stats { padding: 56px 0 64px; }
.stats h2 { color: var(--cream); margin-bottom: 40px; }
.stats .grid-3 { gap: 28px; }
.stat { text-align: center; padding: 16px; }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: 52px; color: var(--amber); line-height: 1; }
.stat .label { font-weight: 400; font-size: 15px; color: var(--mint); margin-top: 8px; }

/* ---------- contact ---------- */
.contact { padding-top: 78px; padding-bottom: 64px; }
.contact .grid-2 { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 6vw, 52px); line-height: 1.04; color: var(--cream);
}
.contact .sub {
  font-weight: 300; font-size: 17px; line-height: 1.62;
  color: var(--mint); margin: 18px 0 34px; max-width: 380px;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-details .item { padding: 6px 0; }
.contact-details .label {
  font-weight: 600; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 3px;
}
.contact-details .value { font-weight: 400; font-size: 17px; color: var(--cream); }
.contact-details a.value:hover { color: var(--gold); }

.form-card {
  background: rgba(251,250,247,0.62);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px; padding: 40px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.20);
  color: var(--ink);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .field .label {
  display: block; font-weight: 600; font-size: 13px;
  color: var(--ink); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.12); border-radius: 5px;
  padding: 13px 15px; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.field input::placeholder, .field textarea::placeholder { color: var(--stone); opacity: 1; }
.field textarea { height: 110px; resize: none; }
#adv_gst { text-transform: uppercase; }

.role-switch {
  display: flex; gap: 6px; background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; padding: 4px;
}
.role-switch button {
  flex: 1; text-align: center; padding: 10px 12px; border-radius: 4px;
  cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 14px;
  background: transparent; color: var(--ink); border: 0;
}
.role-switch button.on { background: var(--amber); color: var(--green); }

/* field order — business (default) */
.f-role   { grid-column: span 2; order: 0; }
.f-biz    { grid-column: span 2; order: 1; }
.f-gst    { order: 2; }
.f-phone  { order: 3; }
.f-person { order: 4; }
.f-state  { order: 5; }
.f-pin    { order: 6; }
.f-email  { order: 7; }
.f-req    { grid-column: span 2; order: 8; }
.f-send   { grid-column: span 2; order: 99; }
.f-send .btn { display: block; width: 100%; text-align: center; }

/* field order — individual */
.form-grid.individual .f-biz, .form-grid.individual .f-gst { display: none; }
.form-grid.individual .f-person { grid-column: span 2; order: 1; }
.form-grid.individual .f-state  { order: 2; }
.form-grid.individual .f-pin    { order: 3; }
.form-grid.individual .f-phone  { order: 4; }
.form-grid.individual .f-email  { order: 5; }

/* ---------- FAQ ---------- */
.faq-head { max-width: 820px; margin: 0 auto; padding: 78px 32px 24px; text-align: center; }
.faq-head h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 6vw, 54px); line-height: 1.04; color: var(--green);
}
.faq-head .sub { font-weight: 300; font-size: 17px; color: var(--stone); margin-top: 12px; }

.notice { max-width: 820px; margin: 0 auto; padding: 6px 32px 8px; }
.notice-box {
  background: #F8DEDF; border: 1.5px solid var(--red); border-radius: 8px;
  padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start;
}
.notice-box .mark {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px;
  background: var(--red); color: var(--cream);
  font-weight: 700; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.notice-box h2 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: #A32D2D; margin-bottom: 6px; }
.notice-box p { font-weight: 400; font-size: 15px; line-height: 1.6; color: var(--ink); }

.faq-list { max-width: 820px; margin: 0 auto; padding: 24px 32px 60px; }
.faq-list details { border-bottom: 1px solid #DDD8CF; padding: 24px 6px; }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--green);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--sans); font-weight: 400; font-size: 26px;
  color: var(--amber); line-height: 1; transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { border-bottom: 2px solid var(--red); padding-bottom: 8px; }
.faq-list details p {
  font-weight: 300; font-size: 16.5px; line-height: 1.62;
  color: var(--ink); margin-top: 14px; max-width: 680px;
}
.faq-foot { max-width: 820px; margin: 0 auto; padding: 10px 32px 80px; text-align: center; }
.faq-foot p { font-weight: 300; font-size: 17px; color: var(--ink); margin-bottom: 22px; }

/* ---------- footer ---------- */
.site-footer { background: var(--green); padding: 54px 0 40px; border-top: 1px solid var(--green-line); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 560px; }
.footer-brand img { height: 66px; width: auto; display: block; }
.footer-brand .underline { height: 3px; background: var(--red); border-radius: 2px; margin-top: 10px; }
.footer-brand .tagline {
  font-family: var(--script); font-size: 21px; line-height: 1.1;
  color: var(--red); margin-top: 12px; white-space: nowrap;
}
.footer-brand .desc { font-weight: 400; font-size: 14px; line-height: 1.6; color: var(--green-soft); margin-top: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 13px; align-items: flex-end; list-style: none; }
.footer-nav a { font-size: 14px; color: var(--mint); }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--green-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--green-soft);
}

/* ---------- accessibility ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .grid-2, .contact .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field, .form-grid [class^="f-"] { grid-column: auto !important; }
}
@media (max-width: 760px) {
  .hero { min-height: 470px; padding-top: 16px; padding-bottom: 30px; }
  .hero-text {
    display: flex; flex-direction: column; justify-content: center;
    min-height: 410px; width: 66%; max-width: none;
  }
  .hero-img { width: 86%; }
  .hero-img img {
    position: absolute; inset: 0; top: 0; transform: none;
    width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 22%, rgba(0,0,0,0.55) 44%, rgba(0,0,0,0.9) 62%, #000 76%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 22%, rgba(0,0,0,0.55) 44%, rgba(0,0,0,0.9) 62%, #000 76%);
  }
  .hero h1 { font-size: 33px; }
  .form-card { padding: 22px; }
  .footer-nav { align-items: flex-start; }
  .card { flex: 0 0 244px; width: 244px; margin-right: 18px; }
  .card .frame { height: auto; aspect-ratio: 2 / 3; }
  .card .name { font-size: 21px; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .nav { flex-wrap: wrap; row-gap: 12px; }
  .nav-group { width: 100%; gap: 16px; }
  .nav-links { gap: 16px; }
  .lang-toggle { margin-left: auto; }
  .card { flex: 0 0 215px; width: 215px; }
  .card .name { font-size: 19px; }
  .faq-list summary { font-size: 20px; }
}
@media (min-width: 1440px) { .wrap { max-width: 1320px; } }
@media (min-width: 1680px) { .wrap { max-width: 1480px; } .hero { min-height: 660px; } }
@media (min-width: 2000px) { .wrap { max-width: 1660px; } }

/* "And much more" card — image has transparent edges, so no placeholder pattern behind it */
.card .frame-plain,
.card .frame:has(img[src*="and-much-more"]) { background: none; }

