:root {
  --bg: #f2e7cf;
  --ink: #2e2a22;
  --muted: #4b4438;
  --accent-gold: #b88f5a;
  --accent-red: #911519;
  --accent-brown: #b07c52;
  --surface: #fffaf0;
  --shadow: 0 20px 40px rgba(46, 42, 34, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Work Sans', 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--accent-red);
}

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

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-red);
  margin: 0 0 0.4rem;
}

.lede {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  margin: 0;
  color: var(--ink);
}

.hero {
  padding: 72px 20px 48px;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 143, 90, 0.15), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(145, 21, 25, 0.14), transparent 40%),
    var(--bg);
}

.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__logo {
  width: min(90vw, 640px);
  background: var(--surface);
  border: 1px solid rgba(46, 42, 34, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(46, 42, 34, 0.14);
  padding: 18px;
}

.hero__copy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.hero__copy .lede {
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.hero__copy {
  text-align: center;
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease, border 150ms ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-brown));
  color: #fff;
  box-shadow: 0 12px 30px rgba(145, 21, 25, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(145, 21, 25, 0.32);
}

.btn.ghost {
  border-color: rgba(46, 42, 34, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn.ghost:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

main {
  background: var(--bg);
}

.section {
  padding: 64px 20px;
}

.section__heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section__heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

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

.grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.gallery {
  background: linear-gradient(135deg, rgba(242, 231, 207, 0.85), rgba(184, 143, 90, 0.12));
}

.gallery__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gallery__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 14px) / 4);
  gap: 14px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.gallery__grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(46, 42, 34, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(46, 42, 34, 0.12);
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border 120ms ease;
}

.gallery__nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(46, 42, 34, 0.14);
  border-color: var(--accent-red);
  color: var(--accent-red);
}

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

@media (max-width: 820px) {
  .gallery__shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery__nav {
    justify-self: center;
  }

  .gallery__grid {
    grid-auto-columns: calc((100% - 2 * 14px) / 2);
  }
}

@media (max-width: 520px) {
  .gallery__grid {
    grid-auto-columns: 100%;
  }
}

.card {
  background: var(--surface);
  border: 1px solid rgba(46, 42, 34, 0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(46, 42, 34, 0.12);
}

.section--alt {
  background: linear-gradient(135deg, rgba(184, 143, 90, 0.2), rgba(242, 231, 207, 0.7));
}

.list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(46, 42, 34, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.list__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-brown));
}

.list__item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.list__item p {
  margin: 0;
  color: var(--muted);
}

.cta {
  padding: 72px 20px;
  background: linear-gradient(120deg, rgba(145, 21, 25, 0.08), rgba(176, 124, 82, 0.18)), var(--bg);
}

.cta__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(46, 42, 34, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

.cta__content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.footer {
  padding: 28px 20px 36px;
  background: var(--ink);
  color: #f7f1e3;
}

.footer__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer__contact a {
  font-weight: 700;
}

.footer__contact a:hover {
  color: var(--accent-gold);
}

@media (max-width: 840px) {
  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
  }

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

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