:root {
  --cream: #f7efe2;
  --sand: #efe2cf;
  --amber: #d9a441;
  --amber-deep: #b87c2d;
  --rust: #8d4e2f;
  --red: #a54d3f;
  --ink: #16110e;
  --ink-soft: rgba(239, 226, 207, 0.74);
  --line: rgba(247, 239, 226, 0.14);
  --panel-dark: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 60px rgba(8, 5, 3, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(165, 77, 63, 0.14), transparent 24%),
    linear-gradient(180deg, #120d0a 0%, #17110e 36%, #1f1612 100%);
}

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

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

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  justify-content: flex-start;
  width: auto;
}

.brand img {
  width: 186px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 18px;
  color: rgba(239, 226, 207, 0.72);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(247, 239, 226, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

h1,
h2,
h3,
.hero__quote {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero {
  padding: 24px 0 68px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.hero__content,
.hero__gallery {
  min-height: 640px;
}

.hero__content {
  position: relative;
  padding: 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 18, 14, 0.94), rgba(33, 23, 18, 0.86));
  border: 1px solid rgba(247, 239, 226, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__content::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(142, 60, 33, 0.08);
  color: var(--sand);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 239, 226, 0.1);
}

.hero h1 {
  margin-top: 24px;
  max-width: 8ch;
  font-size: clamp(3.8rem, 8.5vw, 7rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__lead {
  margin: 24px 0 0;
  max-width: 58ch;
  color: rgba(239, 226, 207, 0.78);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(8, 5, 3, 0.18);
}

.button--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff8f1;
  box-shadow: 0 14px 28px rgba(184, 124, 45, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border: 1px solid rgba(247, 239, 226, 0.14);
}

.hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.pillar {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 239, 226, 0.08);
}

.pillar strong {
  display: block;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar span {
  display: block;
  margin-top: 7px;
  color: rgba(239, 226, 207, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero__gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
}

.panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(247, 239, 226, 0.08);
  background: #2a1d17;
  box-shadow: var(--shadow);
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel--stack {
  display: grid;
  gap: 18px;
}

.hero__quote {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 11ch;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(27, 18, 13, 0.84);
  color: #fff7ef;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(24, 16, 10, 0.26);
}

.section {
  padding: 28px 0 76px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: rgba(239, 226, 207, 0.74);
  font-size: 1.03rem;
  line-height: 1.72;
}

.brothers {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.brothers__photo,
.brothers__copy,
.beer-card,
.plan-card,
.team-card,
.contact {
  border: 1px solid rgba(247, 239, 226, 0.1);
  background: var(--panel-dark);
  box-shadow: var(--shadow);
}

.brothers__photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius-xl);
  background: #2a1d17;
}

.brothers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brothers__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.brothers__title {
  font-size: 2.4rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.brothers__lead,
.brothers__copy p {
  margin: 0;
  color: rgba(239, 226, 207, 0.76);
  font-size: 1.03rem;
  line-height: 1.75;
}

.brothers__fact {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(247, 239, 226, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.brothers__fact strong {
  display: block;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 3.3rem;
  line-height: 1;
}

.brothers__fact span {
  color: rgba(239, 226, 207, 0.76);
  line-height: 1.6;
}

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

.beer-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
}

.beer-card--cipa {
  background: linear-gradient(180deg, #f4e3b9 0%, #d9a441 100%);
}

.beer-card--prost {
  background: linear-gradient(180deg, #f0e0c9 0%, #bea483 100%);
}

.beer-card--redx {
  background: linear-gradient(180deg, #efc5b7 0%, #b25b49 100%);
}

.beer-card img {
  width: 200px;
  height: 96px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(32, 21, 15, 0.16));
}

.beer-card h3 {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.beer-card p {
  margin: 14px 0 0;
  color: rgba(22, 17, 14, 0.82);
  line-height: 1.68;
}

.subscription {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.18), transparent 22%),
    linear-gradient(180deg, #1f1612 0%, #15100d 100%);
  color: #fff7ef;
  box-shadow: 0 28px 70px rgba(28, 17, 11, 0.28);
}

.subscription .section-head {
  margin-bottom: 26px;
}

.subscription .section-head h2,
.subscription .section-head p {
  color: #fff7ef;
}

.subscription .section-head p {
  opacity: 0.78;
}

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

.plan-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 249, 241, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff7ef;
}

.plan-card--featured {
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.2), rgba(255, 249, 241, 0.08));
  border-color: rgba(217, 164, 65, 0.4);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff9f1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-title {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.stars {
  margin-top: 10px;
  color: #ffca69;
  letter-spacing: 0.22em;
  font-size: 1rem;
}

.plan-card p {
  margin: 14px 0 0;
  color: rgba(255, 247, 239, 0.76);
  line-height: 1.68;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.price span:first-child {
  font-size: 1rem;
  opacity: 0.78;
}

.price strong {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.plan-card .button {
  width: 100%;
  margin-top: 22px;
}

.subscription__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription__footer p {
  margin: 0;
  color: rgba(255, 247, 239, 0.76);
}

.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border-radius: 28px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card__body {
  padding: 22px;
}

.team-card h3 {
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.team-card p {
  margin: 12px 0 0;
  color: rgba(239, 226, 207, 0.74);
  line-height: 1.68;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
}

.contact-title {
  font-size: 3rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact p {
  margin: 8px 0 0;
  color: rgba(239, 226, 207, 0.74);
  line-height: 1.68;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding: 0 0 44px;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(239, 226, 207, 0.6);
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .hero__grid,
  .brothers,
  .section-head,
  .contact,
  .beers,
  .plans {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__gallery {
    min-height: auto;
  }

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar__row,
  .footer__row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(247, 239, 226, 0.1);
    border-radius: 24px;
    background: rgba(21, 16, 13, 0.94);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero__content,
  .subscription {
    padding: 26px;
  }

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

  .hero__quote {
    position: static;
    margin-top: 14px;
  }
}
