/* Crescent Digital Solutions — static site styles */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --radius: 0.75rem;
  --background: oklch(0.985 0.008 85);
  --foreground: oklch(0.18 0.04 265);
  --card: oklch(1 0 0);
  --primary: oklch(0.22 0.05 265);
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.955 0.015 250);
  --muted: oklch(0.955 0.012 250);
  --muted-foreground: oklch(0.48 0.03 265);
  --accent: oklch(0.93 0.05 240);
  --border: oklch(0.88 0.015 250);
  --input: oklch(0.92 0.012 250);

  --brand-yellow: oklch(0.86 0.18 90);
  --brand-sky: oklch(0.7 0.16 235);
  --brand-deep: oklch(0.4 0.16 260);
  --brand-plum: oklch(0.5 0.2 320);

  --gradient-hero:
    radial-gradient(ellipse 70% 55% at 50% 0%, oklch(0.78 0.16 240 / 0.55), transparent 65%),
    radial-gradient(ellipse 55% 45% at 15% 25%, oklch(0.9 0.16 90 / 0.55), transparent 70%),
    radial-gradient(ellipse 55% 45% at 85% 30%, oklch(0.72 0.18 320 / 0.4), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 90%, oklch(0.85 0.12 200 / 0.35), transparent 70%);
  --gradient-brand: linear-gradient(135deg, var(--brand-yellow), var(--brand-sky) 50%, var(--brand-deep) 90%);
  --gradient-brand-vivid: linear-gradient(135deg, oklch(0.88 0.18 85), oklch(0.7 0.19 235) 45%, oklch(0.5 0.2 320) 100%);
  --shadow-soft: 0 10px 40px -12px oklch(0.4 0.14 260 / 0.18);
  --shadow-lift: 0 20px 60px -20px oklch(0.4 0.14 260 / 0.35);
  --shadow-pill: 0 8px 30px -8px oklch(0.4 0.1 260 / 0.22);
  --shadow-glow: 0 0 0 1px oklch(0.7 0.14 240 / 0.25), 0 20px 50px -15px oklch(0.5 0.2 260 / 0.4);

  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html,
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

::selection {
  background: oklch(0.78 0.16 240 / 0.35);
  color: var(--foreground);
}

a,
button {
  transition: color .2s ease, background-color .2s ease, opacity .2s ease, transform .2s ease, box-shadow .3s ease;
}

/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-md {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

main {
  padding-top: 6rem;
  min-height: 100vh;
}

/* Header */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1200px, calc(100% - 1.5rem));
}

.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: oklch(0.985 0.008 85 / 0.8);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-pill);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.25rem;
}

.brand img {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  object-fit: cover;
}

.brand span {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

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

.nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: oklch(0.18 0.04 265 / 0.7);
  border-radius: 9999px;
}

.nav a:hover {
  color: var(--foreground);
  background: oklch(0.93 0.05 240 / 0.6);
}

.nav a.active {
  color: var(--foreground);
  background: var(--accent);
}

.header-cta {
  display: none;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .brand span {
    display: inline;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  margin-top: 0.5rem;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: oklch(0.985 0.008 85 / 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-pill);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 1rem;
}

.mobile-menu a:hover {
  background: var(--accent);
}

.mobile-menu .cta {
  margin-top: 0.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: .9;
}

.btn-outline {
  border: 1px solid var(--border);
  background: oklch(0.985 0.008 85 / 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--accent);
  border-color: oklch(0.18 0.04 265 / 0.3);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--background);
  color: var(--foreground);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

/* Primary glow */
.btn-primary-glow {
  position: relative;
  overflow: hidden;
}

.btn-primary-glow:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, oklch(1 0 0 / 0.25) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.btn-primary-glow:hover::after {
  transform: translateX(100%);
}

/* Hero gradient background */
.hero-gradient {
  background-image: var(--gradient-hero);
}

.abs-fill {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.italic {
  font-style: italic;
}

/* Utility */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: oklch(0.985 0.008 85 / 0.7);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

/* Section spacing */
section {
  position: relative;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-sm {
  padding: 4rem 0;
}

/* Grid orb */
.grain-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

.float-slow {
  animation: float-slow 9s ease-in-out infinite;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in .8s ease both;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
}

.hero-inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  padding-top: 150px;
}

.hero h1 {
  margin-top: 2rem;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.02;
}

.hero p {
  margin: 2rem auto 0;
  max-width: 640px;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}

.hero .actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Stats */
.stats {
  border-top: 1px solid oklch(0.88 0.015 250 / 0.6);
  border-bottom: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: oklch(0.985 0.008 85 / 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  cursor: default;
}

.stat .n {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  transition: transform .25s ease;
  display: inline-block;
}

.stat:hover .n {
  transform: scale(1.1);
  background: var(--gradient-brand-vivid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

@media (min-width: 768px) {
  .stat .n {
    font-size: 3rem;
  }
}

/* Section head */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  max-width: 40rem;
}

.section-head p {
  color: var(--muted-foreground);
  max-width: 28rem;
}

/* Card grid */
.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: var(--card);
  padding: 1.75rem;
  display: block;
  text-align: center;
}

.card.soft {
  box-shadow: var(--shadow-soft);
}

.card.lift {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .3s ease;
}

.card.lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in oklab, var(--brand-sky) 45%, var(--border));
}

.icon-tile {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  color: white;
  background: var(--gradient-brand-vivid);
  transition: transform .25s ease;
}

.card:hover .icon-tile {
  transform: scale(1.1) rotate(3deg);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.card .arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--muted-foreground);
  opacity: 0;
  transition: all .25s ease;
}

.card:hover .arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Process */
.process {
  position: relative;
  overflow: hidden;
}

.process .abs-fill {
  opacity: 0.7;
}

.process-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: oklch(0.985 0.008 85 / 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in oklab, var(--brand-sky) 45%, var(--border));
}

.process-card .num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  background: var(--gradient-brand-vivid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-card .t {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.process-card .d {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Testimonials */
.testi {
  display: flex;
  flex-direction: column;
}

.testi blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: oklch(0.18 0.04 265 / 0.85);
}

.testi .qi {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--brand-sky);
  margin-bottom: 1rem;
}

.testi figcaption {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(0.88 0.015 250 / 0.6);
}

.testi .name {
  font-weight: 500;
  font-size: 0.875rem;
}

.testi .role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* Why us */
.whyus {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .whyus {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: var(--card);
  padding: 1.25rem;
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}

.check-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: oklch(0.18 0.04 265 / 0.2);
}

.check-list svg {
  color: var(--brand-deep);
  height: 1.25rem;
  width: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.check-list span {
  font-size: 0.875rem;
}

/* FAQ */
.faq {
  border-top: 1px solid oklch(0.88 0.015 250 / 0.6);
  border-bottom: 1px solid oklch(0.88 0.015 250 / 0.6);
}

.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  border-bottom: 1px solid oklch(0.88 0.015 250 / 0.6);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item .q {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all .2s ease;
}

.faq-item:hover .q {
  background: var(--gradient-brand-vivid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-item .plus {
  color: var(--brand-deep);
  flex-shrink: 0;
  margin-top: 0.375rem;
  transition: transform .3s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-item .a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.open .a {
  grid-template-rows: 1fr;
}

.faq-item .a>div {
  overflow: hidden;
}

.faq-item .a p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* CTA banner */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 4rem 2.5rem;
  text-align: center;
  background: var(--gradient-brand-vivid);
  color: white;
}

.cta h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: white;
}

.cta p {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 36rem;
  color: oklch(1 0 0 / 0.9);
}

.cta .orb1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.2);
  filter: blur(64px);
}

.cta .orb2 {
  position: absolute;
  bottom: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.15);
  filter: blur(64px);
  animation-delay: 3s;
}

.cta .btn {
  position: relative;
  margin-top: 2rem;
}

/* Services listing */
.service-row {
  border-radius: 1.5rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: var(--card);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in oklab, var(--brand-sky) 45%, var(--border));
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 2.5rem;
  }
}

.service-row .head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.service-row .head .num {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.service-row .head h2 {
  font-size: 1.75rem;
}

.service-row .icon-box {
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: white;
}

.service-row .body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .service-row .body {
    padding-left: 1.5rem;
    border-left: 1px solid oklch(0.88 0.015 250 / 0.6);
  }
}

.chips {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.88 0.015 250 / 0.7);
  background: var(--background);
  padding: 0.25rem 0.75rem;
  color: oklch(0.18 0.04 265 / 0.7);
}

/* About cards */
.about-values {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border-radius: 1.5rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: var(--card);
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in oklab, var(--brand-sky) 45%, var(--border));
}

.value-card h3 {
  font-size: 1.5rem;
}

.value-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.contact-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-meta .row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.contact-meta .row span.ic {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  display: grid;
  place-items: center;
  color: var(--brand-deep);
}

.contact-form {
  border-radius: 1.5rem;
  border: 1px solid oklch(0.88 0.015 250 / 0.6);
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.field input,
.field select,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
}

.field textarea {
  resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid oklch(0.6 0.1 240);
  outline-offset: 1px;
}

.form-sent {
  text-align: center;
  padding: 4rem 0;
}

.form-sent h2 {
  font-size: 1.875rem;
}

.form-sent p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  margin-top: 0rem;
  border-top: 1px solid oklch(0.88 0.015 250 / 0.6);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.footer-col .h {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: oklch(0.18 0.04 265 / 0.7);
}

.footer-col ul a:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid oklch(0.88 0.015 250 / 0.6);
}

.footer-bottom .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-bottom .inner {
    flex-direction: row;
  }
}

/* Small utilities */
.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}