/* ============================================
   Gigoro Studio - Static Website Styles
   Reconstructed from production build
   ============================================ */

/* ---- CSS Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #111827;
  background-color: #f9fcff;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
}

input {
  font-family: inherit;
}

/* ---- Layout Utilities ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ---- Max Width Container ---- */
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-none { max-width: none; }

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

/* ---- Spacing ---- */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-20 { padding-top: 5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.mb-2 { margin-bottom: 0.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; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-24 { margin-top: 6rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

/* ---- Typography ---- */
.text-xs { font-size: 0.75rem; line-height: calc(1 / 0.75); }
.text-sm { font-size: 0.875rem; line-height: calc(1.25 / 0.875); }
.text-base { font-size: 1rem; line-height: 1.5; }
.text-lg { font-size: 1.125rem; line-height: calc(1.75 / 1.125); }
.text-xl { font-size: 1.25rem; line-height: calc(1.75 / 1.25); }
.text-2xl { font-size: 1.5rem; line-height: calc(2 / 1.5); }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-4xl { font-size: 2.25rem; line-height: calc(2.5 / 2.25); }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }

/* ---- Colors ---- */
.text-white { color: #ffffff; }
.text-blue-50 { color: #eff6ff; }
.text-blue-100 { color: #dbeafe; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-purple-500 { color: #a855f7; }
.text-pink-500 { color: #ec4899; }
.text-orange-400 { color: #fb923c; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

/* ---- Backgrounds ---- */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }

/* ---- Borders ---- */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-300 { border-color: #93c5fd; }

/* ---- Border Radius ---- */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

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

/* ---- Aspect Ratio ---- */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ---- Width / Height ---- */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

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

/* ---- Lists ---- */
.list-disc { list-style-type: disc; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* ---- Inline Flex ---- */
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }

/* ---- Pointer Events ---- */
.pointer-events-none { pointer-events: none; }

/* ---- Position ---- */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.left-4 { left: 1rem; }
.z-50 { z-index: 50; }

/* ---- Transitions ---- */
.transition-colors { transition-property: color, background-color, border-color; 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-opacity { transition-property: opacity; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ---- Focus States ---- */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #2563eb; }
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:border-transparent:focus { border-color: transparent; }

/* ---- Hover States ---- */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:border-gray-200:hover { border-color: #e5e7eb; }
.hover\:border-gray-400:hover { border-color: #9ca3af; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:text-gray-800:hover { color: #1f2937; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

/* ---- Sticky Header Shadow ---- */
.header-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ---- Instagram Gradient ---- */
.bg-instagram {
  background: linear-gradient(to right, #a855f7, #ec4899, #fb923c);
}

/* ---- Placeholder SVG ---- */
.placeholder-svg {
  color: #d1d5db;
}

/* ---- Rotated Chevron ---- */
.rotate-180 {
  transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE - Tablet & Desktop
   ============================================ */

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex { display: flex; }
}

@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\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   MISSING TAILWIND UTILITIES
   ============================================ */

/* Spacing */
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* Flex / Grid */
.items-start {
  align-items: flex-start;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

/* Borders */
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

/* Typography */
.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7;
}

.prose-sm p + p {
  margin-top: 1rem;
}

.prose-sm ul,
.prose-sm ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.prose-sm li + li {
  margin-top: 0.25rem;
}

/* ============================================
   HOVER STATES
   ============================================ */

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-green-600:hover {
  background-color: #16a34a;
}

.hover\:border-blue-300:hover {
  border-color: #93c5fd;
}

.hover\:border-gray-200:hover {
  border-color: #e5e7eb;
}

.hover\:border-gray-400:hover {
  border-color: #9ca3af;
}

.hover\:text-blue-800:hover {
  color: #1e40af;
}

.hover\:text-gray-900:hover {
  color: #111827;
}

.hover\:underline:hover {
  text-decoration: underline;
}

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

.hover\:shadow-sm:hover {
  box-shadow:
    0 1px 2px 0 rgb(0 0 0 / 0.05);
}

/* ============================================
   FOCUS STATES
   ============================================ */

.focus\:outline-none:focus {
  outline: none;
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:ring-2:focus {
  box-shadow:
    0 0 0 2px rgb(59 130 246 / 0.5);
}

.focus\:ring-blue-500:focus {
  box-shadow:
    0 0 0 2px rgb(59 130 246 / 0.5);
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion-btn {
  width: 100%;
}

.accordion-content {
  display: none;
}

.accordion-content.open {
  display: block;
}

.chevron {
  transition: transform 0.2s ease;
}

.chevron.rotate-180 {
  transform: rotate(180deg);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */

.privacy-item + .privacy-item {
  margin-top: 2rem;
}