/* Vairavan Motors — Static CSS (converted from Tailwind v4 theme) */

:root {
  --radius: 0.5rem;
  --background: oklch(0.99 0 0);
  --foreground: oklch(0.16 0.01 240);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.16 0.01 240);
  --secondary: oklch(0.95 0.005 240);
  --secondary-foreground: oklch(0.16 0.01 240);
  --muted: oklch(0.96 0.003 240);
  --muted-foreground: oklch(0.45 0.01 240);
  --accent: oklch(0.95 0.02 30);
  --accent-foreground: oklch(0.16 0.01 240);
  --border: oklch(0.9 0.005 240);
  --brand: oklch(0.62 0.24 27);
  --brand-foreground: oklch(0.99 0 0);
  --brand-accent: oklch(0.72 0.2 45);
  --ink: oklch(0.16 0.01 240);
  --whatsapp: oklch(0.7 0.17 145);
  --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%);
  --shadow-elegant: 0 20px 50px -20px color-mix(in oklab, var(--brand) 35%, transparent);
  --shadow-card: 0 4px 20px -8px oklch(0 0 0 / 0.15);
  --font-display: "Bebas Neue", "Barlow Condensed", "Noto Sans Tamil", sans-serif;
  --font-sans: "Barlow", "Noto Sans Tamil", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Utilities */
.min-h-screen { min-height: 100vh; }
.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-ink { background-color: var(--ink); }
.bg-black { background-color: #000; }
.bg-card { background-color: var(--card); }
.bg-accent { background-color: var(--accent); }
.bg-brand { background-color: var(--brand); }
.bg-whatsapp { background-color: var(--whatsapp); }
.bg-white { background-color: #fff; }
.bg-gradient-brand { background: var(--gradient-brand); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-ink { --tw-gradient-from: var(--ink); --tw-gradient-to: color-mix(in oklch, var(--ink) 0%, transparent); }
.to-ink-90 { --tw-gradient-to: color-mix(in oklch, var(--ink) 90%, transparent); }

.text-foreground { color: var(--foreground); }
.text-white { color: #fff; }
.text-brand { color: var(--brand); }
.text-brand-foreground { color: var(--brand-foreground); }
.text-brand-accent { color: var(--brand-accent); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground-85 { color: color-mix(in oklch, var(--foreground) 85%, transparent); }

.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

.font-display { font-family: var(--font-display); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-10px { font-size: 10px; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-02em { letter-spacing: 0.2em; }
.tracking-025em { letter-spacing: 0.25em; }
.leading-tight { line-height: 1.25; }
.leading-095 { line-height: 0.95; }
.leading-relaxed { line-height: 1.625; }

.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-brand { border-color: var(--brand); }
.border-border { border-color: var(--border); }
.border-white-10 { border-color: rgb(255 255 255 / 0.1); }
.border-white-15 { border-color: rgb(255 255 255 / 0.15); }
.border-white-20 { border-color: rgb(255 255 255 / 0.2); }
.border-white-5 { border-color: rgb(255 255 255 / 0.05); }

.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-90 { opacity: 0.9; }

.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blur-3xl { filter: blur(64px); }
.grayscale-20 { filter: grayscale(20%); }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-20 { bottom: 5rem; }
.right-5 { right: 1.25rem; }
.-inset-4 { inset: -1rem; }

.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.resize-none { resize: none; }
.outline-none { outline: none; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-72 { height: 18rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-520 { max-height: 520px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1-5 { margin-bottom: 0.375rem; }
.mb-3 { margin-bottom: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.p-2 { padding: 0.5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.px-2-5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-1-5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3-5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.text-center { text-align: center; }

.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.hover-opacity-90:hover { opacity: 0.9; }
.hover-text-brand:hover { color: var(--brand); }
.hover-bg-white-5:hover { background-color: rgb(255 255 255 / 0.05); }
.hover-bg-white-15:hover { background-color: rgb(255 255 255 / 0.15); }
.hover-border-brand:hover { border-color: var(--brand); }
.hover-bg-white-6:hover { background-color: rgb(255 255 255 / 0.06); }
.hover-shadow-elegant:hover { box-shadow: var(--shadow-elegant); }
.hover-shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover-scale-110:hover { transform: scale(1.1); }
.hover-text-brand-accent:hover { color: var(--brand-accent); }

.group:hover .group-hover-opacity-90 { opacity: 0.9; }

.fill-brand-accent { fill: var(--brand-accent); }

/* Opacity text/bg variants */
.text-white-50 { color: rgb(255 255 255 / 0.5); }
.text-white-60 { color: rgb(255 255 255 / 0.6); }
.text-white-65 { color: rgb(255 255 255 / 0.65); }
.text-white-70 { color: rgb(255 255 255 / 0.7); }
.text-white-75 { color: rgb(255 255 255 / 0.75); }
.text-white-80 { color: rgb(255 255 255 / 0.8); }
.text-white-90 { color: rgb(255 255 255 / 0.9); }
.bg-ink-95 { background-color: color-mix(in oklch, var(--ink) 95%, transparent); }
.bg-white-4 { background-color: rgb(255 255 255 / 0.04); }
.bg-white-6 { background-color: rgb(255 255 255 / 0.06); }
.bg-white-10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white-15 { background-color: rgb(255 255 255 / 0.15); }

/* Layout containers */
.container-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: color-mix(in oklch, var(--ink) 95%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.025em;
}

.site-header__tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgb(255 255 255 / 0.6);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.8);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: color 150ms;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
}

.site-header__mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  color: #fff;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--ink);
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__links a {
  padding: 0.75rem 0;
  color: rgb(255 255 255 / 0.9);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.mobile-menu__call {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-brand);
  color: var(--brand-foreground);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: calc(var(--radius) - 2px);
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.2);
  color: rgb(255 255 255 / 0.8);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
}

.lang-switcher button {
  padding: 0.375rem 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 150ms;
}

.lang-switcher button:hover {
  background-color: rgb(255 255 255 / 0.05);
}

.lang-switcher button.is-active {
  background-color: var(--brand);
  color: var(--brand-foreground);
}

/* Buttons */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-brand);
  color: var(--brand-foreground);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: var(--shadow-elegant);
  transition: opacity 150ms;
  border: none;
  cursor: pointer;
}

.btn-brand:hover { opacity: 0.9; }

.btn-brand-lg {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 1rem 1.75rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 1rem 1.75rem;
  border-radius: calc(var(--radius) - 2px);
  transition: background-color 150ms;
}

.btn-outline-light:hover {
  background-color: rgb(255 255 255 / 0.15);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink), color-mix(in oklch, var(--ink) 85%, transparent), color-mix(in oklch, var(--ink) 40%, transparent));
}

.hero__content {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.15);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__badge-dot {
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--brand);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.95;
}

.hero__subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.75);
  max-width: 36rem;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.hero__stats-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__image-wrap {
  display: none;
  position: relative;
}

.hero__image-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-brand);
  opacity: 0.3;
  filter: blur(64px);
  border-radius: 9999px;
}

.hero__image {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgb(255 255 255 / 0.1);
  width: 100%;
}

/* Sections */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section--dark {
  background-color: var(--ink);
  color: #fff;
}

.section--secondary {
  background-color: var(--secondary);
}

.section__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
  font-weight: 600;
}

.section--dark .section__eyebrow {
  color: var(--brand-accent);
}

.section__title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
}

.section__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.section__subtitle--muted {
  color: var(--muted-foreground);
}

.section--dark .section__subtitle {
  color: rgb(255 255 255 / 0.7);
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  object-fit: cover;
  height: 100%;
  max-height: 520px;
  width: 100%;
}

.stats-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  border-left: 4px solid var(--brand);
  padding-left: 1rem;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.stat-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Service cards */
.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background-color: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.1);
  transition: all 150ms;
}

.service-card:hover {
  border-color: var(--brand);
  background-color: rgb(255 255 255 / 0.06);
}

.service-card__icon {
  height: 3rem;
  width: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-foreground);
  box-shadow: var(--shadow-elegant);
}

.service-card__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.025em;
}

.service-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.65);
  line-height: 1.625;
}

/* Why us cards */
.why-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.why-card {
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 150ms;
}

.why-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-0.25rem);
}

.why-card__icon {
  height: 3rem;
  width: 3rem;
  border-radius: var(--radius);
  background-color: var(--accent);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 2.5rem;
}

.reviews-stars-lg {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-cards {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background-color: var(--card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.review-card__stars {
  display: flex;
  gap: 0.25rem;
}

.review-card__text {
  margin-top: 0.75rem;
  color: color-mix(in oklch, var(--foreground) 85%, transparent);
  line-height: 1.625;
}

.review-card__name {
  margin-top: 1rem;
  font-weight: 600;
}

.review-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(to right, var(--ink), color-mix(in oklch, var(--ink) 90%, transparent));
  color: #fff;
  box-shadow: var(--shadow-elegant);
  transition: box-shadow 150ms;
}

.review-cta:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.review-cta__icon {
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery */
.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-grid img {
  border-radius: calc(var(--radius) + 4px);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.gallery-grid img.gallery-grid__hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}

/* Contact */
.contact-header {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  background-color: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.1);
  transition: border-color 150ms;
}

.info-card:hover {
  border-color: var(--brand);
}

.info-card__icon {
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-foreground);
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.info-card__body {
  color: rgb(255 255 255 / 0.7);
  margin-top: 0.25rem;
}

.contact-map {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  height: 18rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

.contact-form {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background-color: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.1);
}

.contact-form > * + * {
  margin-top: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: rgb(255 255 255 / 0.7);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: var(--ink);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.75rem 1rem;
  color: #fff;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
}

.form-textarea {
  resize: none;
}

.form-success {
  text-align: center;
}

.form-success p {
  font-size: 0.875rem;
  color: var(--brand-accent);
}

.form-success a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.form-success a:hover {
  color: var(--brand-accent);
}

.form-success.hidden {
  display: none;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: rgb(255 255 255 / 0.7);
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.site-footer__grid {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: grid;
  gap: 2rem;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.site-footer__tagline {
  margin-top: 1rem;
  max-width: 28rem;
}

.site-footer__review-btn {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.15);
  padding: 0.625rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  transition: background-color 150ms;
}

.site-footer__review-btn:hover {
  background-color: rgb(255 255 255 / 0.15);
}

.site-footer__heading {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.site-footer__links li + li {
  margin-top: 0.5rem;
}

.site-footer__links a:hover {
  color: var(--brand);
}

.site-footer__contact li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.site-footer__contact li + li {
  margin-top: 0.5rem;
}

.site-footer__contact svg {
  height: 1rem;
  width: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--brand);
}

.site-footer__copy {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.5);
}

/* Floating buttons */
.fab-whatsapp {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 50;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  background-color: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  transition: transform 150ms;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
}

.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--gradient-brand);
  color: var(--brand-foreground);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-elegant);
}

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Utility: hidden until JS */
.hidden { display: none !important; }

.menu-icon-close { display: none; }
.menu-toggle.is-open .menu-icon-open { display: none; }
.menu-toggle.is-open .menu-icon-close { display: block; }

.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.group { /* hover group parent */ }

.reviews-stars-lg,
.review-card__stars {
  color: var(--brand-accent);
  letter-spacing: 0.05em;
}

.btn-brand-lg.full-width {
  width: 100%;
  justify-content: center;
}

.about-footer-note {
  margin-top: 1.5rem;
}
