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

:root {
  --burgundy: #7B1E3A;
  --burgundy-dark: #5C1529;
  --burgundy-light: #9E2A4A;
  --blush: #FADADD;
  --blush-light: #FFF5F5;
  --blush-dark: #E8B4B8;
  --cream: #FFF9F9;
  --white: #FFFFFF;
  --dark: #1A0A10;
  --dark-soft: #2D1520;
  --gray: #6B5060;
  --gray-light: #9E8090;
  --gray-lighter: #D4B8C0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 30, 58, 0.08);
  --shadow-md: 0 8px 30px rgba(123, 30, 58, 0.12);
  --shadow-lg: 0 16px 50px rgba(123, 30, 58, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ===== GEOMETRIC DECORATIONS ===== */
.geo-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--burgundy);
  top: -200px;
  right: -200px;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--blush-dark);
  bottom: 10%;
  left: -150px;
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid var(--burgundy);
  top: 40%;
  right: -60px;
  opacity: 0.03;
}

.geo-square {
  width: 200px;
  height: 200px;
  background: var(--blush-dark);
  bottom: 30%;
  left: 5%;
  transform: rotate(45deg);
  opacity: 0.03;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 30, 58, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 249, 249, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--burgundy);
  z-index: 1001;
}

.logo-mark {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: var(--burgundy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.logo-wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo--light .logo-mark {
  background: var(--white);
  color: var(--burgundy);
}

.logo--light .logo-wordmark {
  color: var(--white);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-soft);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--burgundy);
  background: rgba(123, 30, 58, 0.06);
}

.btn-nav {
  background: var(--burgundy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 22px !important;
}

.btn-nav:hover {
  background: var(--burgundy-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before { transform: translateY(-6px); }
.hamburger::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translateY(0);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 30, 58, 0.3);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 30, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 17px 28px;
  font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 40%, var(--white) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(250, 218, 221, 0.5);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(123, 30, 58, 0.06);
  bottom: -50px;
  left: -50px;
}

.hero-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush-dark), var(--burgundy-light), var(--blush));
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(123, 30, 58, 0.1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--burgundy);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-lighter);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  padding-left: 40px;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-primary {
  width: 100%;
  aspect-ratio: 520/640;
}

.hero-card-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(123, 30, 58, 0.4), transparent);
  pointer-events: none;
}

.hero-card-secondary {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 240px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.hero-card-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-floating-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-floating-badge svg {
  color: #F5A623;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  color: var(--cream);
}

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--white);
}

.label-line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--burgundy);
  border-radius: 3px;
  flex-shrink: 0;
}

.label-line--light {
  background: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

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

.section-desc--light {
  color: rgba(255, 255, 255, 0.8);
}

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

.section-header--center .section-desc {
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

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

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

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 30, 58, 0.15), transparent 50%);
  pointer-events: none;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-experience-badge .exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-experience-badge .exp-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

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

.about-body {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-soft);
}

.about-features li svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(250, 218, 221, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(250, 218, 221, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-card-bg {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(250, 218, 221, 0.06);
  pointer-events: none;
}

.product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(250, 218, 221, 0.15);
  color: var(--blush);
  margin-bottom: 20px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.product-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

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

.why-content .section-title {
  margin-bottom: 18px;
}

.why-body {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blush-dark);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.why-item-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  height: 620px;
}

.why-img-stack {
  position: relative;
  height: 100%;
}

.why-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.why-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-accent-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 160px;
  height: 160px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  pointer-events: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
}

.cta-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -60px;
}

.cta-dots {
  position: absolute;
  bottom: 30px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 10px;
}

.cta-dots::before,
.cta-dots::after {
  content: '';
}

.cta-dots div {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

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

.visit-info .section-title {
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.visit-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blush-light);
  color: var(--burgundy);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 2px;
}

.visit-detail span,
.visit-detail a {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.visit-detail a:hover {
  color: var(--burgundy);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  background: var(--blush-light);
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--blush-dark);
}

.map-placeholder svg {
  color: var(--burgundy);
  margin-bottom: 12px;
  opacity: 0.6;
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-soft);
  margin-bottom: 16px;
}

.visit-visual {
  position: relative;
}

.visit-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.visit-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 30, 58, 0.2), transparent 40%);
  pointer-events: none;
}

.visit-hours-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  max-width: 280px;
}

.hours-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--burgundy);
  color: var(--white);
  flex-shrink: 0;
}

.visit-hours-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.visit-hours-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

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

.contact-info .section-title {
  margin-bottom: 18px;
}

.contact-body {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--dark-soft);
  font-weight: 500;
  transition: var(--transition);
}

.contact-method:hover {
  color: var(--burgundy);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-geo-deco {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}

.geo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.3;
}

.geo-dot:nth-child(2) { opacity: 0.5; }
.geo-dot:nth-child(3) { opacity: 0.7; }

.geo-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--burgundy), transparent);
  opacity: 0.2;
  margin-left: 4px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 30, 58, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--blush-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 30, 58, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  background: var(--blush-light);
  border-radius: var(--radius-lg);
  color: var(--burgundy);
}

.form-success svg {
  width: 48px;
  height: 48px;
}

.form-success p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush-dark), var(--burgundy-light), var(--blush));
}

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

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blush);
}

.footer-contact span {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    padding-left: 20px;
  }

  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-grid {
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .btn-nav {
    text-align: center;
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    padding-left: 0;
    order: -1;
  }

  .hero-card-secondary {
    left: -10px;
    width: 180px;
  }

  .hero-floating-badge {
    right: 0;
  }

  .hero-stats {
    gap: 16px;
  }

  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 460px;
    order: -1;
  }

  .about-img-float {
    right: -10px;
    width: 200px;
  }

  .about-experience-badge {
    right: -10px;
    padding: 16px 20px;
  }

  .about-experience-badge .exp-number {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .why-visual {
    height: 400px;
    order: -1;
  }

  .visit-visual {
    order: -1;
  }

  .visit-img-main {
    height: 360px;
  }

  .visit-hours-card {
    left: 10px;
    bottom: -16px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .hero-card-secondary {
    width: 150px;
    bottom: -20px;
  }

  .about-images {
    height: 380px;
  }

  .about-img-main {
    height: 380px;
  }

  .about-img-float {
    width: 160px;
  }

  .why-img-1 {
    width: 85%;
    height: 70%;
  }

  .why-img-2 {
    width: 65%;
    height: 55%;
  }

  .visit-hours-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
  }
}
