/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2B1F;
  background: #FDF6F0;
  -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; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; color: #2C1A0F; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --terracotta: #C2704E;
  --terracotta-dark: #A85A3A;
  --terracotta-light: #D4916F;
  --sand: #E8D5C4;
  --sand-light: #F5EBE0;
  --sand-lighter: #FDF6F0;
  --cream: #FFF9F5;
  --brown-dark: #2C1A0F;
  --brown-mid: #3D2B1F;
  --brown-light: #6B5344;
  --white: #FFFFFF;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(61, 43, 31, 0.10);
  --shadow-lg: 0 16px 60px rgba(61, 43, 31, 0.12);
  --shadow-card: 0 4px 20px rgba(194, 112, 78, 0.10);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  border: 2px solid transparent; border-radius: var(--radius-xl);
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.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 { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--terracotta); border-color: var(--white); }
.btn-white:hover { background: var(--sand-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 246, 240, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(194, 112, 78, 0.1);
  transition: all 0.3s ease;
}
.header.scrolled { background: rgba(253, 246, 240, 0.95); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--brown-dark); }
.logo-icon { flex-shrink: 0; }
.nav { display: none; align-items: center; gap: 8px; margin-left: auto; margin-right: 16px; }
.nav a { padding: 8px 16px; border-radius: var(--radius-xl); font-weight: 600; font-size: 15px; color: var(--brown-mid); transition: all 0.2s ease; }
.nav a:hover { background: var(--sand-light); color: var(--terracotta); }
.header-cta { display: none; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--brown-mid); border-radius: 2px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(253, 246, 240, 0.98); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mobile-nav-link { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--brown-dark); padding: 12px 24px; border-radius: var(--radius-md); transition: all 0.2s ease; }
.mobile-nav-link:hover { color: var(--terracotta); background: var(--sand-light); }
.mobile-nav-cta { margin-top: 16px; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.shape-1 { width: 600px; height: 600px; background: var(--sand); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--terracotta-light); bottom: -100px; left: -100px; opacity: 0.2; }
.shape-3 { width: 200px; height: 200px; background: var(--terracotta); top: 40%; left: 45%; opacity: 0.08; }
.hero-container { display: grid; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-left { max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand-light); border: 1px solid var(--sand);
  border-radius: var(--radius-xl); padding: 8px 18px;
  font-size: 14px; font-weight: 600; color: var(--terracotta);
  margin-bottom: 24px;
}
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 600; margin-bottom: 24px; color: var(--brown-dark); }
.hero-title .accent { color: var(--terracotta); font-style: italic; }
.hero-subtitle { font-size: 18px; color: var(--brown-light); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-card-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/620; width: 100%; max-width: 480px;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.stat-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.stat-card--1 { top: 10%; left: -30px; animation-delay: 0s; }
.stat-card--2 { bottom: 15%; right: -20px; animation-delay: 2s; }
.stat-icon { flex-shrink: 0; }
.stat-text strong { display: block; font-size: 14px; color: var(--brown-dark); }
.stat-text span { font-size: 12px; color: var(--brown-light); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (min-width: 1024px) {
  .hero-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .stat-card { display: none; }
  .hero-card-main { max-width: 100%; aspect-ratio: 4/3; }
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 600; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--brown-light); line-height: 1.8; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services-grid { display: grid; gap: 32px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { overflow: hidden; aspect-ratio: 400/260; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 32px; }
.service-icon { margin-bottom: 16px; }
.service-card-body h3 { font-size: 26px; margin-bottom: 12px; }
.service-card-body > p { color: var(--brown-light); margin-bottom: 20px; font-size: 15px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--brown-mid); font-weight: 500;
}
.service-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--sand-light); }
.about-container { display: grid; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 480/560; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -20px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--sand-light);
  aspect-ratio: 320/380; width: 60%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -20px; left: -16px;
  width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
  background: var(--sand-light); border-radius: 50%;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { color: var(--brown-light); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 16px 20px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: 15px; color: var(--brown-mid);
}
@media (min-width: 1024px) {
  .about-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .about-img-secondary { right: 0; bottom: -20px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; }
.gallery-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gallery-item--wide { grid-column: 1 / -1; aspect-ratio: 800/400; }
.gallery-item:not(.gallery-item--wide) { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 280px 280px; }
  .gallery-item--wide { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
  .gallery-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(5) { display: none; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--terracotta);
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.06); top: -150px; left: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: rgba(255,255,255,0.04); bottom: -100px; right: -50px; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content { flex: 1; min-width: 280px; }
.cta-title { font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-white:hover { background: var(--white); }
@media (max-width: 767px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-container { display: grid; gap: 60px; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { color: var(--brown-light); font-size: 16px; margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--sand-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--terracotta); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 15px; color: var(--brown-mid); line-height: 1.6; }
.contact-item a:hover { color: var(--terracotta); text-decoration: underline; }
.contact-form-wrap { max-width: 520px; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 28px; margin-bottom: 8px; }
.form-note { color: var(--brown-light); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brown-light); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--sand);
  border-radius: var(--radius-sm); font-family: 'Nunito', sans-serif;
  font-size: 15px; color: var(--brown-dark); background: var(--sand-lighter);
  transition: all 0.2s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--terracotta); background: var(--white);
  box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success h4 { font-size: 24px; margin: 16px 0 8px; color: var(--brown-dark); }
.form-success p { color: var(--brown-light); font-size: 15px; line-height: 1.7; }
.form-success a { color: var(--terracotta); font-weight: 700; }
@media (min-width: 1024px) {
  .contact-container { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-form-wrap { margin-left: auto; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
}

/* ===== MAP ===== */
.map-section { height: 380px; filter: saturate(0.7) contrast(1.05); }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--brown-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-inner { display: grid; gap: 48px; padding-bottom: 60px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.8; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--terracotta-light);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 15px; color: rgba(255,255,255,0.6);
  padding: 6px 0; transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-hours { margin-top: 12px; font-size: 14px !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--terracotta-light); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
