:root {
  --bg: #0d111c;
  --bg-secondary: #0f172a;
  --card: rgba(15, 23, 42, 0.75);
  --accent: #e3b35d;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --hero-image: url("https://static.wixstatic.com/media/468186_5d41968f45e045e3af0e734cf9d2d661~mv2.jpg");
  --font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --content-max: 1100px;
  --section-padding-inline: clamp(18px, 4vw, 42px);
  --section-padding-block: clamp(32px, 6vw, 64px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(227, 179, 93, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-family);
  min-height: 100vh;
}

:where(section) {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 42px);
  background: rgba(13, 17, 28, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.menu-toggle__icon {
  position: relative;
  width: 20px;
  height: 14px;
  display: inline-block;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle__icon::before {
  top: 0;
}

.menu-toggle__icon::after {
  bottom: 0;
}

.menu-toggle__icon span {
  top: 50%;
  transform: translateY(-50%);
}

.js-enabled .nav-links.is-open {
  display: grid;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span {
  opacity: 0;
}

.nav-links a {
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #0b0f1a;
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(227, 179, 93, 0.45);
  background: linear-gradient(135deg, rgba(227, 179, 93, 0.14), rgba(227, 179, 93, 0.28));
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(227, 179, 93, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(227, 179, 93, 0.22), rgba(227, 179, 93, 0.38));
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(227, 179, 93, 0.32);
  outline: none;
}

.button:active {
  transform: translateY(0);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(227, 179, 93, 0.12);
  border-color: rgba(227, 179, 93, 0.6);
  box-shadow: none;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 48vh;
  padding: clamp(32px, 6vw, 72px) clamp(18px, 4vw, 42px);
  overflow: hidden;
  background: linear-gradient(125deg, rgba(13, 17, 28, 0.92), rgba(13, 17, 28, 0.6)), var(--hero-image) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(227, 179, 93, 0.18), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.12), transparent 42%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

.hero__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.section--muted {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.section__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
}

.section--social {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.social-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.find-us {
  display: grid;
  gap: 18px;
}

.find-us__grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.find-us__content {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.find-us__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.find-us__address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.01em;
}

.find-us__note {
  margin: 0;
  color: var(--muted);
}

.find-us__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--card);
}

.find-us__map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.story__card {
  background: linear-gradient(145deg, rgba(227, 179, 93, 0.08), rgba(59, 130, 246, 0.05)),
    rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.story__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(16px, 3vw, 22px);
}

.story__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 2.6rem);
  letter-spacing: -0.02em;
}

.story__content {
  display: grid;
  gap: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.01rem;
}

.story__content blockquote {
  margin: 0;
  padding: 14px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(227, 179, 93, 0.08);
  color: var(--text);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border-color: rgba(227, 179, 93, 0.45);
}

.card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05);
  display: block;
  background: var(--bg-secondary);
}

.card__body {
  padding: 18px clamp(16px, 2vw, 22px) 22px;
  display: grid;
  gap: 10px;
}

.card__body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card__body h4 {
  margin: 12px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.service-list li::before {
  content: "\2022";
  color: var(--accent);
}

.site-footer {
  margin-top: auto;
  padding: 18px clamp(18px, 4vw, 42px);
  border-top: 1px solid var(--border);
  background: rgba(13, 17, 28, 0.85);
  text-align: center;
  color: var(--muted);
}

.hours-card {
  display: grid;
  gap: 12px;
  padding: 18px clamp(14px, 4vw, 24px);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--border);
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hours-day {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hours-time {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .js-enabled .nav-links {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 12px 0 4px;
    background: rgba(13, 17, 28, 0.92);
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  .nav-links a {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .card__image {
    object-fit: contain;
    object-position: center top;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
