/* ===========================================================
   HotelTI: Design tokens & shared styles
   Light theme. Navy + gold brand, generous whitespace.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color tokens */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;

  --color-ink: #0f172a;       /* headings, primary text */
  --color-ink-muted: #475569; /* body copy */
  --color-ink-soft: #64748b;  /* labels, captions */

  --color-navy: #0f172a;
  --color-navy-2: #1e293b;

  --color-gold: #a16207;      /* accent text/icons, WCAG-safe on white */
  --color-gold-soft: #b8882a;
  --color-gold-light: #e8c56a;

  --color-cta-grad: linear-gradient(135deg, #b8882a, #e8c56a);
  --color-danger: #dc2626;

  /* Type */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);

  --max-width: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.container {
  max-width: var(--max-width);
  width: 92%;
  margin: 0 auto;
}

section { padding: var(--space-9) 0; }

@media (max-width: 720px) {
  section { padding: var(--space-7) 0; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.nav-logo img { height: 30px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle:hover { background: var(--color-bg-alt); }

.nav-toggle-icon.icon-close { display: none; }
.site-header.nav-open .nav-toggle-icon.icon-menu { display: none; }
.site-header.nav-open .nav-toggle-icon.icon-close { display: block; }

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  color: var(--color-ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--color-gold); background: #fbf3e2; }
.nav-links a.active { color: var(--color-gold); background: #fbf3e2; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-navy);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #1e293b; transform: translateY(-1px); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4);
    box-shadow: 0 16px 24px rgba(15, 23, 42, 0.08);
  }

  .site-header.nav-open .nav-menu { display: flex; }

  .nav-menu .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
  }

  .nav-menu .nav-links a { padding: 12px var(--space-3); }

  .nav-menu .nav-cta { justify-content: center; }
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fbf3e2;
  border: 1px solid #eed9ae;
  border-radius: var(--radius-pill);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--color-cta-grad);
  color: var(--color-navy);
  box-shadow: 0 10px 28px rgba(184, 136, 42, 0.28);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); }

.btn-secondary {
  background: #ffffff;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-navy); transform: translateY(-2px); }

.btn-dark {
  background: var(--color-navy);
  color: #fff;
}
.btn-dark:hover { background: #1e293b; transform: translateY(-2px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---------- Hero (full-bleed banner) ---------- */
.hero-banner {
  position: relative;
  padding: 0;
}

.hero-banner-media {
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  overflow: hidden;
}

.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.94) 88%, #fff 100%);
  pointer-events: none;
}

.hero-banner-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  z-index: 2;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-banner-badge svg { color: var(--color-gold-soft); flex-shrink: 0; }
.hero-banner-badge strong { display: block; color: var(--color-ink); font-size: 0.92rem; }
.hero-banner-badge span { display: block; color: var(--color-ink-soft); font-size: 0.78rem; }

.hero-banner-content {
  position: relative;
  z-index: 1;
  background: #fff;
  text-align: center;
  padding: 0 0 var(--space-9);
  margin-top: -1px;
}

.hero-banner-content .hero-eyebrow {
  margin: 0 auto var(--space-4);
  width: fit-content;
}

.hero-banner-content h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: var(--space-4);
}

.hero-banner-content h1 span { color: var(--color-gold-soft); }

.hero-banner-content .hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-ink-muted);
  max-width: 620px;
  margin: 0 auto var(--space-6);
}

.hero-banner-content .btn-row {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-banner-media { height: clamp(220px, 60vw, 360px); }
  .hero-banner-badge { left: var(--space-4); right: var(--space-4); bottom: var(--space-4); }
}

@media (max-width: 560px) {
  .hero-banner-badge { display: none; }
}

/* ---------- Cyvra strip ---------- */
.cyvra-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}

.cyvra-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: space-between;
}

.cyvra-strip p {
  color: var(--color-ink-muted);
  font-size: 0.98rem;
  max-width: 640px;
}

.cyvra-strip strong { color: var(--color-ink); }
.cyvra-strip a.inline-link { color: var(--color-gold); font-weight: 700; text-decoration: none; }
.cyvra-strip a.inline-link:hover { text-decoration: underline; }

/* ---------- Logo marquee ---------- */
.logo-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
  overflow: hidden;
  position: relative;
}

.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
}

.logo-strip::before { left: 0; background: linear-gradient(to right, var(--color-bg-alt), transparent); }
.logo-strip::after { right: 0; background: linear-gradient(to left, var(--color-bg-alt), transparent); }

.logo-strip-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-5);
}

.logo-track-wrap { overflow: hidden; }

.logo-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
  padding: 0 var(--space-6);
  animation: marquee 46s linear infinite;
}

.logo-track img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(0);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.logo-track img:hover { opacity: 0.8; }

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

@media (max-width: 640px) {
  .logo-strip::before, .logo-strip::after { width: 48px; }
  .logo-track { gap: 40px; padding: 0 var(--space-4); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ---------- Section header ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head .badge { margin-bottom: var(--space-4); }

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: var(--space-3);
}

.section-head p {
  color: var(--color-ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---------- Pillars / differentiators grid ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-top-color 0.25s ease;
}

.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-top-color: var(--color-gold-soft); }

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fdf6e8, #f3ddaa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-soft);
  margin-bottom: var(--space-4);
}

.pillar-card h3 {
  font-size: 1.02rem;
  margin-bottom: var(--space-2);
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, border-top-color 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #eed9ae;
  border-top-color: var(--color-gold);
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.service-card .card-link {
  color: var(--color-gold);
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .card-link svg { transition: transform 0.2s; }
.service-card:hover .card-link svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Gradient hover cards (services grid accent) ---------- */
.gradient-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.gradient-card::before,
.gradient-card::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -35%;
  width: 60%;
  height: 130%;
  border-radius: var(--radius-md);
  background: linear-gradient(315deg, var(--grad-from), var(--grad-to));
  transform: skewX(-15deg);
  transition: right 0.5s ease, width 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}

.gradient-card::before { z-index: 1; }

.gradient-card::after {
  z-index: 0;
  filter: blur(28px);
  opacity: 0.65;
}

.gradient-card:hover::before,
.gradient-card:hover::after {
  right: -10%;
  width: 95%;
  transform: skewX(0deg);
}

.gradient-card:hover::after { opacity: 0.85; }

.gradient-card .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--space-6) var(--space-5);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.5s ease;
}

.gradient-card:hover .card-content { background: rgba(255, 255, 255, 0.58); }

.gradient-card .icon-tile { background: rgba(255, 255, 255, 0.65); }

.contact-card.gradient-card .card-content {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-4);
}

.service-row.gradient-card .card-content {
  flex-direction: row;
  align-items: center;
  gap: var(--space-5);
  flex-grow: 1;
}

.service-row.gradient-card { padding: 0; }

@media (max-width: 640px) {
  .service-row.gradient-card .card-content { flex-wrap: wrap; padding: var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-card::before,
  .gradient-card::after,
  .gradient-card .card-content { transition: none; }
}

/* ---------- Section footer CTA ---------- */
.section-foot-cta {
  text-align: center;
  margin-top: var(--space-7);
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

.section-foot-cta a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: none;
}

.section-foot-cta a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto var(--space-6); }
.cta-band .btn-row { justify-content: center; }

.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.cta-band .btn-secondary:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.68);
  padding: var(--space-8) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.footer-brand img { height: 26px; }
.footer-brand span { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-gold-light); }

.footer-desc { font-size: 0.9rem; line-height: 1.65; max-width: 320px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: var(--space-5) 0 0;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}
.breadcrumb a { color: var(--color-ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: var(--color-ink); font-weight: 600; }

/* ---------- Page hero banner (inner pages) ---------- */
.page-hero-media {
  position: relative;
  width: 100%;
  height: clamp(200px, 30vw, 340px);
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.95) 85%, #fff 100%);
  pointer-events: none;
}

@media (max-width: 600px) {
  .page-hero-media { height: clamp(150px, 45vw, 220px); }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: var(--space-6) 0 var(--space-8);
}

.page-hero-media + .page-header {
  padding-top: 0;
  margin-top: -1px;
}

.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0;
}

.page-header .lead {
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  max-width: 680px;
  line-height: 1.7;
}

.page-header-title {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.page-header-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #fbf3e2;
  color: var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .page-header-title { gap: var(--space-3); }
  .page-header-icon { width: 44px; height: 44px; }
  .page-header-icon svg { width: 20px; height: 20px; }
}

/* ---------- Content blocks (service detail pages) ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.prose h2 {
  font-size: 1.35rem;
  margin: var(--space-7) 0 var(--space-3);
}
.prose h2:first-child { margin-top: 0; }

.prose p { margin-bottom: var(--space-4); line-height: 1.75; }

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fbf3e2;
  color: var(--color-gold-soft);
  font-size: 1.1rem;
  line-height: 28px;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.faq-item:hover { border-color: #eed9ae; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-4); }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold-soft);
}

.side-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: sticky;
  top: 96px;
}

.side-card h3 { font-size: 1.05rem; margin-bottom: var(--space-3); }
.side-card p { font-size: 0.92rem; color: var(--color-ink-muted); margin-bottom: var(--space-5); line-height: 1.65; }

.side-card .related { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-5); }
.side-card .related a {
  display: block;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid var(--color-border);
}
.side-card .related a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, border-top-color 0.25s ease;
}

.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #eed9ae; border-top-color: var(--color-gold); }

.contact-card .icon-tile { margin-bottom: 0; flex-shrink: 0; }

.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 4px;
}

.contact-card .value { font-size: 1.02rem; font-weight: 600; color: var(--color-ink); }
.contact-card .sub { font-size: 0.85rem; color: var(--color-ink-muted); margin-top: 4px; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Services hub list ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, border-left-color 0.25s ease;
}

.service-row:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: #eed9ae; border-left-color: var(--color-gold); }

.service-row .icon-tile { margin-bottom: 0; flex-shrink: 0; width: 52px; height: 52px; }

.service-row .row-text { flex-grow: 1; }
.service-row h3 { font-size: 1.05rem; margin-bottom: 4px; }
.service-row p { font-size: 0.9rem; color: var(--color-ink-muted); }

.service-row .row-arrow { color: var(--color-ink-soft); flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.service-row:hover .row-arrow { transform: translateX(4px); color: var(--color-gold); }

@media (max-width: 640px) {
  .service-row { flex-wrap: wrap; padding: var(--space-5); }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Scroll reveal ---------- */
html.js-reveal .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
