:root {
  --bg: #f8f4ed;
  --ink: #1a2835;
  --ink-soft: #4a5b6b;
  --brand: #c4943a;
  --brand-dark: #a0782e;
  --brand-light: #e0c07a;
  --surface: #ffffff;
  --line: #e5ddd2;
  --nav-offset: 92px;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(26,40,53,0.08);
}

html {
  scroll-padding-top: var(--nav-offset);
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, #efe6d8 0, transparent 40%),
    radial-gradient(circle at 90% 10%, #e8dfd0 0, transparent 35%),
    var(--bg);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Utility Classes --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-soft { color: var(--ink-soft); }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.ms-auto { margin-left: auto; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.5rem; }
.border-b { border-bottom: 1px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.round { border-radius: var(--radius); }
.full-w { width: 100%; }
.hidden { display: none; }

/* --- Offer Banner --- */
.offer-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #d4a853;
  color: #1a1814;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.offer-banner.hidden { display: none; }
.offer-logo {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1814;
  text-decoration: none;
  margin-right: 0.25rem;
}
.offer-text { display: flex; align-items: center; gap: 0.4rem; }
.offer-cta {
  background: #1a1814;
  color: #d4a853;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: opacity 150ms;
}
.offer-cta:hover { opacity: 0.85; }
.offer-banner .offer-close {
  background: none;
  border: none;
  color: rgba(26,24,20,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.offer-banner .offer-close:hover { color: #1a1814; }

/* --- Nav --- */
.nav-shell {
  position: sticky;
  top: 44px;
  z-index: 100;
  background: rgba(26, 40, 53, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-light);
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand-link:hover { color: #fff; }
.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 150ms;
}
.nav-links a:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 150ms;
}
.btn-brand {
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
}
.btn-brand:hover {
  background: var(--brand-dark);
}
.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 0.5rem 1rem;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--ink);
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn-white:hover {
  background: #f0f0f0;
}
.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

/* --- Social Icons --- */
.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}
.social-inline {
  display: inline-flex;
  align-items: center;
}
.social-icon-nav {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: 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(
    120deg,
    rgba(26, 40, 53, 0.88) 0%,
    rgba(26, 40, 53, 0.65) 50%,
    rgba(26, 40, 53, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 1rem;
  max-width: 720px;
  font-weight: 900;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --- Sections --- */
section {
  padding: 4rem 1.25rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.section-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.65;
}

/* --- Services --- */
#services {
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 150ms, box-shadow 150ms;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,40,53,0.1);
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 1.25rem;
}
.service-card-body h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* --- About --- */
#about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}
.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-text h3 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.about-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about-features li::before {
  content: "\2713";
  color: var(--brand);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* --- Visit / Contact --- */
#visit {
  background: var(--surface);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.visit-block {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}
.visit-block h3 {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.visit-block p, .visit-block a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.visit-block a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
}
.visit-block a:hover {
  text-decoration: underline;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.35rem;
}
.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* --- Footer --- */
.footer-shell {
  background: #1a2835;
  color: rgba(255,255,255,0.7);
  padding: 2rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-shell a {
  color: var(--brand-light);
  text-decoration: none;
}
.footer-shell a:hover {
  color: #fff;
}
.footer-sep {
  color: rgba(255,255,255,0.25);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { gap: 0.5rem; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 2rem 1.25rem; }
  .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 240px; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-container iframe { height: 280px; }
  .offer-text span { display: none; }
}

/* Scroll margin for sections */
section[id] {
  scroll-margin-top: var(--nav-offset);
}
