/* -----------------------------------------------------------------------
   Static stylesheet for annadehtiarova.com
   Hand-compiled equivalent of the Tailwind utility classes actually used
   on this page (replaces the Tailwind CDN runtime — no JIT compile at
   load time, no console warning, smaller payload).
   Breakpoints follow Tailwind defaults: sm 640px, md 768px, lg 1024px.
----------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .font-display { font-family: 'Space Grotesk', sans-serif; }

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

.tracking-label { letter-spacing: 0.08em; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Layout */
.bg-white { background-color: #ffffff; }
.antialiased { -webkit-font-smoothing: antialiased; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.-mr-2 { margin-right: -0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.max-w-md { max-width: 28rem; }
.max-w-\[1600px\] { max-width: 1600px; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-20 { height: 5rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }

.p-2 { padding: 0.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.pb-16 { padding-bottom: 4rem; }

.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\.15\] { line-height: 1.15; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }
.block { display: block; }

.order-1 { order: 1; }
.order-2 { order: 2; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

.border-t { border-top: 1px solid currentColor; }
.border-b { border-bottom: 1px solid currentColor; }
.border-neutral-200 { border-color: #e5e5e5; }

.uppercase { text-transform: uppercase; }
.underline { text-decoration-line: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-neutral-300 { text-decoration-color: #d4d4d4; }

.font-semibold { font-weight: 600; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.text-neutral-500 { color: #737373; }
.text-label-custom { color: #5D5D5D; }
.text-neutral-600 { color: #525252; }
.text-neutral-900 { color: #171717; }

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:text-neutral-900:hover { color: #171717; }
.hover\:decoration-neutral-900:hover { text-decoration-color: #171717; }

/* ---------------------------- sm: 640px --------------------------- */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* ---------------------------- md: 768px --------------------------- */
@media (min-width: 768px) {
  .md\:h-24 { height: 6rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pb-20 { padding-bottom: 5rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
  .md\:max-w-\[80vw\] { max-width: 80vw; }
}

/* ---------------------------- lg: 1024px --------------------------- */
@media (min-width: 1024px) {
  .lg\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:max-w-md { max-width: 28rem; }
}

/* -------------------------- Mobile menu drawer ---------------------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 60;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 300ms ease;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.5rem;
  flex: 1 1 auto;
  overflow-y: auto;
}

.mobile-drawer-links a {
  display: block;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 600;
  padding: 0.5rem 0;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid #e5e5e5;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .mobile-drawer,
  .mobile-overlay { display: none; }
}
