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

:root {
  --charcoal: #3D4F60;
  --charcoal-light: #5A6F82;
  --coral: #E8735A;
  --coral-light: #F49782;
  --coral-pale: #FDF0EC;
  --cream: #FDF6F0;
  --cream-dark: #F7EDE4;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6B7F91;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(61,79,96,0.06);
  --shadow-md: 0 8px 30px rgba(61,79,96,0.10);
  --shadow-lg: 0 20px 60px rgba(61,79,96,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }

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

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

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

.accent { color: var(--coral); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,115,90,0.35);
}
.btn--primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid rgba(61,79,96,0.15);
}
.btn--ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn--nav:hover { background: var(--coral-light); }

.btn--full { width: 100%; justify-content: center; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,79,96,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(253,246,240,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
}
.logo:hover { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-pale) 50%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  background: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(61,79,96,0.15);
}

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Products ── */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-name {
  font-size: 1.25rem;
  color: var(--charcoal);
  padding: 20px 24px 8px;
}

.product-desc {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 24px 24px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.about-feature span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--coral-pale) 0%, var(--cream) 100%);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-content {
  padding: 60px 56px;
}
.visit-content .section-title { margin-bottom: 16px; }
.visit-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--coral); }

.visit-map {
  min-height: 400px;
  background: var(--cream-dark);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover {
  background: var(--coral-pale);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.contact-method span,
.contact-method a {
  font-size: 0.9rem;
  color: var(--text-light);
}
.contact-method a:hover { color: var(--coral); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-title {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(61,79,96,0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,90,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 32px;
  animation: fadeIn 0.4s ease;
}
.form-success strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #4A9D6E;
}
.form-success span {
  font-size: 0.9rem;
  color: var(--text-light);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.925rem; line-height: 1.7; max-width: 280px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--coral-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.925rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--coral-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(61,79,96,0.08);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-height: 360px; }
  .hero-float-card { left: 16px; bottom: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }

  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-secondary { right: 16px; bottom: -20px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .visit-content { padding: 36px 24px; }
}
