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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --sand-lighter: #FAF6F2;
  --sand-dark: #C4A882;
  --charcoal: #1E1E1E;
  --charcoal-light: #2D2D2D;
  --slate: #3D3D3D;
  --slate-light: #6B6B6B;
  --off-white: #FDFBF9;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(30,30,30,0.08), 0 1px 2px rgba(30,30,30,0.06);
  --shadow-md: 0 4px 16px rgba(30,30,30,0.10), 0 2px 4px rgba(30,30,30,0.06);
  --shadow-lg: 0 12px 40px rgba(30,30,30,0.12), 0 4px 12px rgba(30,30,30,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.10);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--charcoal);
}
.nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.nav-brand-text {
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,30,30,0.92) 0%, rgba(30,30,30,0.75) 50%, rgba(30,30,30,0.60) 100%),
    url('https://images.pexels.com/photos/17301616/pexels-photo-17301616.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center / cover no-repeat;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 96, 58, 0.15);
  border: 1px solid rgba(192, 96, 58, 0.30);
  color: var(--sand);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(232, 213, 192, 0.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

/* Hero stat cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card--accent {
  background: var(--terracotta);
  color: var(--white);
  grid-column: 1;
  grid-row: 1;
}
.stat-card--sand {
  background: var(--sand);
  color: var(--charcoal);
  grid-column: 2;
  grid-row: 1;
}
.stat-card--dark {
  background: var(--charcoal-light);
  color: var(--white);
  grid-column: 1;
  grid-row: 2;
}
.stat-card--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  grid-column: 2;
  grid-row: 2;
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  opacity: 0.85;
}
.stat-card-icon svg {
  width: 100%;
  height: 100%;
}

.stat-card-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--sand-light);
  z-index: 2;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* ========== SECTION COMMON ========== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 600px;
}

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

/* ========== PRODUCTS ========== */
.products {
  background: var(--sand-light);
  padding: 96px 0;
}

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

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

.product-card-img {
  height: 200px;
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px;
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.65;
}

/* ========== ABOUT ========== */
.about {
  background: var(--off-white);
  padding: 96px 0;
}

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

.about-images {
  position: relative;
  min-height: 500px;
}

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

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

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--terracotta);
}
.about-feature-icon svg {
  width: 100%;
  height: 100%;
}

/* ========== WHY ========== */
.why {
  background: var(--charcoal);
  padding: 96px 0;
}

.why .section-tag {
  color: var(--terracotta-light);
}

.why .section-title {
  color: var(--white);
}

.why .section-desc {
  color: rgba(232, 213, 192, 0.70);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 96, 58, 0.30);
}

.why-card-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: rgba(192, 96, 58, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-title {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.95rem;
  color: rgba(232, 213, 192, 0.65);
  line-height: 1.7;
}

/* ========== VISIT ========== */
.visit {
  background: var(--sand-light);
  padding: 96px 0;
}

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

.visit-content {
  padding: 56px 48px;
}

.visit-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 36px;
}

.visit-details {
  display: grid;
  gap: 24px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.visit-detail-icon svg {
  width: 20px;
  height: 20px;
}

.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.visit-detail span {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}

.visit-map {
  min-height: 400px;
  background: var(--sand);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--off-white);
  padding: 96px 0;
}

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

.contact-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-methods {
  display: grid;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--transition), transform var(--transition);
}
.contact-method:hover {
  background: var(--sand);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-method-icon svg {
  width: 100%;
  height: 100%;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-optional {
  font-weight: 400;
  color: var(--slate-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-lighter);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--sand-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(192, 96, 58, 0.08);
  border: 1px solid rgba(192, 96, 58, 0.20);
  border-radius: var(--radius-sm);
  color: var(--terracotta-dark);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(232, 213, 192, 0.60);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}

.footer-links ul {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  font-size: 0.9rem;
  color: rgba(232, 213, 192, 0.60);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(232, 213, 192, 0.40);
}
.footer-bottom a {
  color: rgba(232, 213, 192, 0.50);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(192, 96, 58, 0.10);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle {
    display: block;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-cards {
    max-width: 480px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images {
    max-width: 500px;
  }
  .visit-wrapper {
    grid-template-columns: 1fr;
  }
  .visit-map {
    min-height: 300px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-headline {
    font-size: 1.85rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-img-float {
    right: 0;
    bottom: -24px;
  }
  .visit-content {
    padding: 36px 24px;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 20px 16px;
  }
}
