/* ============================================================
   LAYOUT.CSS — AlpenRoute Components & Sections
   ============================================================ */

/* ─────────────────────────────────────────
   1. CONTAINER
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ─────────────────────────────────────────
   2. SECTIONS BASE
───────────────────────────────────────── */
section,
header,
footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.section-py {
  padding-block: var(--section-py);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}

.section-tag::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--g-accent);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-4);
}

.section-title--light {
  color: var(--c-white);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  max-width: 56ch;
}

.section-desc--center {
  margin-inline: auto;
}

.section-desc--light {
  color: rgba(255,255,255,0.72);
}

/* Light background sections */
.section--light {
  background: var(--c-bg);
}

.section--lighter {
  background: var(--c-white);
}

.section--dark {
  background: var(--g-hero);
  color: var(--c-white);
}

.section--slate {
  background: var(--c-bg-dark);
  color: var(--c-white);
}

.section--nature {
  background: var(--g-nature);
  color: var(--c-white);
}

/* ─────────────────────────────────────────
   3. BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.82em 1.8em;
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t-fast);
  border-radius: inherit;
}

.btn:hover::before { opacity: 1; }

.btn--accent {
  background: var(--g-accent);
  color: var(--c-primary);
  box-shadow: 0 4px 18px rgba(230,184,92,0.3);
}

.btn--accent:hover {
  background: var(--g-accent-h);
  box-shadow: 0 6px 28px rgba(230,184,92,0.42);
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--sh-md);
}

.btn--primary:hover {
  background: #1b2e3b;
  box-shadow: var(--sh-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-border);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: var(--fs-base);
  padding: 0.9em 2.2em;
}

.btn--sm {
  font-size: var(--fs-xs);
  padding: 0.6em 1.4em;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--c-bg);
  color: var(--c-primary);
  transition: all var(--t-base);
  border: 1.5px solid var(--c-border);
  cursor: pointer;
}

.btn-icon:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

/* ─────────────────────────────────────────
   4. SITE HEADER
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
  overflow-x: hidden;
  max-width: 100vw;
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(36,58,74,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(36,58,74,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--sp-6);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  z-index: 10;
}

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

.logo-emblem {
  width: 36px;
  height: 36px;
  background: var(--g-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-emblem svg {
  width: 20px;
  height: 20px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-snug);
  color: var(--c-white);
}

.logo-tagline {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(230,184,92,0.8);
  margin-top: 1px;
}

/* Navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
  padding-block: var(--sp-2);
  position: relative;
  transition: color var(--t-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--g-accent);
  border-radius: var(--r-full);
  transition: width var(--t-slow);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--c-accent);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Burger Button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  transition: background var(--t-base);
  z-index: 1001;
  flex-shrink: 0;
}

.burger:hover { background: rgba(255,255,255,0.15); }

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(36,58,74,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2rem) var(--container-pad) 3rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-10);
}

.mobile-nav__link {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  padding-block: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--t-base), padding-left var(--t-base);
  letter-spacing: var(--ls-snug);
}

.mobile-nav__link:hover {
  color: var(--c-accent);
  padding-left: var(--sp-3);
}

.mobile-nav__link svg {
  opacity: 0.4;
  transition: opacity var(--t-base), transform var(--t-base);
}

.mobile-nav__link:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.mobile-menu__bottom {
  margin-top: auto;
}

.mobile-menu__cta {
  margin-bottom: var(--sp-6);
}

.mobile-menu__contact {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: var(--ls-wide);
}

/* ─────────────────────────────────────────
   5. HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--g-hero);
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--g-overlay);
  z-index: 1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36,58,74,0.88) 0%,
    rgba(36,58,74,0.5) 55%,
    rgba(52,75,63,0.25) 100%
  );
  z-index: 2;
}

.hero__gradient--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(36,58,74,0.6), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: clamp(4rem, 8vw, 7rem);
  max-width: 760px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(230,184,92,0.12);
  border: 1px solid rgba(230,184,92,0.3);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}

.hero__label .label-mono {
  color: var(--c-accent);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-6);
}

.hero__title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  max-width: 52ch;
  font-weight: var(--fw-light);
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 520px;
}

.hero__form-row {
  display: flex;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-1) var(--sp-1) var(--sp-5);
  backdrop-filter: blur(10px);
  transition: border-color var(--t-base);
}

.hero__form-row:focus-within {
  border-color: rgba(230,184,92,0.5);
}

.hero__form-row input {
  flex: 1;
  background: none;
  color: var(--c-white);
  font-size: var(--fs-sm);
  min-width: 0;
}

.hero__form-row input::placeholder {
  color: rgba(255,255,255,0.45);
}

.hero__form-note {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.42);
  letter-spacing: var(--ls-wide);
  padding-left: var(--sp-3);
}

.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.45);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%,100% { opacity:0.5; transform: scaleY(1); }
  50%      { opacity:1;   transform: scaleY(1.1); }
}

/* ─────────────────────────────────────────
   6. TRUST STRIP
───────────────────────────────────────── */
.trust-strip {
  background: var(--c-primary);
  padding-block: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  max-width: 100%;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid rgba(230,184,92,0.2);
  border-radius: var(--r-full);
  background: rgba(230,184,92,0.06);
  transition: background var(--t-base), border-color var(--t-base);
}

.trust-badge:hover {
  background: rgba(230,184,92,0.12);
  border-color: rgba(230,184,92,0.4);
}

.trust-badge__icon {
  width: 28px;
  height: 28px;
  background: var(--g-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 14px;
  height: 14px;
  color: var(--c-primary);
}

.trust-badge__text {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   7. MARQUEE
───────────────────────────────────────── */
.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  background: var(--c-bg);
  padding-block: clamp(1.8rem, 4vw, 3rem);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  user-select: none;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  overflow: hidden;
}

.js-mq-row.fwd  { animation: marquee-fwd 38s linear infinite; }
.js-mq-row.rev  { animation: marquee-rev 42s linear infinite; margin-top: var(--sp-3); }

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2em;
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0.11;
  padding-right: 1.4em;
}

.mq-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0.5;
  flex-shrink: 0;
  vertical-align: middle;
}

@keyframes marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ─────────────────────────────────────────
   8. ABOUT PREVIEW
───────────────────────────────────────── */
.about-preview {
  background: var(--c-white);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-preview__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}

.about-preview__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--t-smooth);
}

.about-preview__img-wrap:hover img {
  transform: scale(1.04);
}

.about-preview__badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.about-preview__badge-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-primary);
  line-height: 1;
}

.about-preview__badge-num span {
  color: var(--c-accent);
}

.about-preview__badge-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: var(--fw-medium);
  max-width: 80px;
  line-height: 1.4;
}

.about-preview__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about-preview__text {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--c-text-muted);
}

.about-preview__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.about-feature:hover {
  border-color: rgba(230,184,92,0.35);
  box-shadow: var(--sh-sm);
  transform: translateX(4px);
}

.about-feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(230,184,92,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
}

.about-feature__icon svg {
  width: 18px;
  height: 18px;
}

.about-feature__title {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--c-primary);
  margin-bottom: var(--sp-1);
}

.about-feature__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
}

/* ─────────────────────────────────────────
   9. SERVICES PREVIEW / SERVICES PAGE
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
  border-color: rgba(230,184,92,0.3);
}

.service-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--t-smooth);
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--g-accent);
  color: var(--c-primary);
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.service-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(36,58,74,0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}

.service-card__icon svg { width: 20px; height: 20px; }

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  margin-top: auto;
  transition: gap var(--t-base), color var(--t-base);
}

.service-card__link:hover {
  gap: var(--sp-3);
  color: var(--c-accent);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-base);
}

.service-card__link:hover svg {
  transform: translateX(3px);
}

/* Service Detail (services.html) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.service-detail-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
  border-color: rgba(230,184,92,0.3);
}

.service-detail-card__num {
  font-family: var(--ff-mono);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: rgba(230,184,92,0.3);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.service-detail-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(36,58,74,0.08), rgba(52,75,63,0.08));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
}

.service-detail-card__icon svg { width: 24px; height: 24px; }

.service-detail-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
}

.service-detail-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
  flex: 1;
}

.service-detail-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.service-detail-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.service-detail-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   10. WHY CHOOSE US
───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.why-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(230,184,92,0.3);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  background: var(--g-accent);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  box-shadow: 0 4px 16px rgba(230,184,92,0.3);
}

.why-card__icon svg { width: 24px; height: 24px; }

.why-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-snug);
}

.why-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.62);
  line-height: var(--lh-base);
}

/* ─────────────────────────────────────────
   11. PORTFOLIO / DESTINATIONS
───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.portfolio-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--sh-md);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover .portfolio-card__img {
    transform: scale(1.07);
  }
  .portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
  }
  .portfolio-card:hover .portfolio-card__info {
    transform: translateY(0);
    opacity: 1;
  }
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--t-smooth);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,58,74,0.88) 0%, rgba(36,58,74,0.3) 50%, transparent 100%);
  opacity: 0.7;
  transition: opacity var(--t-slow);
}

.portfolio-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform var(--t-slow), opacity var(--t-slow);
}

.portfolio-card__tag {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: var(--c-accent);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.portfolio-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-2);
}

.portfolio-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-base);
}

/* Portfolio page – featured */
.portfolio-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.portfolio-featured__main {
  aspect-ratio: 3/4;
}

.portfolio-featured__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.portfolio-featured__side .portfolio-card {
  aspect-ratio: unset;
  height: 100%;
}

/* ─────────────────────────────────────────
   12. STATS / ACHIEVEMENTS
───────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.2rem) var(--sp-6);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(230,184,92,0.25);
  transform: translateY(-4px);
}

.stat-card__num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-2);
}

.stat-card__num span {
  color: var(--c-accent);
}

.stat-card__label {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   13. PROCESS
───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-accent), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--r-xl);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--g-hero);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-accent);
}

.process-step__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
}

/* ─────────────────────────────────────────
   14. TESTIMONIALS
───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-hover);
  border-color: rgba(230,184,92,0.25);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--sp-1);
}

.star {
  width: 16px;
  height: 16px;
  color: var(--c-accent);
}

.testimonial-card__quote {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: var(--lh-loose);
  font-style: italic;
  flex: 1;
}

.testimonial-card__quote::before {
  content: '"';
  font-size: 2.5em;
  color: var(--c-accent);
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 0.1em;
  font-style: normal;
  font-weight: var(--fw-bold);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--c-accent);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--c-primary);
  line-height: 1.2;
}

.testimonial-card__location {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: var(--c-text-muted);
  letter-spacing: var(--ls-wide);
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   15. FAQ ACCORDION
───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 840px;
  margin-inline: auto;
}

.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item.is-open {
  border-color: rgba(230,184,92,0.35);
  box-shadow: var(--sh-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.25rem, 3vw, 1.75rem);
  cursor: pointer;
  background: none;
  text-align: left;
  gap: var(--sp-4);
  transition: background var(--t-fast);
}

.faq-trigger:hover { background: rgba(36,58,74,0.02); }

.faq-trigger__q {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
}

.faq-trigger__icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-base);
  color: var(--c-primary);
}

.faq-trigger__icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-base);
}

.faq-item.is-open .faq-trigger__icon {
  background: var(--c-accent);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-trigger__icon svg { color: var(--c-primary); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body__inner {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.4rem);
  color: var(--c-text-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

/* ─────────────────────────────────────────
   16. KEYWORDS / CONTENT SECTION
───────────────────────────────────────── */
.keywords-section {
  background: var(--g-hero);
  padding-block: var(--section-py);
  overflow: hidden;
  position: relative;
}

.keywords-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E6B85C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.keywords-inner {
  position: relative;
  z-index: 1;
}

.keywords-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.kw-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: rgba(230,184,92,0.1);
  border: 1px solid rgba(230,184,92,0.28);
  border-radius: var(--r-full);
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-accent);
  letter-spacing: var(--ls-wide);
  transition: background var(--t-base), border-color var(--t-base);
}

.kw-badge:hover {
  background: rgba(230,184,92,0.18);
  border-color: rgba(230,184,92,0.5);
}

.kw-badge svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.keywords-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
  max-width: 72ch;
  font-style: italic;
}

.keywords-text strong {
  color: var(--c-white);
  font-weight: var(--fw-bold);
  font-style: normal;
}

/* ─────────────────────────────────────────
   17. CONTACT FORM SECTION
───────────────────────────────────────── */
.contact-form-section {
  background: var(--c-white);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-form-info {
  padding-top: var(--sp-4);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(36,58,74,0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact-info-item__icon svg { width: 20px; height: 20px; }

.contact-info-item__label {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: var(--c-text-muted);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.contact-info-item__value {
  font-size: var(--fs-base);
  color: var(--c-text);
  font-weight: var(--fw-medium);
}

.contact-info-item__value a {
  color: var(--c-primary);
  transition: color var(--t-base);
}

.contact-info-item__value a:hover { color: var(--c-accent); }

/* Form Styles */
.contact-form {
  background: var(--c-bg);
  border-radius: var(--r-2xl);
  padding: clamp(1.75rem, 4vw, 2.8rem);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-group:last-of-type { margin-bottom: var(--sp-6); }

.form-label {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  font-size: var(--fs-base);
  color: var(--c-text);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(230,184,92,0.12);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(34,38,41,0.35);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: var(--lh-base);
}

.form-submit {
  width: 100%;
  padding: var(--sp-4) var(--sp-8);
  background: var(--g-accent);
  color: var(--c-primary);
  border: none;
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all var(--t-base);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(230,184,92,0.28);
}

.form-submit:hover {
  background: var(--g-accent-h);
  box-shadow: 0 6px 28px rgba(230,184,92,0.4);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   18. FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  overflow-x: hidden;
  max-width: 100%;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo-name { color: var(--c-white); }

.footer__brand-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: var(--lh-base);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
  max-width: 30ch;
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-base);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__social-link:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-primary);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav-link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.52);
  transition: color var(--t-base), padding-left var(--t-base);
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--c-accent);
  padding-left: var(--sp-2);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-accent);
}

.footer__contact-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.52);
  line-height: var(--lh-base);
}

.footer__contact-text a {
  color: rgba(255,255,255,0.52);
  transition: color var(--t-base);
}

.footer__contact-text a:hover { color: var(--c-accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: var(--ls-wide);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__legal-link {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--t-base);
}

.footer__legal-link:hover { color: var(--c-accent); }

/* ─────────────────────────────────────────
   19. PAGE HERO (INNER PAGES)
───────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--g-hero);
  overflow: hidden;
  max-width: 100%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E6B85C' fill-opacity='0.04'%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.page-hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-5);
  max-width: 16ch;
}

.page-hero__desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.72);
  line-height: var(--lh-loose);
  max-width: 54ch;
  margin-bottom: var(--sp-8);
  font-weight: var(--fw-light);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  letter-spacing: var(--ls-wide);
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--t-base); }
.page-hero__breadcrumb a:hover { color: var(--c-accent); }
.page-hero__breadcrumb span { color: var(--c-accent); }

/* ─────────────────────────────────────────
   20. ABOUT PAGE
───────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.value-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-xl);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--g-nature);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
}

.value-card__icon svg { width: 24px; height: 24px; }

.value-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
}

.value-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.team-card__avatar {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--g-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
}

.team-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.team-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--sp-1);
}

.team-card__role {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-accent);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
}

/* ─────────────────────────────────────────
   21. CONTACT PAGE (MAP + FORM)
───────────────────────────────────────── */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 2px solid var(--c-border);
  aspect-ratio: 16/7;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─────────────────────────────────────────
   22. LEGAL PAGES
───────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}

.legal-content h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.legal-content p {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-6);
}

.legal-content ul li {
  list-style: disc;
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-2);
}

.legal-content ol li {
  list-style: decimal;
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-2);
}

.legal-meta {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--sp-10);
}

.legal-meta__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.legal-meta__label {
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: var(--c-text-muted);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.legal-meta__value {
  font-size: var(--fs-sm);
  color: var(--c-text);
  font-weight: var(--fw-medium);
}

/* ─────────────────────────────────────────
   23. THANK YOU PAGE
───────────────────────────────────────── */
.thankyou-page {
  min-height: 100svh;
  background: var(--g-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-8) var(--container-pad);
}

.thankyou__inner {
  max-width: 580px;
}

.thankyou__icon {
  width: 80px;
  height: 80px;
  background: var(--g-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  box-shadow: 0 8px 32px rgba(230,184,92,0.4);
}

.thankyou__icon svg { width: 36px; height: 36px; color: var(--c-primary); }

.thankyou__eyebrow {
  margin-bottom: var(--sp-4);
}

.thankyou__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-5);
}

.thankyou__title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou__text {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.72);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  font-weight: var(--fw-light);
}

/* ─────────────────────────────────────────
   24. SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--t-smooth), transform 0.7s var(--t-smooth);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--t-smooth);
}

.reveal-fade.is-visible { opacity: 1; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--t-smooth), transform 0.7s var(--t-smooth);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--t-smooth), transform 0.7s var(--t-smooth);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.19s !important; }
.stagger-4 { transition-delay: 0.26s !important; }
.stagger-5 { transition-delay: 0.33s !important; }
.stagger-6 { transition-delay: 0.4s  !important; }

/* ─────────────────────────────────────────
   25. DIVIDER & UTILITIES
───────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
}

.divider--accent {
  height: 2px;
  background: var(--g-accent);
  width: 60px;
  border-radius: var(--r-full);
}

.section-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(169,74,63,0.1);
  border: 1px solid rgba(169,74,63,0.2);
  border-radius: var(--r-full);
  font-family: var(--ff-mono);
  font-size: var(--fs-2xs);
  color: var(--c-accent2);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   26. RESPONSIVE — TABLET (max 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__actions .btn { display: none; }
  .burger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__img-wrap { aspect-ratio: 16/9; max-height: 420px; }

  .contact-form-layout { grid-template-columns: 1fr; }

  .portfolio-featured { grid-template-columns: 1fr; }
  .portfolio-featured__side { grid-template-columns: 1fr 1fr; grid-template-rows: unset; }
  .portfolio-featured__side .portfolio-card { aspect-ratio: 3/4; }
}

/* ─────────────────────────────────────────
   27. RESPONSIVE — MOBILE (max 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }

  .trust-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-divider { display: none; }

  .footer__main { grid-template-columns: 1fr; gap: var(--sp-8); }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .hero__form-row {
    flex-direction: column;
    padding: var(--sp-3);
    border-radius: var(--r-xl);
    gap: var(--sp-3);
  }

  .hero__form-row input {
    padding: var(--sp-3) var(--sp-3);
  }

  .hero__form-row .btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--r-full);
  }

  .keywords-badges { gap: var(--sp-2); }
}

/* ─────────────────────────────────────────
   28. PARALLAX — DESKTOP ONLY
───────────────────────────────────────── */
@media (min-width: 1025px) {
  .hero__img {
    will-change: transform;
  }
}

/* ─────────────────────────────────────────
   29. CARD TILT — POINTER DEVICES ONLY
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .portfolio-card {
    will-change: transform;
  }
}

/* ─────────────────────────────────────────
   30. MOBILE OVERFLOW SAFETY NET
───────────────────────────────────────── */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
