/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2C2420;
  background: #F5F0EB;
  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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: #1A1412;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8613A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6B5E57;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: #B8613A;
  color: #fff;
  padding: 14px 28px;
}
.btn--primary:hover { background: #A3522E; box-shadow: 0 4px 16px rgba(184,97,58,0.3); }
.btn--cta {
  background: #B8613A;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn--cta:hover { background: #A3522E; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--ghost {
  background: transparent;
  color: #2C2420;
  padding: 14px 28px;
  border: 1.5px solid rgba(44,36,32,0.2);
}
.btn--ghost:hover { border-color: #B8613A; color: #B8613A; }
.btn--full { width: 100%; justify-content: center; padding: 16px 28px; }
.btn-icon { flex-shrink: 0; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,36,32,0.07);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,36,32,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1412;
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: #B8613A; font-weight: 400; }
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A3F38;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: #B8613A; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #B8613A;
  transition: width 0.25s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C2420;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 80px;
  background: #F5F0EB;
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8613A;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: #1A1412;
}
.hero-headline .accent {
  color: #B8613A;
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: 1.08rem;
  color: #6B5E57;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(44,36,32,0.1);
}
.stat { flex: 1; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1412;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: #8A7E77;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(44,36,32,0.12);
  flex-shrink: 0;
}

/* hero images */
.hero-visual {
  position: relative;
  height: 680px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,36,32,0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: -24px;
  left: -40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,36,32,0.18);
  border: 4px solid #F5F0EB;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #B8613A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: #EDE6DF;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.about-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44,36,32,0.1);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap:first-child { grid-row: 1 / 3; }
.about-img-offset { margin-top: 48px; }
.about-content { max-width: 520px; }
.about-content p {
  color: #5A4D45;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  color: #B8613A;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: #1A1412;
  margin-bottom: 2px;
}
.feature-item span {
  font-size: 0.875rem;
  color: #7A6B62;
  line-height: 1.5;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
  background: #F5F0EB;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,36,32,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(44,36,32,0.12);
  transform: translateY(-4px);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card h3 {
  font-size: 1.25rem;
  padding: 20px 24px 0;
}
.service-card p {
  padding: 10px 24px 24px;
  color: #6B5E57;
  font-size: 0.938rem;
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 0;
  background: #EDE6DF;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: 1 / 3; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(26,20,18,0.6));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── VISIT ─── */
.visit {
  padding: 100px 0;
  background: #F5F0EB;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.visit-address {
  font-size: 1.05rem;
  color: #2C2420;
  margin: 20px 0 28px;
  line-height: 1.7;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.visit-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #4A3F38;
}
.visit-icon { color: #B8613A; flex-shrink: 0; }
.visit-note {
  font-size: 0.9rem;
  color: #7A6B62;
  margin-bottom: 28px;
  line-height: 1.65;
  padding: 14px 16px;
  background: rgba(184,97,58,0.06);
  border-left: 3px solid #B8613A;
  border-radius: 0 6px 6px 0;
}
.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,36,32,0.12);
}
.visit-map img { width: 100%; height: 100%; object-fit: cover; }
.map-caption {
  font-size: 0.8rem;
  color: #8A7E77;
  text-align: center;
  padding: 12px 16px 16px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: #1A1412;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact .section-title { color: #fff; }
.contact-content p {
  color: #A89890;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-direct li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #D4C8C0;
}
.contact-direct a {
  color: #D4C8C0;
  transition: color 0.2s;
}
.contact-direct a:hover { color: #E09060; }
.contact-icon { color: #B8613A; flex-shrink: 0; }

/* form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A89890;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #6B5E57; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8613A;
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: #2C2420; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #E09060;
}
.form-success p { color: #A89890; font-size: 0.95rem; line-height: 1.6; }

/* ─── FOOTER ─── */
.footer {
  background: #140F0D;
  color: #A89890;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #7A6B62;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8613A;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: #A89890;
  transition: color 0.2s;
}
.footer-links a:hover { color: #E09060; }
.footer-contact address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #A89890;
  margin-bottom: 10px;
}
.footer-contact a {
  font-size: 0.9rem;
  color: #B8613A;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #E09060; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #5A4D45; }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(245,240,235,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(44,36,32,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 480px; order: -1; }
  .hero-img-float { left: 16px; bottom: -16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { flex: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: 1 / -1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-img-float { display: none; }
  .hero-visual { height: 360px; }
  .about { padding: 64px 0; }
  .services { padding: 64px 0; }
  .gallery { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .visit { padding: 64px 0; }
  .contact { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
