:root {
  --bg: #fffaf6;
  --bg-soft: #fff2e8;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: #ffffff;
  --text: #36251d;
  --muted: #7d6558;
  --line: rgba(130, 91, 64, 0.14);
  --accent: #e57f4a;
  --accent-deep: #df5a29;
  --accent-soft: #ffe0cf;
  --shadow: 0 18px 40px rgba(173, 120, 84, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,226,206,0.8), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,240,228,0.9), transparent 30%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.page-shell { min-height: 100vh; }
.section { padding: 84px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,241,233,0.65)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(187, 94, 48, 0.4);
}
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 16px;
}
h1 { font-size: clamp(3rem, 5vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
p { margin: 0; color: var(--muted); }
.lead { font-size: 1.08rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgb(255 250 246 / 67%);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  /*
  border-radius: 50%;
  background: linear-gradient(135deg, #f39d67, #e57f4a);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  box-shadow: var(--shadow);
  */
}
.brand strong, .footer-brand strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-deep);
  line-height:1.5rem;
}
.brand small, .footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  font-size: 0.96rem;
  color: var(--text);
}
.site-nav a:hover { color: var(--accent-deep); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(229, 127, 74, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border: 1px solid var(--line);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  margin: 5px 0;
}

.hero { padding: 44px 0 30px; }
.hero-grid, .split-layout, .two-col, .about-grid, .contact-wrap, .location-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-grid, .split-layout { grid-template-columns: 1.05fr 0.95fr; }
.hero-copy h1 span { color: var(--accent-deep); font-style: italic; }
.hero-text { font-size: 1.05rem; max-width: 60ch; }
.hero-actions, .page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-badges {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges span, .pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
}
.hero-media {
  position: relative;
}
.hero-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
}
.photo-card, .info-card, .service-card, .faq-item, .location-card, .gallery-card, .value-card, .contact-card, .intro-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.photo-card img, .gallery-card img, .page-visual img {
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.photo-tall { min-height: 540px; overflow: hidden; }
.photo-stack-small {
  display: grid;
  gap: 18px;
}
.photo-stack-small .photo-card:first-child { min-height: 260px; overflow: hidden; }
.info-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,240,232,0.92));
}
.info-card h3 { margin-bottom: 8px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 0 70px;
}
.stat-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.08rem;
}

.section-heading { max-width: 700px; margin-bottom: 30px; }
.card-grid, .service-grid, .gallery-grid, .faq-grid, .location-grid, .values-grid {
  display: grid;
  gap: 20px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid.three, .gallery-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.location-grid { grid-template-columns: repeat(2, 1fr); }
.service-card, .value-card, .location-card, .contact-card, .intro-card {
  padding: 28px;
}
.service-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.service-card li { margin-bottom: 8px; }
.gallery-card {
  overflow: hidden;
  min-height: 300px;
  position: relative;
}
.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  color: var(--text);
}
.faq-item {
  padding: 24px;
}
.faq-item h3 { font-size: 1.5rem; margin-bottom: 12px; }
.page-hero {
  padding: 54px 0 30px;
}
.page-visual {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.page-visual img { min-height: 520px; }
.highlight-box {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
}
.location-layout { grid-template-columns: 1fr 1fr; }
.location-card a, .text-link {
  color: var(--accent-deep);
  font-weight: 600;
}
.contact-wrap {
  grid-template-columns: 1fr auto;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,235,224,0.9));
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
}
.site-footer {
  padding: 28px 0 40px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1024px) {
  .hero-grid, .split-layout, .location-layout, .about-grid, .contact-wrap {
    grid-template-columns: 1fr;
  }
  .stats, .service-grid, .card-grid.three, .gallery-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid, .location-grid { grid-template-columns: 1fr; }
  .page-visual, .page-visual img, .photo-tall { min-height: 420px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,250,246,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s ease;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a { padding: 10px 6px; }
  .hero-photo-stack { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 28px; }
  .stats, .service-grid, .card-grid.three, .gallery-grid, .faq-grid, .location-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap { padding: 14px 0; }
  .contact-wrap { padding: 24px; }
  .page-visual, .page-visual img, .photo-tall { min-height: 340px; }
  .hero-badges, .hero-actions, .page-actions { flex-direction: column; align-items: stretch; }
  .btn, .nav-cta { width: 100%; }
  h1 { font-size: 2.8rem; }
}
.site-footer {
  background: linear-gradient(180deg, #0b0b0b, #020202);
  color: #bbb;
  padding: 70px 0 30px;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

/* HEADINGS */
.footer-col h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #ff4d4f;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* TAGLINE */
.tagline {
  color: #888;
  margin-bottom: 20px;
}

/* STATUS BOX */
.status-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.status-box .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-box.open .dot {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.status-box.closed .dot {
  background: #ff4d4f;
  box-shadow: 0 0 10px #ff4d4f;
}

.status-box.open strong{
  color:green;
}

.status-box.closed strong {
  color:red;
}


/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff4d4f;
  padding-left: 5px;
}

/* HOURS */
.footer-col.hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col.hours li.today {
  color: #fff;
  font-weight: bold;
}

/* CONTACT 
.footer-col.contact p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
*/
.footer-col.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #777;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.locations {
  margin-top: 10px;
}

.location-item {
  margin-bottom: 15px;
}

.location-item strong {
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.location-item p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.4;
}

.text-white { color: #ffffff !important; }
.d-block { display: block !important; }
.footer-contact-line a {
  color: inherit;
  text-decoration: none;
}
.footer-contact-line a:hover {
  color: #ff4d4f;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background .2s ease, transform .2s ease;
}
.footer-socials a:hover {
  color: #fff;
  background: rgba(255,77,79,0.24);
  transform: translateY(-1px);
}
