/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #2D2D2D;
  background: #FAFAF8;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #E86A50; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ========== PALETTE ========== */
:root {
  --charcoal:    #2D2D2D;
  --charcoal-deep:#1A1A1A;
  --charcoal-soft:#3D3D3D;
  --coral:       #E86A50;
  --coral-light:  #F4845F;
  --coral-pale:   #FFF0EC;
  --coral-50:     #FFF7F5;
  --warm-white:   #FAFAF8;
  --warm-gray:    #F0EFEC;
  --text:         #2D2D2D;
  --text-light:   #5A5A5A;
  --text-muted:   #888888;
  --white:        #FFFFFF;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 8px rgba(45,45,45,.06);
  --shadow-md:    0 8px 30px rgba(45,45,45,.08);
  --shadow-lg:    0 16px 50px rgba(45,45,45,.10);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { color: var(--text-light); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== SECTION ========== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--warm-gray); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--coral);
  background: var(--coral-pale); padding: .35rem 1rem;
  border-radius: 100px; margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: 'DM Sans', sans-serif; font-weight: 600;
  border: 2px solid transparent; border-radius: var(--radius-lg);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-light); border-color: var(--coral-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,80,.3); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,45,45,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--charcoal); }
.logo-icon { color: var(--coral); }
.logo-light { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-light); transition: color var(--transition); }
.nav-links a:hover { color: var(--coral); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); position: absolute; left: 9px; }
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -7px; left: 0; }
.hamburger::after { content: ''; bottom: -7px; left: 0; }
.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); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.82) 0%, rgba(45,45,45,.72) 50%, rgba(232,106,80,.35) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 820px; padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85);
  background: rgba(232,106,80,.2); border: 1px solid rgba(232,106,80,.4);
  padding: .4rem 1.2rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white); font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  margin-bottom: 1.25rem; line-height: 1.1;
}
.hero-title .highlight { color: var(--coral-light); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.8);
  margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.trust-item svg { color: var(--coral-light); flex-shrink: 0; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ========== CARDS GRID ========== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid rgba(45,45,45,.04);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem; }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--coral-pale); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-title { margin-bottom: .5rem; }
.card-desc { font-size: .925rem; margin-bottom: 1rem; line-height: 1.6; }
.card-list { display: flex; flex-direction: column; gap: .4rem; }
.card-list li {
  font-size: .85rem; color: var(--text-light);
  padding-left: 1.2rem; position: relative;
}
.card-list li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 6px; height: 6px; background: var(--coral); border-radius: 50%;
}

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -2rem; right: -1.5rem;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-img-float img { width: 260px; height: 200px; object-fit: cover; }
.about-stat {
  position: absolute; top: -1.5rem; left: -1rem;
  background: var(--coral); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-stat .stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.about-stat .stat-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.about-content .section-tag { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-text { margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.about-feature { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: var(--charcoal); }
.check-icon { color: var(--coral); flex-shrink: 0; }

/* ========== FEATURES GRID ========== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(45,45,45,.04);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feature:hover::before { transform: scaleX(1); }
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800;
  color: var(--coral-pale); line-height: 1; margin-bottom: .75rem;
}
.feature-title { margin-bottom: .5rem; }
.feature-desc { font-size: .95rem; }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ========== CTA BANNER ========== */
.cta-banner { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,.88) 0%, rgba(45,45,45,.78) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(45,45,45,.04);
}
.contact-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--coral-pale); color: var(--coral);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .25rem; }
.contact-card address, .contact-card p { font-size: .95rem; color: var(--charcoal); line-height: 1.6; }
.contact-card a { color: var(--coral); transition: color var(--transition); }
.contact-card a:hover { color: var(--coral-light); text-decoration: underline; }
.hours-note { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }

/* ========== FORM ========== */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(45,45,45,.04);
}
.form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid #E0DED9;
  border-radius: var(--radius-md); font-family: 'DM Sans', sans-serif;
  font-size: .95rem; color: var(--charcoal); background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,106,80,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.form-success {
  text-align: center; padding: 2rem;
}
.form-success svg { color: var(--coral); margin-bottom: 1rem; }
.form-success h4 { font-size: 1.4rem; margin-bottom: .5rem; }
.form-success p { color: var(--text-light); }

/* ========== FOOTER ========== */
.footer { background: var(--charcoal-deep); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-desc { font-size: .9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'DM Sans', sans-serif; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4);
  margin-bottom: 1rem; font-weight: 600;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--coral-light); }
.footer-contact address { font-size: .9rem; line-height: 1.7; margin-bottom: .75rem; }
.footer-contact p { font-size: .9rem; margin-bottom: .4rem; }
.footer-contact a { color: var(--coral-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .75rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal[data-state="hidden"] {
  opacity: 0;
  transform: translateY(24px);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal[data-state="hidden"] { opacity: 0; transform: translateY(24px); }
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,250,248,.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 2rem 1.5rem;
    gap: 1.25rem; border-bottom: 1px solid rgba(45,45,45,.06);
    transform: translateY(-110%); opacity: 0;
    transition: all var(--transition); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.05rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-float { right: 1rem; bottom: -1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: .75rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .about-img-float img { width: 180px; height: 140px; }
}
