:root {
  --bg: #f7f4eb;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #182026;
  --muted: #55636f;
  --line: rgba(24, 32, 38, 0.12);
  --primary: #0f5b78;
  --primary-deep: #083f53;
  --accent: #c9872c;
  --accent-soft: #f2e4c8;
  --shadow: 0 20px 60px rgba(15, 36, 52, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 135, 44, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 91, 120, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f4e9 0%, #f2f0ea 100%);
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 26px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(15, 36, 52, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #2c8dad 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.hero,
.section {
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 230, 0.92)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.hero-text,
.section-heading p,
.info-card p,
.panel p,
.check-list div,
.reference-list,
.testimonial-list blockquote {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #1f7da0 100%);
  box-shadow: 0 16px 30px rgba(15, 91, 120, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.hero-note,
.panel,
.panel-card,
.info-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(15, 36, 52, 0.07);
}

.hero-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.panel-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.panel-highlight {
  background:
    linear-gradient(160deg, rgba(15, 91, 120, 0.9), rgba(8, 63, 83, 0.95)),
    var(--primary);
  color: white;
}

.panel-highlight .mini-label,
.panel-highlight span {
  color: rgba(255, 255, 255, 0.8);
}

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

.stat-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.panel-gallery {
  overflow: hidden;
  padding: 0;
  min-height: 320px;
}

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

.section {
  padding: 34px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(201, 135, 44, 0.28), transparent 24%),
    linear-gradient(180deg, #102734 0%, #0c1c27 100%);
}

.section-dark .section-heading p,
.section-dark .info-card p,
.section-dark .tab-button {
  color: rgba(236, 243, 246, 0.78);
}

.section-accent {
  background:
    linear-gradient(145deg, rgba(243, 228, 200, 0.92), rgba(255, 248, 235, 0.92)),
    var(--accent-soft);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.three-column-grid,
.two-column-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.panel h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.tab-button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tab-button.active {
  background: white;
  color: var(--primary-deep);
}

.tab-button:hover,
.tab-button:focus-visible {
  transform: translateY(-1px);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

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

.gallery-card {
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: white;
  box-shadow: 0 16px 28px rgba(15, 36, 52, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(15, 36, 52, 0.18);
}

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

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  position: relative;
  padding-left: 22px;
}

.check-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.testimonial-list {
  display: grid;
  gap: 14px;
}

.testimonial-list blockquote {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.reference-list {
  margin: 0;
  padding-left: 18px;
}

.reference-list li + li {
  margin-top: 10px;
}

.reference-list a {
  color: var(--primary);
  font-weight: 700;
}

.stacked-form {
  display: grid;
  gap: 14px;
}

.stacked-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.stacked-form input,
.stacked-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.section-dark .stacked-form label {
  color: white;
}

.section-dark .stacked-form input,
.section-dark .stacked-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.section-dark .stacked-form input::placeholder,
.section-dark .stacked-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-message,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-dark .form-message,
.section-dark .section-copy {
  color: rgba(236, 243, 246, 0.78);
}

.saved-cards {
  display: grid;
  gap: 12px;
}

.saved-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.saved-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.saved-card a {
  color: #9bdcff;
  font-weight: 700;
}

.lightbox {
  width: min(920px, calc(100% - 24px));
  border: 0;
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.lightbox::backdrop {
  background: rgba(8, 19, 28, 0.74);
}

.lightbox img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 14px;
}

.lightbox p {
  margin: 0;
  color: var(--muted);
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .three-column-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    border-radius: 28px;
    padding: 18px;
  }

  .hero,
  .two-column-grid,
  .three-column-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 12px 16px;
  }

  .section,
  .hero {
    padding: 24px;
  }

  .brand {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 18px, 1240px);
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
