:root {
  --gold: #bb711c;
  --gold-soft: #dcb753;
  --ink: #111111;
  --white: #ffffff;
  --mist: #ece8e6;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(187, 113, 28, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Comfortaa", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(220, 183, 83, 0.08), transparent 28%),
    linear-gradient(180deg, #f4f0ee 0%, #ece8e6 100%);
}

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

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

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  width: min(380px, 78vw);
  height: auto;
}

.hero-card,
.section {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.hero-content {
  padding: 38px 28px 34px;
  text-align: center;
}

h1, h2, h3 {
  font-family: "Philosopher", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p {
  margin: 0;
  line-height: 1.8;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.social-button:hover,
.social-button:focus-visible,
.membership-card:hover,
.membership-card:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--gold), #9d5c15);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(187, 113, 28, 0.25);
}

.section {
  margin-top: 24px;
  padding: 28px;
}

.compact {
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-intro,
.section-about p,
.section-wholesale p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-follow {
  text-align: center;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.social-button {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(187, 113, 28, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 32px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  text-align: center;
  font-weight: 700;
}

.contact-links a {
  padding: 8px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
}

.gallery-card a {
  display: block;
  text-decoration: none;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.gallery-card a:hover img,
.gallery-card a:focus img {
  transform: scale(1.02);
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.section-wholesale {
  text-align: center;
}

.section-wholesale .button {
  margin-top: 20px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.membership-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(187, 113, 28, 0.14);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  min-height: 220px;
}

.membership-card img {
  max-height: 120px;
  object-fit: contain;
}

.membership-card span {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .gallery-grid,
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 760px);
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .hero-content,
  .section {
    padding: 22px 18px;
  }

  .social-button {
    width: 100%;
    min-width: 0;
  }

  .gallery-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 250px;
  }

  .section-heading {
    gap: 12px;
  }

  .contact-links {
    flex-direction: column;
    gap: 4px;
  }
}
