.p1-page {
  background: #f5f1ea;
  color: #102a38;
}

.p1-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 17px clamp(18px, 4vw, 56px);
  background: rgba(245, 241, 234, 0.95);
  border-bottom: 1px solid rgba(16, 42, 56, 0.1);
  backdrop-filter: blur(18px);
}

.p1-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #102a38;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.p1-brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #102a38;
  color: #fff;
  font-weight: 900;
}

.p1-nav,
.p1-actions,
.p1-language,
.p1-hero-actions,
.p1-tags,
.p1-footer nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.p1-nav {
  justify-content: center;
}

.p1-nav a,
.p1-language a,
.p1-footer a {
  color: #31515d;
  font-weight: 800;
  text-decoration: none;
}

.p1-language {
  border: 1px solid rgba(16, 42, 56, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  font-weight: 900;
}

.p1-language [aria-current="page"] {
  color: #22a06b;
}

.p1-disabled-phone {
  border: 1px solid rgba(16, 42, 56, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: #102a38;
  font-weight: 900;
}

.p1-button,
.p1-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: default;
}

.p1-button {
  background: #22a06b;
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 160, 107, 0.25);
}

.p1-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.p1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 160, 107, 0.25), transparent 28%),
    linear-gradient(135deg, #102a38 0%, #173c4d 47%, #f5f1ea 47%, #f5f1ea 100%);
  color: #fff;
}

.p1-eyebrow {
  margin: 0 0 12px;
  color: #98d9bd;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p1-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.p1-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.p1-tags {
  margin-top: 22px;
}

.p1-tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.p1-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #102a38;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.p1-photo img {
  display: block;
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
}

.p1-photo figcaption {
  padding: 14px 18px;
  background: #fff;
  color: #31515d;
  font-weight: 800;
}

.p1-section {
  padding: clamp(46px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.p1-section.alt {
  background: #fffaf1;
}

.p1-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.p1-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.p1-heading p,
.p1-card p,
.p1-note p,
.p1-form-intro p,
.p1-price-table td {
  color: #58707a;
  line-height: 1.65;
}

.p1-grid,
.p1-link-grid,
.p1-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.p1-card,
.p1-note,
.p1-link-grid a,
.p1-form {
  border: 1px solid rgba(16, 42, 56, 0.11);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 42, 56, 0.08);
}

.p1-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f0;
  color: #15704b;
  font-weight: 900;
}

.p1-card h3,
.p1-link-grid strong {
  display: block;
  margin: 0 0 10px;
  color: #102a38;
  font-size: 1.12rem;
}

.p1-link-grid a {
  color: inherit;
  text-decoration: none;
}

.p1-photo-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 42, 56, 0.08);
}

.p1-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.p1-photo-card figcaption {
  padding: 14px 16px 18px;
  color: #31515d;
  font-weight: 800;
}

.p1-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.p1-price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 42, 56, 0.08);
}

.p1-price-table th,
.p1-price-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(16, 42, 56, 0.08);
  text-align: left;
  vertical-align: top;
}

.p1-price-table th {
  color: #102a38;
  background: #eef7f4;
}

.p1-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.p1-check-list li {
  position: relative;
  padding-left: 30px;
  color: #31515d;
  font-weight: 800;
}

.p1-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22a06b;
}

.p1-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

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

.p1-form label {
  display: grid;
  gap: 7px;
  color: #31515d;
  font-weight: 900;
}

.p1-form input,
.p1-form select,
.p1-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 56, 0.16);
  border-radius: 16px;
  padding: 13px 14px;
  color: #102a38;
  background: #fbfaf7;
  font: inherit;
}

.p1-form :disabled {
  opacity: 0.72;
}

.p1-faq details {
  margin-top: 12px;
  border: 1px solid rgba(16, 42, 56, 0.1);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
}

.p1-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.p1-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 32px clamp(18px, 5vw, 72px);
  background: #102a38;
  color: #fff;
}

.p1-footer a {
  color: #d9f2e7;
}

@media (max-width: 980px) {
  .p1-header,
  .p1-hero,
  .p1-heading,
  .p1-split,
  .p1-form-wrap {
    grid-template-columns: 1fr;
  }

  .p1-nav {
    justify-content: flex-start;
  }

  .p1-hero {
    background: linear-gradient(160deg, #102a38 0%, #173c4d 64%, #f5f1ea 64%, #f5f1ea 100%);
  }

  .p1-photo img {
    height: auto;
    max-height: none;
  }

  .p1-grid,
  .p1-grid.two,
  .p1-link-grid,
  .p1-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .p1-header {
    padding: 14px 16px;
  }

  .p1-actions {
    align-items: flex-start;
  }

  .p1-hero h1 {
    font-size: 39px;
  }

  .p1-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
