:root {
  --primary: #b5562d;
  --bg: #fdf6ee;
  --ink: #2b1c12;
  --accent: #5b8c5a;
  --paper: #fff9f2;
  --line: #ecdccc;
  --mute: #7a6050;
  --display: 'Tinos', Georgia, serif;
  --body: 'Open Sans', system-ui, sans-serif;
  --r: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.05; }
h1 { font-size: clamp(46px, 7vw, 96px); font-weight: 700; letter-spacing: -0.02em; font-style: normal; }
h1 em { font-style: italic; color: var(--primary); }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p { color: var(--mute); line-height: 1.65; }

.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.eyebrow--inv { color: var(--accent); }

.tag { display: inline-block; background: rgba(181,86,45,.12); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.04em; margin-bottom: 24px; }

.lead { font-size: clamp(16px, 1.5vw, 19px); max-width: 46ch; }
.lead--inv { color: rgba(255,255,255,.82); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(253,246,238,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { font-family: var(--display); font-size: 22px; font-weight: 700; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand__icon { color: var(--primary); font-size: 26px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14.5px; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 999px; border: 2px solid transparent; transition: transform 0.15s, background 0.15s; }
.btn:hover { transform: translateY(-2px); background: #9a4422; }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--inv { background: #fff; color: var(--primary); }
.btn--inv:hover { background: #fff7f2; }

/* HERO */
.hero { padding: clamp(50px, 7vw, 96px) 0 0; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__statement { display: flex; flex-direction: column; align-items: flex-start; }
.hero__sub { font-size: 17px; color: var(--mute); margin: 20px 0 28px; max-width: 44ch; line-height: 1.65; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__figure { position: relative; }
.hero__figure img { width: 100%; height: clamp(340px, 44vw, 540px); object-fit: cover; border-radius: 24px; display: block; box-shadow: 0 32px 64px -24px rgba(80,30,10,.35); }
.hero__badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 10px 14px; border-radius: 14px; text-align: center; line-height: 1.3; }

.hero__numbers { background: var(--ink); margin-top: clamp(40px, 6vw, 80px); }
.numbers__row { display: flex; justify-content: space-around; padding: 28px 0; flex-wrap: wrap; gap: 16px; }
.num { text-align: center; }
.num strong { display: block; font-family: var(--display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--primary); }
.num span { font-size: 13px; color: rgba(255,255,255,.65); letter-spacing: 0.04em; }

/* SECTION COMMON */
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section__head { max-width: 52ch; margin-bottom: 44px; }
.section__head h2 { margin-bottom: 12px; }
.section__head p { color: var(--mute); font-size: 16px; }

/* CATALOG */
.catalog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; min-height: 200px; transition: box-shadow 0.2s; }
.cat-card:hover { box-shadow: 0 8px 28px -8px rgba(100,40,10,.18); }
.cat-card--accent { background: var(--primary); border-color: var(--primary); }
.cat-card--accent .cat-card__label { background: rgba(255,255,255,.18); color: #fff; }
.cat-card--accent h3 { color: #fff; }
.cat-card--accent p { color: rgba(255,255,255,.8); }
.cat-card--accent .cat-card__price { color: #fff; }
.cat-card__label { align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(181,86,45,.1); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.cat-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); }
.cat-card p { color: var(--mute); font-size: 14.5px; flex: 1; }
.cat-card__price { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--primary); margin-top: 18px; }

/* CLUB */
.club { background: var(--ink); color: #fff; }
.club__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: start; padding: clamp(56px, 7vw, 96px) 0; }
.club h2 { color: #fff; margin: 10px 0 18px; }
.club__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.club__list li { display: flex; gap: 16px; align-items: flex-start; }
.club__dot { flex-shrink: 0; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--accent); background: rgba(91,140,90,.15); border: 1px solid rgba(91,140,90,.3); border-radius: 999px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.club__list strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.club__list span { color: rgba(255,255,255,.65); font-size: 14px; }
.club__aside { display: flex; flex-direction: column; gap: 18px; }
.club__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 26px; }
.club__card-icon { font-size: 36px; margin-bottom: 14px; }
.club__card h4 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.club__card p { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.6; }
.club__card-tag { display: inline-block; margin-top: 16px; background: rgba(91,140,90,.25); color: #a8d4a7; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.06em; }
.club__card--sm { padding: 20px 24px; }

/* ABOUT */
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.about__text p { margin-top: 14px; max-width: 52ch; }
.about__text h2 { margin-bottom: 4px; }
.about__pillars { display: grid; gap: 16px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.pillar__num { font-family: var(--display); font-style: italic; font-size: 24px; color: var(--primary); display: block; margin-bottom: 8px; }
.pillar strong { font-size: 16px; color: var(--ink); display: block; margin-bottom: 6px; }
.pillar p { font-size: 14px; color: var(--mute); }

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 96px) 0; }
.contact__block { background: linear-gradient(135deg, var(--primary) 0%, #8b4225 100%); border-radius: 28px; padding: clamp(36px, 5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.contact__info h2 { color: #fff; margin-bottom: 12px; }
.contact__info p { color: rgba(255,255,255,.85); max-width: 44ch; margin-bottom: 20px; }
.contact__links { display: flex; flex-direction: column; gap: 8px; }
.contact__link { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact__link:hover { color: #fff; text-decoration: underline; }
.contact__cta { text-align: right; flex-shrink: 0; }
.contact__cta p { color: rgba(255,255,255,.8); font-size: 15px; max-width: 28ch; margin-bottom: 18px; text-align: right; }

/* FOOTER */
.foot { background: var(--ink); padding: 30px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.foot__brand { color: rgba(255,255,255,.9); font-weight: 600; font-size: 14px; }
.foot__copy { color: rgba(255,255,255,.45); font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure img { height: 300px; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .club__inner { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__block { flex-direction: column; }
  .contact__cta { text-align: left; }
  .contact__cta p { text-align: left; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  h1 { font-size: 42px; }
  .catalog__grid { grid-template-columns: 1fr; }
  .numbers__row { justify-content: flex-start; padding: 24px 16px; gap: 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
