/* =============================================
   components.css — Reusable UI components
   ============================================= */

/* ── Marquee ── */
.marquee {
  background: var(--dp);
  border-top: 1px solid rgba(201,169,110,.14);
  border-bottom: 1px solid rgba(201,169,110,.14);
  padding: 14px 0; overflow: hidden; display: flex;
}
.mq-track  { display: flex; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.mq-item   { font-family: var(--font-serif); font-size: .98rem; color: var(--gl); letter-spacing: .15em; font-style: italic; padding: 0 30px; flex-shrink: 0; }
.mq-dot    { color: var(--gd); margin: 0 4px; }

/* ── Hero Logo Ring ── */
.hero-logo-ring {
  width: 96px; height: 96px;
  border: 1px solid rgba(201,169,110,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  animation: glowing 3s ease-in-out infinite;
}
.hero-logo-ring img { width: 66px; height: 66px; object-fit: contain; }

/* ── Stats Row ── */
.stats-row { display: flex; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.stat-n    { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--gd); line-height: 1; }
.stat-l    { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--wg); margin-top: 7px; }

/* ── Service Cards (home 6-grid) ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,169,110,.15); }
.svc-card { background: var(--cr); padding: 48px 38px; position: relative; overflow: hidden; transition: background var(--t-normal); }
.svc-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gd); transition: width .5s ease; }
.svc-card:hover         { background: var(--ch); }
.svc-card:hover::before { width: 100%; }
.svc-icon               { font-size: 1.5rem; margin-bottom: 18px; display: block; }
.svc-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; transition: color var(--t-normal); }
.svc-card:hover h3 { color: var(--gl); }
.svc-card p  { font-size: .78rem; line-height: 1.78; color: var(--wg); font-weight: 300; transition: color var(--t-normal); }
.svc-card:hover p  { color: rgba(250,246,240,.52); }

/* ── Testimonials ── */
.testi-q   { font-family: var(--font-serif); font-size: 1.45rem; font-style: italic; color: var(--iv); line-height: 1.65; font-weight: 300; max-width: 650px; margin: 32px auto 18px; }
.testi-a   { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gd); }
.tdots     { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.tdot      { width: 5px; height: 5px; border-radius: 50%; background: rgba(201,169,110,.28); cursor: none; border: none; padding: 0; transition: background var(--t-fast), transform var(--t-fast); }
.tdot.on   { background: var(--gd); transform: scale(1.5); }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--dp); }
.gal-item { aspect-ratio: 3/4; overflow: hidden; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(.9); transition: transform .6s ease, filter .6s; }
.gal-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.05); }

/* ── Values Grid ── */
.vals-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(201,169,110,.12); }
.val-card  { background: var(--iv); padding: 48px 28px; text-align: center; transition: background var(--t-fast); }
.val-card:hover { background: var(--cr); }
.val-n { font-family: var(--font-serif); font-size: 3rem; color: var(--gl); font-weight: 300; line-height: 1; margin-bottom: 14px; }
.val-card h3 { font-family: var(--font-serif); font-size: 1.18rem; font-weight: 400; margin-bottom: 10px; }
.val-card p  { font-size: .74rem; color: var(--wg); line-height: 1.75; font-weight: 300; }

/* ── Team Grid ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.team-img  { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 16px; }
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(25%); transition: filter .5s, transform .6s; }
.team-card:hover .team-img img { filter: grayscale(0); transform: scale(1.04); }
.team-card h3   { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 5px; }
.team-role      { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gd); }

/* ── Package Cards ── */
.pkg { border: 1px solid rgba(201,169,110,.22); margin-bottom: 24px; display: grid; grid-template-columns: 270px 1fr; background: var(--cr); position: relative; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.pkg:hover   { border-color: var(--gd); box-shadow: 0 14px 44px rgba(201,169,110,.1); }
.pkg.feat    { background: var(--ch); border-color: var(--gd); }
.pkg-coming  { border-style: dashed; opacity: .68; }
.pkg-coming:hover { opacity: 1; }
.pkg-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gd); color: var(--dp);
  font-size: .52rem; letter-spacing: .3em; text-transform: uppercase;
  padding: 5px 18px; white-space: nowrap; z-index: 2;
}
.pkg-lft { padding: 44px 36px; border-right: 1px solid rgba(201,169,110,.18); display: flex; flex-direction: column; }
.pkg.feat .pkg-lft { border-right-color: rgba(201,169,110,.15); }
.pkg-num  { width: 50px; height: 50px; border: 1px solid rgba(201,169,110,.35); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--wg); margin-bottom: 14px; }
.pkg.feat .pkg-num { border-color: var(--gd); color: var(--gd); }
.pkg-tier { font-size: .58rem; letter-spacing: .44em; text-transform: uppercase; color: var(--gd); display: block; margin-bottom: 10px; }
.pkg-price { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; color: var(--ch); line-height: 1; margin-bottom: 6px; }
.pkg.feat .pkg-price { color: var(--cr); }
.pkg-price-soon { font-size: 1.7rem !important; color: var(--wg) !important; }
.pkg-sub  { font-size: .66rem; color: var(--wg); margin-bottom: 20px; font-weight: 300; }
.pkg.feat .pkg-sub  { color: rgba(250,246,240,.45); }
.pkg-desc { font-size: .8rem; color: var(--wg); line-height: 1.84; font-weight: 300; flex: 1; margin-bottom: 24px; }
.pkg.feat .pkg-desc { color: rgba(250,246,240,.58); }
.pkg-btn  { padding: 11px 22px; border: 1px solid var(--gd); color: var(--ch); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; cursor: none; background: transparent; transition: all var(--t-fast); text-align: center; }
.pkg-btn:hover { background: var(--gd); color: var(--dp); }
.pkg.feat .pkg-btn { color: var(--cr); border-color: rgba(201,169,110,.45); }
.pkg-rgt  { padding: 44px 40px; }
.pkg-cat  { font-size: .54rem; letter-spacing: .34em; text-transform: uppercase; color: var(--wg); display: block; margin: 20px 0 12px; opacity: .8; }
.pkg-cat:first-child { margin-top: 0; }
.pkg.feat .pkg-cat  { color: rgba(250,246,240,.42); }
.pkg-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pkg-item  { display: flex; gap: 10px; align-items: flex-start; }
.pkg-dot   { color: var(--gd); font-size: .44rem; margin-top: 5px; flex-shrink: 0; }
.pkg-item strong { display: block; font-family: var(--font-serif); font-size: .98rem; font-weight: 400; color: var(--ch); margin-bottom: 2px; }
.pkg.feat .pkg-item strong { color: var(--cr); }
.pkg-item p { font-size: .7rem; color: var(--wg); line-height: 1.55; font-weight: 300; margin: 0; }
.pkg.feat .pkg-item p { color: rgba(250,246,240,.44); }
.pkg-coming-star { font-family: var(--font-serif); font-size: 3.5rem; color: var(--gl); line-height: 1; margin-bottom: 14px; text-align: center; }
.pkg-coming-text { font-size: .82rem; color: var(--wg); font-weight: 300; line-height: 1.82; max-width: 260px; text-align: center; margin: 0 auto; }

/* ── CTA Strip ── */
.cta-strip   { background: var(--ch); padding: 72px 60px; text-align: center; }
.cta-strip p { font-size: .88rem; color: rgba(250,246,240,.55); max-width: 420px; margin: 16px auto 32px; font-weight: 300; line-height: 1.88; }

/* ── FAQ Accordion ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq { border-bottom: 1px solid rgba(201,169,110,.22); padding: 22px 0; cursor: none; }
.faq:first-of-type { border-top: 1px solid rgba(201,169,110,.22); }
.faq-q { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { color: var(--gd); font-size: .9rem; transition: transform var(--t-fast); flex-shrink: 0; }
.faq.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: .82rem; color: var(--wg); line-height: 1.84; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .36s ease, padding .3s; }
.faq.open .faq-a { max-height: 120px; padding-top: 12px; }

/* ── Job Listings ── */
.job-row { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(201,169,110,.2); transition: padding-left var(--t-fast); }
.job-row:hover { padding-left: 14px; }
.job-t { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; }
.job-d { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gd); margin-top: 4px; }
.job-tp { font-size: .7rem; color: var(--wg); font-weight: 300; text-align: right; }
.job-apply { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ch); border: none; border-bottom: 1px solid var(--ch); background: none; cursor: none; padding-bottom: 1px; transition: color var(--t-fast), border-color var(--t-fast); }
.job-apply:hover { color: var(--gd); border-color: var(--gd); }

/* ── Perks Grid ── */
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.perk       { padding: 24px; border-left: 2px solid var(--gd); background: var(--iv); }
.perk h4    { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; margin-bottom: 7px; }
.perk p     { font-size: .75rem; color: var(--wg); line-height: 1.65; font-weight: 300; }

/* ── Info Cards ── */
.icard    { background: var(--iv); padding: 26px; margin-bottom: 14px; border-left: 2px solid var(--gd); }
.icard h4 { font-family: var(--font-serif); font-size: 1.04rem; font-weight: 400; margin-bottom: 7px; }
.icard p  { font-size: .77rem; color: var(--wg); line-height: 1.68; font-weight: 300; }

/* ── Forms ── */
.f-group   { margin-bottom: 22px; }
.f-label   { display: block; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ch); margin-bottom: 8px; }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 12px 15px;
  background: transparent; border: 1px solid rgba(201,169,110,.35);
  color: var(--ch); font-family: var(--font-sans);
  font-size: .86rem; font-weight: 300;
  outline: none; appearance: none; border-radius: 0;
  transition: border-color var(--t-fast);
}
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: var(--gd); }
.f-textarea { resize: vertical; min-height: 104px; }
.f-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-sub    { width: 100%; padding: 16px; background: var(--ch); color: var(--cr); border: none; cursor: none; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; transition: background var(--t-fast); }
.btn-sub:hover { background: var(--gk); }

/* ── Contact Items ── */
.c-item { padding: 26px 0; border-bottom: 1px solid var(--iv); }
.c-item:first-child { border-top: 1px solid var(--iv); }
.c-lbl  { font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gd); margin-bottom: 10px; display: block; }
.c-val  { font-family: var(--font-serif); font-size: 1.22rem; font-weight: 300; color: var(--ch); }
.c-val a { color: inherit; transition: color var(--t-fast); }
.c-val a:hover { color: var(--gd); }
.hr-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--iv); font-size: .82rem; color: var(--wg); font-weight: 300; }
