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

:root {
  --midnight: #0f172a;
  --midnight-light: #1e3a5f;
  --midnight-soft: #2d4a6f;
  --mint: #5eead4;
  --mint-dark: #0d9488;
  --mint-light: #a5f3fc;
  --mint-pale: #ecfeff;
  --sky: #e0f7fa;
  --lavender: #f0f4ff;
  --peach: #fff1f2;
  --cream: #fefdf8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.05);
  --shadow-xl: 0 20px 60px rgba(15,23,42,0.12), 0 8px 20px rgba(15,23,42,0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Background Blobs ===== */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.bg-blob--1 {
  width: 500px; height: 500px;
  background: var(--mint-light);
  top: -100px; right: -100px;
}
.bg-blob--2 {
  width: 400px; height: 400px;
  background: var(--lavender);
  bottom: 20%; left: -80px;
}
.bg-blob--3 {
  width: 300px; height: 300px;
  background: var(--sky);
  top: 50%; right: 5%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(254,253,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--midnight);
  font-size: 1.1rem;
}
.logo__text { font-family: var(--font-serif); font-size: 1.2rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav__link:hover { color: var(--midnight); background: var(--gray-100); }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__toggle:hover { background: var(--gray-100); }
.nav__toggle-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--midnight);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15,23,42,0.25);
}
.btn--primary:hover {
  background: var(--midnight-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.3);
}
.btn--ghost {
  background: var(--white);
  color: var(--midnight);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover {
  border-color: var(--mint);
  background: var(--mint-pale);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== Section Tags & Titles ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--mint-pale);
  color: var(--mint-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}
.hero__card {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 720px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,234,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(94,234,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(94,234,212,0.15);
  border: 1px solid rgba(94,234,212,0.25);
  border-radius: 100px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero__subheadline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hero__actions .btn--ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

/* Floating Stat Cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 0 8px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card__body { display: flex; flex-direction: column; gap: 2px; }
.stat-card__number {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--midnight);
  line-height: 1.3;
}
.stat-card__label {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about__image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about__image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--mint);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}
.about__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--midnight);
  box-shadow: var(--shadow-md);
}
.about__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* ===== Products ===== */
.products {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--cream) 0%, var(--lavender) 50%, var(--cream) 100%);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__img-wrap {
  overflow: hidden;
  height: 200px;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}
.product-card__body {
  padding: 24px;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Why Us ===== */
.why-us {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-us__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 16px;
}
.why-us__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-light);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--mint-light));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover::before { opacity: 1; }
.why-card__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--mint);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}
.why-card__text {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--cream) 0%, var(--mint-pale) 50%, var(--cream) 100%);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--large { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery__item--large img { height: 300px; }
.gallery__item:not(.gallery__item--large) img { height: 190px; }
.gallery__item--wide { grid-column: 1 / 4; }
.gallery__item--wide img { height: 200px; }

/* ===== Visit / Contact ===== */
.visit {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}
.visit__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit__detail-icon {
  width: 44px; height: 44px;
  background: var(--mint-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  flex-shrink: 0;
}
.visit__detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.visit__detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--midnight);
}
.visit__detail-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mint-dark);
  transition: var(--transition);
}
.visit__detail-link:hover { color: var(--midnight); }

/* Form */
.visit__form-wrap { position: relative; }
.visit__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.visit__form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 6px;
}
.visit__form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(94,234,212,0.15);
}
.form-input::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--mint-pale);
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mint-dark);
}
.form-success.show { display: flex; }

/* ===== Footer ===== */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--mint); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__phone, .footer__email {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__phone:hover, .footer__email:hover { color: var(--mint); }
.footer__address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__grid,
  .why-us__inner,
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav__list.open { transform: translateX(0); }
  .nav__link { padding: 12px 16px; font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 1001; }
  .hero { padding: 120px 0 100px; }
  .hero__card { padding: 36px 28px; }
  .hero__stats { grid-template-columns: 1fr; margin-top: 24px; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--large { grid-column: 1 / -1; }
  .gallery__item--wide { grid-column: 1 / -1; }
  .why-us__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .visit__form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__card { padding: 28px 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: 1; }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
