@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

:root {
  --color-primary: #4a5d4e;
  --color-primary-light: #5f7463;
  --color-secondary: #f2c94c;
  --color-sand: #eae7df;
  --color-stone: #fdfcf8;
  --color-dark: #2d2926;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-stone);
}

body {
  font-family: var(--font-serif);
  color: var(--color-dark);
  background: var(--color-stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  letter-spacing: -0.05em;
}

p {
  font-family: var(--font-sans);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Utilities */
.flex {
  display: flex;
}

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

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.grid {
  display: grid;
}

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

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

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

  .sm-flex-row {
    flex-direction: row;
  }

  .sm-w-auto {
    width: auto;
  }

  .sm-w-2-5 {
    width: 40%;
  }

  .sm-w-3-5 {
    width: 60%;
  }

  .sm-mt-0 {
    margin-top: 0;
  }

  .sm-mt-1 {
    margin-top: 0.25rem;
  }
}

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

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

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

  .md-col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md-flex {
    display: flex;
  }

  .md-block {
    display: block;
  }

  .md-hidden {
    display: none;
  }

  .md-flex-row {
    flex-direction: row;
  }

  .md-p-10 {
    padding: 2.5rem;
  }

  .md-p-12 {
    padding: 3rem;
  }

  .md-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md-mt-0 {
    margin-top: 0;
  }

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

  .md-mb-0 {
    margin-bottom: 0;
  }

  .md-gap-10 {
    gap: 2.5rem;
  }
}

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

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

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

  .lg-col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg-gap-16 {
    gap: 4rem;
  }

  .lg-gap-20 {
    gap: 5rem;
  }

  .lg-gap-24 {
    gap: 6rem;
  }

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

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

/* Text colors */
.text-white {
  color: #fff;
}

.text-dark {
  color: var(--color-dark);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-gray-600 {
  color: #5a5550;
}

.text-gray-900 {
  color: #2d2926;
}

.text-gray-500 {
  color: #88817a;
}

.text-gray-400 {
  color: #a59e98;
}

.text-gray-300 {
  color: #c2bbb5;
}

.text-yellow-400 {
  color: #facc15;
}

.text-yellow-500 {
  color: #eab308;
}

.text-red-400 {
  color: #f87171;
}

.text-sand {
  color: var(--color-sand);
}

.text-sand-light {
  color: var(--color-stone);
}

/* Backgrounds */
.bg-white {
  background: #fff;
}

.bg-dark {
  background: var(--color-dark);
}

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

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

.bg-stone {
  background: var(--color-stone);
}

.bg-sand {
  background: var(--color-sand);
}

.bg-gray-100 {
  background: #f4f2ec;
}

.bg-gray-200 {
  background: #eae7df;
}

.bg-gray-700 {
  background: #3f3a36;
}

.bg-red-400 {
  background: #f87171;
}

.bg-transparent {
  background: transparent;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.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;
}

@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-xl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lg-text-86px {
    font-size: 86px;
  }
}

.text-9px {
  font-size: 9px;
}

.text-10px {
  font-size: 10px;
}

.text-11px {
  font-size: 11px;
}

.text-12px {
  font-size: 12px;
}

.text-13px {
  font-size: 16px;
}

.text-18px {
  font-size: 18px;
}

.text-20px {
  font-size: 20px;
}

.text-86px {
  font-size: 86px;
}

.text-150px {
  font-size: 150px;
}

.text-180px {
  font-size: 180px;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.font-mono {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

.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;
}

.font-black {
  font-weight: 900;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

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

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

.tracking-wider {
  letter-spacing: 0.05em;
}

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

.tracking-015em {
  letter-spacing: 0.15em;
}

.tracking-02em {
  letter-spacing: 0.2em;
}

.tracking-04em {
  letter-spacing: 0.4em;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

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

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

.leading-09 {
  line-height: 0.9;
}

.leading-095 {
  line-height: 0.95;
}

.leading-11 {
  line-height: 1.1;
}

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

.whitespace-nowrap {
  white-space: nowrap;
}

/* Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.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-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

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

.pb-8 {
  padding-bottom: 2rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

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

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

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

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

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

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

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

.mt-20 {
  margin-top: 5rem;
}

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

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

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-32 > * + * {
  margin-top: 8rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

/* Sizing */
.w-full {
  width: 100%;
}

.w-2 {
  width: 0.5rem;
}

.w-0\.5 {
  width: 0.125rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-23 {
  width: 66.666667%;
}

.w-2-3 {
  width: 66.666667%;
}

.w-0 {
  width: 0;
}

.w-1px {
  width: 1px;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}



.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-64 {
  height: 16rem;
}

.h-screen {
  height: 100vh;
}

.h-40vh {
  height: 40vh;
}

.h-60vh {
  height: 60vh;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-450 {
  min-height: 450px;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.flex-grow {
  flex-grow: 1;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Borders */
.border {
  border: 1px solid;
}

.border-2 {
  border: 2px solid;
}

.border-4 {
  border: 4px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-l-2 {
  border-left: 2px solid;
}

.border-dashed {
  border-style: dashed;
}

.border-gray-100 {
  border-color: #f4f2ec;
}

.border-gray-50 {
  border-color: #fdfcf8;
}

.border-gray-200 {
  border-color: #eae7df;
}

.border-gray-300 {
  border-color: #c2bbb5;
}

.border-gray-400 {
  border-color: #88817a;
}

.border-gray-800 {
  border-color: #423e3a;
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-primary {
  border-color: var(--color-primary);
}

/* Divide (for lists/tables) */
.divide-y > * + * {
  border-top: 1px solid;
}

.divide-gray-200 > * + * {
  border-color: #eae7df;
}

.divide-gray-400 > * + * {
  border-color: #88817a;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-26 {
  border-radius: 26px;
}

.rounded-32 {
  border-radius: 32px;
}

.rounded-40 {
  border-radius: 40px;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  inset: 0;
}

.inset-2 {
  inset: 0.5rem;
}

.inset-4 {
  inset: 1rem;
}

.inset-n15 {
  inset: -15%;
}

.top-0 {
  top: 0;
}

.top-4 {
  top: 1rem;
}

.top-8 {
  top: 2rem;
}

.top-20 {
  top: 5rem;
}

.top-1-2 {
  top: 50%;
}

.top-1-4 {
  top: 25%;
}

.bottom-0 {
  bottom: 0;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-20 {
  bottom: 5rem;
}

.right-0 {
  right: 0;
}

.right-4 {
  right: 1rem;
}

.right-8 {
  right: 2rem;
}

.right-1-4 {
  right: 25%;
}

.left-0 {
  left: 0;
}

.left-4 {
  left: 1rem;
}

.left-10 {
  left: 2.5rem;
}

.left-n8 {
  left: -2rem;
}

.left-n10 {
  left: -2.5rem;
}

.left-n12 {
  left: -3rem;
}

.right-n4 {
  right: -1rem;
}

.right-n8 {
  right: -2rem;
}

.right-n24 {
  right: -6rem;
}

.bottom-n4 {
  bottom: -1rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

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

.z-n10 {
  z-index: -10;
}

/* Effects */
.opacity-2 {
  opacity: 0.02;
}

.opacity-3 {
  opacity: 0.03;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.drop-shadow {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.drop-shadow-xl {
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.blur-xl {
  filter: blur(24px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.pointer-events-none {
  pointer-events: none;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.shadow-gray-100 {
  --shadow-color: rgba(244, 242, 236, 0.8);
}

.shadow-gray-200 {
  --shadow-color: rgba(234, 231, 223, 0.5);
}

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

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-white {
  --tw-gradient-from: #fff;
  --tw-gradient-stops:
    var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-white {
  --tw-gradient-stops:
    var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

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

.resize-none {
  resize: none;
}

/* Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition:
    background-color,
    border-color,
    color 0.2s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-1000 {
  transition-duration: 1s;
}

/* Transform */
.rotate-90 {
  transform: rotate(90deg);
}

.origin-right {
  transform-origin: right;
}

.scale-110 {
  transform: scale(1.1);
}

.translate-y-1 {
  transform: translateY(0.25rem);
}

.translate-y-n2 {
  transform: translateY(-0.5rem);
}

.translate-y-full {
  transform: translateY(100%);
}

.translate-y-0 {
  transform: translateY(0);
}

/* Card hover overlay effects */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 41, 38, 0.9) 0%,
    rgba(45, 41, 38, 0.6) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.group:hover .card-overlay {
  opacity: 1;
}

.card-content-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.group:hover .card-content-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Image hover effects */
.img-hover-zoom {
  transition: transform 0.6s ease;
}

.group:hover .img-hover-zoom {
  transform: scale(1.08);
}

/* Hover states */
.hover-opacity-60:hover {
  opacity: 0.6;
}

.hover-opacity-80:hover {
  opacity: 0.8;
}

.hover-opacity-100:hover {
  opacity: 1;
}

.hover-text-white:hover {
  color: #fff;
}

.hover-text-gray-300:hover {
  color: #c2bbb5;
}

.hover-text-primary:hover {
  color: var(--color-primary);
}

.hover-text-primary-light:hover {
  color: var(--color-primary-light);
}

.hover-text-dark:hover {
  color: var(--color-dark);
}

.hover-bg-white:hover {
  background: #fff;
}

.hover-bg-sand:hover {
  background: var(--color-sand);
}

.hover-bg-gray-100:hover {
  background: #f4f2ec;
}

.hover-bg-primary-light:hover {
  background: var(--color-primary-light);
}

.hover-bg-white-20:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hover-border-dark:hover {
  border-color: var(--color-dark);
}

.hover-shadow-xl:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hover-translate-y-n2:hover {
  transform: translateY(-0.5rem);
}

.hover-scale-105:hover {
  transform: scale(1.05);
}

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

/* Group hover */
.group:hover .group-hover-scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover-scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover-scale-150 {
  transform: scale(1.5);
}

.group:hover .group-hover-w-full {
  width: 100%;
}

.group:hover .group-hover-w-16 {
  width: 4rem;
}

.group:hover .group-hover-opacity-100 {
  opacity: 1;
}

.group:hover .group-hover-text-primary {
  color: var(--color-primary);
}

.group:hover .group-hover-translate-x-1 {
  transform: translateX(0.25rem);
}

/* Focus */
.focus-outline-none:focus {
  outline: none;
}

.focus-ring-primary:focus {
  box-shadow: 0 0 0 2px rgba(74, 93, 78, 0.5);
}

/* Form */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-stone);
  border: 1px solid #eae7df;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 93, 78, 0.5);
}

/* Icons - Lucide Style */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 2.5rem;
  height: 2.5rem;
}

/* Icon in buttons */
.btn .icon {
  margin-right: 0.5rem;
}

/* Icon alignment helpers */
.icon-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Components */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 5rem;
  background: var(--color-sand);
  color: var(--color-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar .text-12px {
  font-size: 14px;
}

.navbar .text-11px {
  font-size: 13px;
}

.navbar .text-10px {
  font-size: 12px;
}

.navbar .logo-text,
.navbar .logo-subtext {
  color: var(--color-dark);
}

.nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding-bottom: 0.25rem;
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  border-bottom-color: currentColor;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  z-index: 51;
  transition: color 0.3s ease;
}

.navbar .mobile-menu-btn,
.navbar.menu-open .mobile-menu-btn {
  color: var(--color-dark);
}

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

.mobile-menu {
  display: flex;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-stone);
  padding: 1rem 1.5rem 2rem;
  z-index: 49;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.mobile-menu-open {
  overflow: hidden;
}

.navbar.menu-open {
  background: var(--color-sand);
  color: var(--color-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.menu-open .logo-text,
.navbar.menu-open .logo-subtext {
  color: var(--color-dark);
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ece8df;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.mobile-nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-home {
  height: 60vh;
  min-height: 320px;
}

.hero-page {
  height: 60vh;
  min-height: 450px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000bc;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  z-index: 10;
}

.hero-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  pointer-events: none;
  z-index: 20;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 380px;
  width: 100%;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-home-content {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-home-content .container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-home-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
}

.hero-home-entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  width: 100%;
}

.hero-home-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 0.375rem;
  color: #fff;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-home-entry:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-home-entry-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-home-entry-arrow {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1;
  opacity: 0.65;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hero-home-entry:hover .hero-home-entry-arrow {
  transform: translateX(4px);
  opacity: 1;
}

@media (min-width: 640px) {
  .hero-home-entries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 34rem;
  }
}

@media (max-width: 639px) {
  .hero-home-entries {
    width: 100%;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-core-label {
  font-size: 13px;
}

@media (min-width: 1024px) {
  .about-overview-grid {
    align-items: stretch;
  }

  .about-overview-text,
  .about-overview-card-wrap {
    height: 100%;
  }

  .about-overview-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .about-overview-card > .relative.z-10 {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .about-overview-card .about-core-list {
    flex: 1;
  }
}

html[lang="ja"] .about-core-label {
  text-transform: none;
  letter-spacing: 0.04em;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #fff;
  width: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  min-width: 200px;
  white-space: nowrap;
}

.btn-primary {
  background: #fff;
  color: var(--color-primary);
  padding: 1rem 2rem;
  gap: 0.5rem;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 2rem;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
}

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

.card {
  background: #fff;
  border-radius: 32px;
  padding: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #eae7df;
  transition: all 0.5s ease;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 16rem;
  overflow: hidden;
  border-radius: 26px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

.card-content {
  padding: 2rem 1.5rem;
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-style: italic;
  z-index: 10;
  pointer-events: none;
}

.gallery-card {
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e5e7eb;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.index-gallery-card__media {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.625rem;
  overflow: hidden;
}

.index-gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.index-gallery-card:hover .index-gallery-card__media img {
  transform: scale(1.06);
}

.index-gallery-card__overlay {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.625rem;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0.02) 100% );
  pointer-events: none;
}

.index-gallery-card__content {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  text-align: center;
  z-index: 1;
  color: #fff;
}

.index-gallery-card__content h4 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.index-gallery-card__content p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* Index - Contact CTA Banner */
.index-cta-banner__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.index-cta-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.index-cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 201, 76, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.index-cta-banner__inner::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.index-cta-banner__link:hover .index-cta-banner__inner {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(45, 41, 38, 0.18);
}

.index-cta-banner__content {
  position: relative;
  z-index: 1;
}

.index-cta-banner__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.index-cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  max-width: 36rem;
}

.index-cta-banner__desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
}

.index-cta-banner__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}

.index-cta-banner__link:hover .index-cta-banner__action {
  background: var(--color-secondary);
  color: var(--color-dark);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .index-cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    gap: 2rem;
  }

  .index-cta-banner__action {
    flex-shrink: 0;
    align-self: center;
  }
}

html[lang="ja"] .index-cta-banner__eyebrow {
  text-transform: none;
  letter-spacing: 0.2em;
}

html[lang="ja"] .index-cta-banner__action {
  text-transform: none;
  letter-spacing: 0.06em;
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: #fff;
  color: #88817a;
}

.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(74, 93, 78, 0.2);
}

.star-btn {
  color: #d1d5db;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}

.star-btn:hover,
.star-btn.filled {
  color: #facc15;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

footer {
  background: var(--color-dark);
  color: #fff;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 2.5rem;
  height: 2.5rem;
}

.lang-switch-btn.active {
  opacity: 1;
  font-weight: 700;
}

.lang-switch-btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 2px;
  font-family: var(--font-sans);
}

/* Video Section */
.video-section {
  position: relative;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity, border-radius;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Japanese typography */
html[lang="ja"] {
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Meiryo", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

html[lang="ja"] body {
  line-height: 1.8;
}

html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4,
html[lang="ja"] h5,
html[lang="ja"] h6 {
  letter-spacing: 0.04em;
}

html[lang="ja"] .tracking-tighter,
html[lang="ja"] .tracking-tight {
  letter-spacing: 0.02em;
}

html[lang="ja"] .nav-link {
  text-transform: none;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
}

html[lang="ja"] .mobile-nav-link {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

html[lang="ja"] .hero-home-entry-label {
  letter-spacing: 0.04em;
}

html[lang="ja"] .btn {
  text-transform: none;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

html[lang="ja"] .italic {
  font-style: normal;
}

html[lang="ja"] .uppercase:not(.logo-subtext) {
  text-transform: none;
  letter-spacing: 0.06em;
}

/* ===================== */
/* Mobile Responsive     */
/* ===================== */

@media (max-width: 767px) {
  /* Navbar - increase touch target */
  .navbar {
    height: 4rem;
  }

  .mobile-menu {
    top: 4rem;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .navbar .h-10 {
    height: 28px;
  }

  /* Hero - smaller on mobile */
  .hero-carousel {
    height: 55vh;
    min-height: 280px;
  }

  .hero-home {
    height: 55vh;
    min-height: 280px;
  }

  .hero-page {
    height: 40vh;
    min-height: 240px;
  }

  .hero-frame {
    inset: 8px;
    border-radius: 20px;
  }

  /* Sections - reduce padding on mobile */
  .py-32 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-24 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Gallery cards */
  .index-gallery-card__media {
    border-radius: 1.25rem;
  }

  .index-gallery-card__overlay {
    border-radius: 1.25rem;
  }

  .index-gallery-card__content {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .index-gallery-card__content h4 {
    font-size: 1rem;
  }

  .index-gallery-card__content p {
    font-size: 0.75rem;
  }

  /* Card components */
  .card {
    border-radius: 20px;
  }

  .card-image {
    height: 12rem;
    border-radius: 16px;
  }

  .card-content {
    padding: 1.5rem 1rem;
  }

  .card-number {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }

  /* Typography adjustments */
  .text-5xl {
    font-size: 2rem;
  }

  .text-4xl {
    font-size: 1.75rem;
  }

  .text-3xl {
    font-size: 1.5rem;
  }

  /* Video section */
  .video-section .py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Contact form on mobile */
  .btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Contact info cards - stack vertically */
  .contact-info-cards {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Footer */
  .footer-grid-mobile-gap {
    gap: 2rem;
  }

  /* Misc mobile fixes */
  .space-y-32 > * + * {
    margin-top: 3rem;
  }

  .hero-home-entries {
    width: fit-content;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home-entry {
    padding: 0.75rem 1rem;
    min-width: 0;
  }

  .hero-home-entry-label {
    font-size: 12px;
  }

  /* Breadcrumb / page titles - smaller */
  .text-150px {
    font-size: 80px;
  }

  .text-180px {
    font-size: 100px;
  }

  /* Prevent overflow on large decorative elements */
  .absolute.right-n24,
  .absolute.right-n8,
  .absolute.left-n8,
  .absolute.left-n10,
  .absolute.left-n12 {
    display: none;
  }

  /* Form inputs touch-friendly */
  .form-input {
    padding: 0.875rem 1rem;
    font-size: 16px; /* prevent iOS zoom */
  }

  /* Radio buttons touch-friendly */
  input[type="radio"] {
    width: 18px;
    height: 18px;
  }

  /* Ensure images don't overflow */
  .img-hover-zoom {
    width: 100%;
    height: auto;
    display: block;
  }

  /* About page core list */
  .about-core-list {
    font-size: 12px;
  }

  .about-core-label {
    font-size: 12px;
  }

  /* Plastic materials cards */
  .plastic-card-mobile {
    padding: 0.25rem;
  }
}

/* Health beauty page - single column: image on top, text below */
@media (max-width: 1023px) {
  .health-product-row .health-product-row__media {
    order: 1;
  }

  .health-product-row .health-product-row__content {
    order: 2;
  }

  .health-product-row .health-product-row__media .absolute {
    display: none;
  }

  .health-product-row .health-product-row__media .rounded-40 {
    border-radius: 1.25rem;
  }

  .health-product-row .health-product-row__media .rounded-32 {
    border-radius: 1rem;
  }
}

@media (max-width: 479px) {
  /* Extra small screens */
  .hero-carousel {
    height: 45vh;
    min-height: 220px;
  }

  .hero-home {
    height: 45vh;
    min-height: 220px;
  }

  .hero-page {
    height: 35vh;
    min-height: 200px;
  }

  .hero-home-entry {
    padding: 0.625rem 0.875rem;
  }

  .hero-home-entry-label {
    font-size: 11px;
  }

  .hero-home-entries {
    max-width: 13.5rem;
  }

  /* Contact action cards - full width stacked */
  .flex.gap-6 {
    flex-direction: column;
    gap: 0.75rem;
  }

  .grid.grid-cols-1.md-grid-cols-2.gap-12.lg-gap-24.mb-24,
  .grid.grid-cols-1.md-grid-cols-2.gap-6 {
    gap: 1.5rem;
  }

  /* Inquiry type radio layout - vertical */
  .flex.space-x-4 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
