:root {
  --bg: #0c1017;
  --surface: #141b24;
  --surface-2: #1b2430;
  --gold: #d8b44a;
  --gold-soft: #efd78e;
  --wine: #9b2431;
  --wine-2: #7e1f29;
  --text: #f8f3e8;
  --muted: #d8ceb8;
  --dark-text: #1b1b1b;
  --max: 1180px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(216,180,74,0.08), transparent 30%),
    linear-gradient(180deg, #070a0f 0%, #111821 100%);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 15, 0.75);
  border-bottom: 1px solid rgba(216,180,74,0.16);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
	  
.logo {
    height: 55px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.crest {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--wine);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: inset 0 0 0 3px rgba(126,31,41,0.3), var(--shadow);
}

.menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu a:hover,
.menu a:focus-visible { color: var(--gold-soft); }

.hero { padding: 5rem 0 4rem; }

.hero-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 3rem;
  background:
    linear-gradient(150deg, rgba(155,36,49,0.94) 0%, rgba(126,31,41,0.92) 38%, rgba(12,16,23,0.95) 100%);
  border: 1px solid rgba(239,215,142,0.18);
  position: relative;
}

.hero-copy::after,
.highlight::after {
  content: "PE";
  position: absolute;
  right: 1rem;
  bottom: -0.6rem;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  color: rgba(239,215,142,0.08);
  line-height: 1;
  pointer-events: none;
}

.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.eyebrow.dark { color: var(--wine-2); }

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 6vw, 4.6rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--gold-soft); }
h2.dark { color: var(--wine-2); }

.lead {
  font-size: 1.15rem;
  max-width: 56ch;
  color: #f7ecda;
}

.actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--wine-2);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(239,215,142,0.35);
}

.hero-card {
  background: linear-gradient(180deg, #151d27 0%, #0f151c 100%);
  border: 1px solid rgba(216,180,74,0.16);
  display: grid;
  grid-template-rows: auto 1fr;
}

.photo {
  min-height: 320px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: end;
  padding: 1.25rem;
}

.photo-label,
.image-tag {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 16, 23, 0.72);
  color: var(--gold-soft);
  border: 1px solid rgba(239,215,142,0.18);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.image-tag-dark {
  background: rgba(255, 255, 255, 0.45);
  color: var(--wine-2);
  border-color: rgba(126,31,41,0.15);
}

.hero-info { padding: 1.5rem; display: grid; gap: 1rem; }

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

.info-box {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(239,215,142,0.12);
}

.info-box strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

section { padding: 2rem 0 4rem; }

.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  max-width: 70ch;
}

.section-head p { margin: 0; color: var(--muted); }
.section-head.compact { margin-bottom: 1.2rem; }

.cards,
.offer-grid {
  display: grid;
  gap: 1.25rem;
}

.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.offer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.offer-item {
  background: linear-gradient(180deg, rgba(20,27,36,0.95), rgba(16,22,30,0.95));
  border: 1px solid rgba(216,180,74,0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3,
.offer-item h3 {
  color: var(--gold-soft);
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.card p,
.offer-item p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.card-image,
.offer-image,
.feature-image,
.profile-image {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(239,215,142,0.16);
}

.card-image { aspect-ratio: 16 / 10; }
.offer-image { aspect-ratio: 16 / 10; margin-bottom: 1rem; }
.feature-image { aspect-ratio: 16 / 10; margin-top: 1rem; }
.profile-image { aspect-ratio: 4 / 5; object-position: center top; }

.light-frame {
  border-color: rgba(126,31,41,0.18);
  background: rgba(255,255,255,0.2);
}

.list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.list li + li { margin-top: 0.5rem; }
.card-note { margin-top: 1rem; }

.highlight {
  background: linear-gradient(180deg, rgba(216,180,74,0.98), rgba(205,164,49,0.98));
  color: var(--dark-text);
  border-radius: 36px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.highlight-grid,
.story,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.highlight-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.story { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 1.5rem; }

.quote {
  padding: 1.25rem 1.4rem;
  border-left: 4px solid rgba(155,36,49,0.55);
  background: rgba(255,255,255,0.18);
  border-radius: 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine-2);
}

.story-copy,
.story-side {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-copy {
  background: linear-gradient(180deg, rgba(216,180,74,0.97), rgba(204,164,51,0.97));
  color: var(--dark-text);
  padding: 2.2rem;
  display: grid;
  gap: 1.25rem;
}

.story-copy p {
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.story-side {
  background: linear-gradient(180deg, rgba(155,36,49,0.95), rgba(98,24,32,0.96));
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: 1.25rem;
}

.quote-light {
  background: rgba(255,255,255,0.08);
  color: #fff4d4;
  border-left-color: rgba(239,215,142,0.55);
}

.contact {
  background: linear-gradient(180deg, rgba(155,36,49,0.96), rgba(120,29,39,0.96));
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239,215,142,0.15);
}

.contact-title { margin-bottom: 0; color: #fff4d4; }
.contact-intro { color: #f4dbc9 !important; }

.contact-box {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-box strong {
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.45rem;
}

.legal-card h3:not(:first-child) { margin-top: 1.5rem; }

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(216,180,74,0.14);
  padding-top: 1.25rem;
}

@media (max-width: 980px) {
  .hero-wrap,
  .highlight-grid,
  .story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .nav { align-items: flex-start; padding: 1rem 0; }
  .menu { font-size: 0.9rem; }
  .hero-copy,
  .highlight,
  .story-copy,
  .story-side,
  .contact { padding: 1.4rem; }
  .cards,
  .offer-grid,
  .info-grid { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .lead { font-size: 1rem; }
}
