/* ===== AION Worldwide — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --sage: #b1b89f;
  --sage-light: #d8dcd8;
  --midnight: #171d1a;
  --background: #fafbfa;
  --foreground: #171d1a;
  --card: #ffffff;
  --card-foreground: #171d1a;
  --popover: #ffffff;
  --popover-foreground: #171d1a;
  --primary: #171d1a;
  --primary-foreground: #fafbfa;
  --secondary: #d8dcd8;
  --secondary-foreground: #171d1a;
  --muted: #eef0ee;
  --muted-foreground: #5e6b63;
  --hero-tint: #ecefec;
  --accent: #b1b89f;
  --accent-foreground: #171d1a;
  --destructive: #c45c5c;
  --destructive-foreground: #fafbfa;
  --border: #dde0dd;
  --input: #dde0dd;
  --ring: #b1b89f;
  --radius: 0.5rem;
}

.dark {
  --background: #171d1a;
  --foreground: #fafbfa;
  --card: #1e2421;
  --card-foreground: #fafbfa;
  --primary: #b1b89f;
  --primary-foreground: #171d1a;
  --border: rgba(255,255,255,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}

.pt-20 { padding-top: 5rem; }

/* ===== Grid ===== */
.grid { display: grid; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* ===== Flex ===== */
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }

/* ===== Spacing ===== */
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }

.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; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.pt-3 { padding-top: 0.75rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-4 { padding-left: 1rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.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; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== Typography ===== */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.leading-\[1\.85\] { line-height: 1.85; }

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

.text-white { color: #ffffff; }
.text-white\/75 { color: rgba(255,255,255,0.75); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-popover-foreground { color: var(--popover-foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-\[var\(--sage\)\] { color: var(--sage); }
.text-\[var\(--sage-light\)\] { color: var(--sage-light); }
.text-\[var\(--sage-light\)\]\/70 { color: rgba(216,220,216,0.7); }
.text-\[var\(--sage-light\)\]\/50 { color: rgba(216,220,216,0.5); }
.text-\[var\(--sage\)\]\/80 { color: rgba(177,184,159,0.8); }

/* ===== Backgrounds ===== */
.bg-background { background-color: var(--background); }
.bg-\[var\(--midnight\)\] { background-color: var(--midnight); }
.bg-\[var\(--sage\)\] { background-color: var(--sage); }
.bg-\[var\(--sage-light\)\] { background-color: var(--sage-light); }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }
.bg-secondary\/40 { background-color: rgba(216,220,216,0.4); }
.bg-secondary\/30 { background-color: rgba(216,220,216,0.3); }
.bg-\[var\(--sage\)\]\/15 { background-color: rgba(177,184,159,0.15); }
.bg-\[var\(--sage\)\]\/20 { background-color: rgba(177,184,159,0.2); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-border { background-color: var(--border); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-popover { background-color: var(--popover); }

/* ===== Borders ===== */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-foreground\/30 { border-color: rgba(23,29,26,0.3); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-input { border-color: var(--input); }
.border-\[var\(--sage\)\] { border-color: var(--sage); }

.last\:border-b-0:last-child { border-bottom: 0; }
.first\:border-t-0:first-child { border-top: 0; }

/* ===== Rounded ===== */
.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; }

/* ===== Overflow ===== */
.overflow-hidden { overflow: hidden; }

/* ===== Position ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-full { top: 100%; }
.left-1\/2 { left: 50%; }
.z-50 { z-index: 50; }

/* ===== Transforms ===== */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.translate-y-0 { transform: translateY(0); }

/* ===== Sizing ===== */
.h-1\.5 { height: 0.375rem; }
.h-3\.5 { height: 0.875rem; }
.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-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.min-h-\[92vh\] { min-height: 92vh; }
.min-h-screen { min-height: 100vh; }

.w-1\.5 { width: 0.375rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-80 { width: 20rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[5\/4\] { aspect-ratio: 5 / 4; }

/* ===== Object Fit ===== */
.object-cover { object-fit: cover; }

/* ===== Scroll Margin ===== */
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ===== Opacity / Visibility ===== */
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.opacity-0 { opacity: 0; }
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* ===== Shadows ===== */
.shadow-soft { box-shadow: 0 10px 40px -10px rgba(23,29,26,0.15); }
.shadow-elegant { box-shadow: 0 30px 80px -20px rgba(23,29,26,0.25); }

/* ===== Transitions ===== */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }

/* ===== Hover ===== */
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:bg-primary\/90:hover { background-color: rgba(23,29,26,0.9); }
.hover\:bg-\[var\(--sage-light\)\]:hover { background-color: var(--sage-light); }
.hover\:bg-\[var\(--sage-light\)\]\/30:hover { background-color: rgba(216,220,216,0.3); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-\[var\(--sage\)\]:hover { color: var(--sage); }
.hover\:border-foreground:hover { border-color: var(--foreground); }
.hover\:border-\[var\(--sage\)\]:hover { border-color: var(--sage); }

.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:text-\[var\(--sage\)\] { color: var(--sage); }
.group:hover .group-hover\:shadow-soft { box-shadow: 0 10px 40px -10px rgba(23,29,26,0.15); }

/* ===== Backdrop ===== */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* ===== Resize ===== */
.resize-none { resize: none; }

/* ===== Focus ===== */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring); }

/* ===== SVG Icons ===== */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; }

/* ===== Navbar ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(250,251,250,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px -10px rgba(23,29,26,0.15);
}

.page-story header:not(.scrolled),
.page-offer header:not(.scrolled) {
  background-color: var(--hero-tint);
  border-bottom: 0;
}

header.scrolled .nav-link,
header.scrolled .nav-dropdown-text {
  color: var(--foreground);
}

header.scrolled .nav-dropdown-text:hover,
header.scrolled .nav-link:hover {
  color: var(--foreground);
}

header.scrolled .logo-img {
  filter: none;
}

header:not(.scrolled) .nav-link,
header:not(.scrolled) .nav-dropdown-text {
  color: var(--foreground);
}

header:not(.scrolled) .nav-link:hover,
header:not(.scrolled) .nav-dropdown-text:hover {
  color: var(--sage);
}

header:not(.scrolled) .mobile-toggle {
  color: var(--foreground);
}

header.scrolled .mobile-toggle {
  color: var(--foreground);
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-0.25rem);
  top: 100%;
  padding-top: 0.75rem;
  width: 20rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--popover-foreground);
  opacity: 0.8;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.nav-dropdown-item:last-child { border-bottom: 0; }
.nav-dropdown-item:hover {
  background-color: var(--secondary);
  color: var(--foreground);
}

/* Stats */
.stats{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(238,240,245,.4)}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2.5rem;padding:3.5rem 0}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr)}}
.stat .n{font-family:var(--font-serif);font-size:2.25rem;color:var(--primary)}
@media(min-width:768px){.stat .n{font-size:3rem}}
.stat .l{margin-top:.5rem;font-size:.75rem;text-transform:uppercase;letter-spacing:.15em;color:var(--muted-foreground)}

/* Intro */
.intro{padding:6rem 1.5rem;display:grid;gap:3rem;grid-template-columns:1fr;align-items:center}
@media(min-width:768px){.intro{grid-template-columns:5fr 7fr}}
@media(min-width:1024px){.intro{padding-left:2.5rem;padding-right:2.5rem}}
.intro h2{font-size:2.25rem;line-height:1.2}
@media(min-width:768px){.intro h2{font-size:3rem}}
.intro .right{padding-left:0}
@media(min-width:768px){.intro .right{padding-left:2.5rem;border-left:1px solid var(--border)}}
.intro p{font-size:1.125rem;color:var(--muted-foreground);line-height:1.7}
.intro .link-arrow{margin-top:2rem}

/* Image + Quote */
.quote-row{display:grid;grid-template-columns:1fr;align-items:stretch;overflow:hidden}
@media(min-width:768px){.quote-row{grid-template-columns:1fr 1fr;height:560px}}
.quote-row img{width:100%;height:280px;object-fit:cover}
@media(min-width:768px){.quote-row img{height:100%}}
.quote-row .quote{background:rgba(238,240,245,.4);padding:1rem;display:flex;flex-direction:column;justify-content:center;min-height:280px;transform:translateY(-5rem)}
@media(min-width:768px){.quote-row .quote{min-height:0;height:100%}}
@media(min-width:1024px){.quote-row .quote{padding:2rem}}
.quote blockquote{font-family:var(--font-serif);font-size:1.5rem;color:var(--primary);line-height:1.4;margin:0}
@media(min-width:768px){.quote blockquote{font-size:1.875rem}}
.quote cite{margin-top:1rem;font-style:normal;font-size:.875rem;text-transform:uppercase;letter-spacing:.15em;color:var(--muted-foreground);display:block}


/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
}

.btn-primary:hover {
  background-color: rgba(23,29,26,0.9);
}

.btn-sage {
  background-color: var(--sage);
  color: var(--midnight);
  padding: 0.875rem 1.75rem;
}

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

.btn-sage-lg {
  background-color: var(--sage);
  color: var(--midnight);
  padding: 1rem 2rem;
}

.btn-sage-lg:hover {
  background-color: var(--sage-light);
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: rgba(250,251,250,0.95);
  backdrop-filter: blur(12px);
}

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

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--foreground);
}

.mobile-career-btn {
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .desktop-nav { display: flex; }
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -5rem;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23,29,26,0.85), rgba(23,29,26,0.6), transparent);
}

.hero-content {
  position: relative;
  width: 100%;
}

/* ===== Cards / Pillars ===== */
.pillar-card {
  background-color: var(--background);
  padding: 2.5rem;
  transition: background-color 0.2s ease;
}

.pillar-card:hover {
  background-color: rgba(216,220,216,0.3);
}

/* ===== Service Cards ===== */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--sage);
  box-shadow: 0 10px 40px -10px rgba(23,29,26,0.15);
}

.service-card:hover .service-card-title {
  color: var(--sage);
}

/* ===== Forms ===== */
.form-input {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* ===== Footer ===== */
footer a:hover {
  color: #ffffff;
}

/* ===== Utility ===== */
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }

/* ===== Responsive Typography ===== */
@media (max-width: 767px) {
  .text-5xl { font-size: 2.5rem; }
  .text-6xl { font-size: 3rem; }
  .text-7xl { font-size: 3.5rem; }
  .text-4xl { font-size: 2rem; }
  .text-3xl { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:p-10 { padding: 2.5rem; }
}

@media (min-width: 1024px) {
  .lg\:text-\[5\.5rem\] { font-size: 5.5rem; }
}

/* Make the image scale proportionally */
.responsive-img {
  width: 100%;
  max-width: 1200px; /* optional, limits very large images */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Optional: tweak for smaller screens */
@media (max-width: 1024px) {
  .responsive-img {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .responsive-img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .responsive-img {
    max-width: 100%;
  }
}
