@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #151819;
  --ink-2: #3b4043;
  --paper: #f7f6f2;
  --paper-2: #ffffff;
  --accent: #e35b2f;
  --accent-2: #0f766e;
  --accent-3: #e9c46a;
  --shadow: rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 24, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.nav a:hover {
  background: #f1f1ee;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 16, 18, 0.72), rgba(12, 16, 18, 0.2)),
    url('assets/photos/hero.jpg') center / cover no-repeat;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 20px;
  color: #f0f0ed;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid rgba(21, 24, 25, 0.08);
}

.hero-panel * {
  color: var(--ink);
}

.hero-panel .small {
  color: var(--ink-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.outline {
  border-color: currentColor;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.4rem);
  margin: 0 0 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(21, 24, 25, 0.08);
  box-shadow: 0 12px 30px var(--shadow);
  color: var(--ink);
}

.card a,
.hero-panel a {
  color: var(--accent-2);
  text-decoration: underline;
}

.highlight {
  background: linear-gradient(120deg, rgba(227, 91, 47, 0.12), rgba(233, 196, 106, 0.22));
  border: 1px solid rgba(227, 91, 47, 0.3);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(26, 26, 26, 0.15);
}

.hours-table td:first-child {
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.banner {
  background: #0f766e;
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.photo-grid img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 24px var(--shadow);
}

.quote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.update-list {
  display: grid;
  gap: 12px;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(21, 24, 25, 0.08);
  background: #f0eee8;
}

.photo-band {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 48px 0;
}

.photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 19, 0.05), rgba(15, 18, 19, 0.4));
}

.photo-band .container {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.small {
  font-size: 0.92rem;
  color: var(--ink-2);
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .hero {
    padding-top: 72px;
  }
  .hero::before {
    background-position: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }

  .fade-in.delay-1 { animation-delay: 0.1s; }
  .fade-in.delay-2 { animation-delay: 0.2s; }
  .fade-in.delay-3 { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
