:root {
  color-scheme: light;
  --brand-dark: #1e3a2f;
  --brand-olive: #b0c9b1;
  --brand-cream: #f7f8f5;
  --brand-accent: #f3a441;
  --text-dark: #0b1130;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Cairo", "Segoe UI", sans-serif;
  background: var(--brand-cream);
  color: var(--text-dark);
  line-height: 1.5;
}
.hero {
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #0b1130 0%, #16285c 45%, #1b4d3b 100%);
  color: #fff;
  padding: 2rem 1.5rem 3rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 20px 60px rgba(1, 10, 23, 0.45);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.2), transparent 35%);
  pointer-events: none;
}
.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}
.top-bar__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.top-bar__contact {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  text-align: right;
  line-height: 1.2;
}
.top-bar__contact span {
  opacity: 0.85;
}
.top-bar__contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.logo-block img {
  height: 56px;
  width: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.logo-block div {
  line-height: 1.1;
}
.logo-block strong {
  display: block;
  font-size: 1rem;
}
.logo-block small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}
.main-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease;
  font-size: 0.95rem;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.main-nav a.active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.hero__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}
.hero__text h1 {
  margin: 0.6rem 0 0.4rem;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.2;
}
.tag {
  font-size: 0.95rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  opacity: 0.8;
}
.lead {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__kpis {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}
.hero__kpis span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero__kpis strong {
  font-size: 1.5rem;
}
.hero__panel {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(15px);
}
.hero__panel-heading p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__panel-heading h3 {
  margin: 0.25rem 0 0;
  font-size: 1.5rem;
}
.hero__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}
.hero__contact li strong {
  display: inline-block;
  min-width: 95px;
  font-weight: 600;
}
.hero__panel-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.hero__ticket {
  background: #fff;
  color: var(--brand-dark);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.hero__ticket:hover,
.hero__ticket:focus-visible {
  background: var(--brand-accent);
  color: #1b2a1b;
}
.btn {
  background: var(--brand-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-accent);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section__header h2 {
  margin: 0.4rem 0;
  font-size: 2rem;
}
.section__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #c7591b;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(3, 11, 27, 0.08);
  border: 1px solid rgba(11, 17, 48, 0.06);
}
.product-card h3 {
  margin-top: 0;
}
.product-card ul {
  padding-left: 1rem;
  margin: 0.8rem 0 0;
}
.info {
  background: #0b1130;
  color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
}
.info__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.info__list article {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 1rem;
}
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stories article {
  background: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(11, 17, 48, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.contact-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(11, 17, 48, 0.08);
  box-shadow: 0 12px 25px rgba(3, 11, 27, 0.08);
}
.contact-card h3 {
  margin-top: 0;
}
.contact-form {
  margin-top: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(11, 17, 48, 0.08);
  box-shadow: 0 12px 25px rgba(3, 11, 27, 0.08);
  display: grid;
  gap: 0.75rem;
}
.contact-form label {
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(11, 17, 48, 0.2);
  font-family: inherit;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  border: none;
  background: #0b1130;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
}
.status--success {
  background: #e4f8ed;
  color: #0e4d31;
}
.status--error {
  background: #fdecea;
  color: #7c1a1a;
}
.status--error ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .main-nav a {
    flex: 1;
    text-align: center;
    padding: 0.6rem;
  }
}

.gallery {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(11, 17, 48, 0.15);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(3, 11, 27, 0.15);
  border: 1px solid rgba(11, 17, 48, 0.08);
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-grid figcaption {
  padding: 1rem;
  font-weight: 600;
  color: #0b1130;
}
footer {
  background: #11122b;
  color: #f7f7fb;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer__note {
  margin-top: 1rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .hero__cta {
    flex-direction: column;
  }
  .hero__panel {
    text-align: center;
  }
}
