:root {
  --brown: #3B2214;
  --brown-dark: #2B180D;
  --orange: #E96A2C;
  --orange-dark: #D4571F;
  --cream: #FDF7F0;
  --ink: #2B180D;
  --muted: #7A5A44;
  --card: #FFFFFF;
  --line: #EADACB;
  --shadow: 0 18px 40px -22px rgba(59, 34, 20, 0.45);
  --radius: 18px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-dark);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(233, 106, 44, 0.22), transparent 60%),
    linear-gradient(160deg, var(--brown) 0%, var(--brown-dark) 100%);
  overflow: hidden;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(233, 106, 44, 0.28), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-mark {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--orange);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
}

.hero-logo {
  max-height: 120px;
  margin: 0 auto 1.25rem;
}

.hero-tag {
  color: #F2D9C5;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(233, 106, 44, 0.8);
}

.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--brown);
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-head p:last-child {
  color: var(--muted);
}

section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

/* ---------- Visit / map ---------- */
.visit {
  background: linear-gradient(180deg, var(--cream) 0%, #F6E9DB 100%);
}

.visit-card {
  max-width: 940px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hours {
  padding: 1.8rem 1.8rem 1.2rem;
  text-align: center;
}

.hours h3 {
  color: var(--brown);
  margin-bottom: 1rem;
}

.hours ul {
  list-style: none;
  max-width: 420px;
  margin: 0 auto;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}

.hours li span:last-child {
  color: var(--orange);
  white-space: nowrap;
}

.hours-note {
  color: var(--muted);
  margin-top: 1rem;
}

.hours-note a {
  font-weight: 700;
}

.map-box {
  position: relative;
  background: var(--brown);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.9);
}

.map-link {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.55);
}

/* ---------- Social ---------- */
.social {
  background: var(--cream);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
  max-width: 940px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  color: var(--brown);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  color: var(--brown);
  box-shadow: 0 26px 50px -24px rgba(59, 34, 20, 0.5);
}

.social-card svg {
  width: 46px;
  height: 46px;
  fill: var(--orange);
  transition: transform 0.25s ease;
}

.social-card:hover svg {
  transform: scale(1.08);
}

.social-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-card strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark);
  color: #E9D2BB;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  max-height: 64px;
  margin-bottom: 0.25rem;
}

.footer-phone {
  font-size: 1.05rem;
}

.footer-phone a {
  color: var(--orange);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 1.4rem;
}

.footer-socials a {
  color: #E9D2BB;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.footer-socials a:hover {
  color: #fff;
  border-bottom-color: var(--orange);
}

.footer-copy {
  font-size: 0.85rem;
  color: #A98A6F;
  margin-top: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .hero-mark {
    width: 92px;
    height: 92px;
  }

  .hero-logo {
    max-height: 86px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .map-box iframe {
    height: 340px;
  }

  .map-link {
    position: static;
    transform: none;
    display: flex;
    margin: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}