/* ===== Reset / base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #0b1220;
  background: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #ffffff;
  color: #0b1220;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

/* ===== Header (gradient on desktop + mobile) ===== */
/* Desktop baseline */
.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  position: static;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0a3d62, #0b6b64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand__mark img {
  height: 32px;
  width: 32px;
  display: block;
}

.brand__name {
  font-weight: 800;
}

.brand__tag {
  font-size: 13px;
  opacity: 0.9;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav__link {
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle__bars {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

/* ===== Hero ===== whole section left to right*/
.hero {
  background: #faf7f2;
  padding: 20px 0;
  border-bottom: 1px solid #ddd4c0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 16px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Image — col 1, row 1, centered against text height */
.hero__img {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  max-width: 840px;
  border-radius: 16px;
  display: block;
}

/* Text — col 2, row 1 */
.hero__text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.lead {
  font-size: 18px;
  opacity: 0.95;
}

.cta-row {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.cta-row .btn {
  flex: 1;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: #0b6b64;
  color: #ffffff;
}

.btn--primary:hover {
  background: #084f4a;
}

.btn--ghost {
  background: transparent;
  border-color: #0b6b64;
  color: #0b6b64;
}

.btn--ghost:hover {
  background: rgba(11, 107, 100, 0.08);
}

.hero__note {
  margin-top: 16px;
  max-width: 72ch;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f0e8d8;
  border: 1px solid #ddd4c0;
  font-size: 14px;
  color: #3d342b;
}

/* Responsive hero layout */
@media (max-width: 700px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    text-align: center;
    padding: 0 12px;
  }

  .hero__img {
    grid-column: 1;
    grid-row: 1;
    width: 180px;
    margin: 0 auto;
  }

  .hero__text {
    grid-column: 1;
    grid-row: 2;
  }

  .cta-row {
    grid-column: 1;
    grid-row: 3;
    flex-wrap: wrap;
  }

  .cta-row .btn {
    flex: 1 1 calc(50% - 6px);
  }
}


/* ===== Sections ===== */
.section {
  padding: 44px 0;
}

.section--alt {
  background: #f6f8fb;
}

.section__title {
  margin: 0 0 18px;
  font-size: 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Cards stack full width on mobile portrait */
@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.card__icon {
  font-size: 22px;
}

.card__icon img {
  width: 32px;
  height: 32px;
  /* display: block; */
  float: left;
  margin-right: 10px;
}

.card h3 {
  margin: 10px 0 8px;
}

.card p {
  margin: 0 0 10px;
  color: rgba(11, 18, 32, 0.85);
}

.card__link {
  font-weight: 700;
  color: #0a3d62;
}

.card__link:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  align-items: start;
}

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

.steps li {
  margin: 10px 0;
}

.panel {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 16px;
}

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

.list li {
  margin: 8px 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.86);
  padding: 24px 0;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}

.small {
  margin: 0;
  font-size: 14px;
}

.subtle {
  opacity: 0.85;
  margin-top: 6px;
}



/* Defaults (desktop) */
.nav-toggle {
  display: none;
}

.nav {
  position: static;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}



/* ===== Mobile behavior ===== */

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    /* keep the button on the right */
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 12px;
    left: auto;
    width: min(320px, calc(100% - 24px));
    min-width: 220px;

    display: none;
    /* hidden until opened */
    flex-direction: column;
    gap: 0;

    background: linear-gradient(135deg, #0a3d62, #0b6b64);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 9999;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav__link {
    border-radius: 0;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
  }
}


.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* not space-between */
}


/* ===== FORCE NAV TO THE RIGHT (desktop + mobile) ===== */

/* Make sure header content is a left-to-right flex row */
.site-header .site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

/* Brand stays on the left */
.site-header .brand {
  margin-right: auto !important;
}

/* Nav is pushed to the far right and its links align right */
.site-header .nav {
  margin-left: auto !important;
  width: auto !important;
  justify-content: flex-end !important;
  text-align: right !important;
}

/* If any link styles are centering, neutralize them */
.site-header .nav__link,
.site-header .nav a {
  text-align: left;
}

/* Mobile dropdown: anchor it to the right (not full-width centered) */
@media (max-width: 860px) {
  .site-header .nav {
    left: auto !important;
    right: 12px !important;
    width: min(320px, calc(100% - 24px)) !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   GUEST BOOK — append to /assets/css/style.css
   (replaces all previous guest book additions)
   ════════════════════════════════════════════════════════════════ */

.section__sub {
  color: #6b7280;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ── Compact preview list (homepage card) ───────────────────── */
.gb-compact {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  border: 1px solid #e8dfc8;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.875rem;
}

.gb-compact__item {
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
}

.gb-compact__item--even {
  background: #fffdf7;
}

.gb-compact__item--odd {
  background: #fdf6e8;
}

.gb-compact__msg {
  color: #5c4a30;
}

.gb-compact__loading,
.gb-compact__empty {
  padding: 0.6rem 0.75rem;
  color: #9c8060;
  font-style: italic;
  list-style: none;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── Card actions row ───────────────────────────────────────── */
.gb-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.gb-sign-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
}

/* ── Inline form ────────────────────────────────────────────── */
.gb-form-inline {
  box-sizing: border-box;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8dfc8;
}

.gb-form-inline--page {
  background: #fffdf7;
  border: 1px solid #e8dfc8;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.gb-form-inline input[type="text"],
.gb-form-inline input[type="email"],
.gb-form-inline textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.5rem;
  border: 1px solid #d4c9b0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  background: #fffef9;
  transition: border-color 0.15s;
  color: #2c1810;
}

.gb-form-inline input:focus,
.gb-form-inline textarea:focus {
  outline: none;
  border-color: #c8a96e;
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.gb-form-inline textarea {
  resize: vertical;
  min-height: 4rem;
}

.gb-inline-row {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
}

.gb-inline-row input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .gb-inline-row {
    grid-template-columns: 1fr;
  }
}

.gb-form-inline .cf-turnstile {
  margin: 0.5rem 0;
}

/* ── Form actions ───────────────────────────────────────────── */
.gb-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.gb-form-inline .gb-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1d4ed8;
  color: #ffffff;
  border: 2px solid #1d4ed8;
  border-radius: 6px;
  padding: 0.4rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.gb-form-inline .gb-submit-btn:hover:not(:disabled) {
  background-color: #1e40af;
  border-color: #1e40af;
}

.gb-form-inline .gb-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gb-form-inline .gb-cancel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f0e8;
  color: #5c4a30;
  border: 2px solid #d4c9b0;
  border-radius: 6px;
  padding: 0.4rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.gb-form-inline .gb-cancel-btn:hover {
  background-color: #ede5d4;
  border-color: #b8a888;
}

/* ── Status & validation ────────────────────────────────────── */
.gb-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.gb-status--success {
  color: #15803d;
}

.gb-status--error {
  color: #dc2626;
}

.gb-field--error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.gb-field-error {
  display: block;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  margin-bottom: 0.3rem;
}

/* ── Full page entries ──────────────────────────────────────── */
.gb-page-header {
  margin-bottom: 1.5rem;
}

.gb-page-header .section__title {
  margin-bottom: 0.4rem;
}

.gb-divider {
  border: none;
  border-top: 1px solid #e8dfc8;
  margin: 1.5rem 0;
}

.gb-all {
  min-height: 4rem;
  border: 1px solid #e8dfc8;
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf7;
}

.gb-entry {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8dfc8;
}

.gb-entry:last-child {
  border-bottom: none;
}

.gb-entry--even {
  background: #fffdf7;
}

.gb-entry--odd {
  background: #fdf6e8;
}

.gb-entry__title {
  margin: 0 0 0.2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c1810;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e0d4bc;
}

.gb-entry__meta {
  font-size: 0.75rem;
  color: #9c8060;
  margin: 0.3rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Arial, sans-serif;
}

.gb-entry__body {
  margin: 0;
  white-space: pre-line;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d2b1a;
}

.gb-loading,
.gb-empty {
  color: #9c8060;
  font-style: italic;
  padding: 1rem;
  font-family: 'Source Sans 3', sans-serif;
}

/* ── Pagination ─────────────────────────────────────────────── */
.gb-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.gb-page-info {
  font-size: 0.9rem;
  color: #9c8060;
  font-family: Arial, sans-serif;
}

.gb-page-btn {
  background-color: #f5f0e8;
  color: #5c4a30;
  border: 2px solid #d4c9b0;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.gb-page-btn:hover {
  background-color: #ede5d4;
  border-color: #b8a888;
}

.btn--sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
}



/* ════════════════════════════════════════════════════════════════
   PHOTO SLIDESHOW — appended to /assets/css/style.css
   ════════════════════════════════════════════════════════════════ */

/* Google Font — loaded via header.php */

/* ── Section wrapper ─────────────────────────────────────────── */
.section--slideshow {
  padding: 0;
  line-height: 0;
  /* prevents gap below inline elements */
}

/* ── Hero frame ──────────────────────────────────────────────── */
.ph-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #1a1008;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: normal;
}

@media (max-width: 600px) {
  .ph-hero {
    height: 320px;
  }
}

/* ── Slides ──────────────────────────────────────────────────── */
.ph-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}

.ph-slide.ph-active {
  opacity: 1;
  pointer-events: auto;
}

/* Blurred background layer */
.ph-slide .ph-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(18px) brightness(0.4) saturate(0.65);
  transform: scale(1.08);
  display: block;
}

/* Foreground — full image, no crop */
.ph-slide img.ph-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.55));
}

/* ── Caption overlay ─────────────────────────────────────────── */
.ph-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px 52px;
  /* extra bottom padding clears controls */
  background: linear-gradient(transparent, rgba(12, 8, 4, 0.80) 40%);
  pointer-events: none;
}

.ph-caption-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: #f5efe6;
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

/* ── Controls ────────────────────────────────────────────────── */
.ph-controls {
  position: absolute;
  bottom: 14px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.ph-btn {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
  font-size: 15px;
  line-height: 1;
}

.ph-btn:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Dot indicators ──────────────────────────────────────────── */
.ph-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.ph-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}

.ph-dot.ph-active {
  background: rgba(255, 255, 255, 0.88);
  transform: scale(1.35);
}

/* ── Loading / empty state ───────────────────────────────────── */
.ph-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Paused badge ────────────────────────────────────────────── */
.ph-paused-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.55);
  font-family: system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 11;
}

.ph-hero.ph-is-paused .ph-paused-badge {
  opacity: 1;
}



/* ═══════════════════════════════════════════════════════
   PUZZLES DROPDOWN NAV
   ═══════════════════════════════════════════════════════ */

.nav__item {
  position: relative;
}

/* Toggle inherits nav__link appearance; just add flex for the caret */
.nav__dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__dropdown-toggle:hover {
  text-decoration: none;
}

.nav__caret {
  font-size: 0.7em;
  transition: transform 0.2s;
  display: inline-block;
  line-height: 1;
}

.nav__dropdown-toggle[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: linear-gradient(135deg, #0a3d62, #0b6b64);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav__dropdown li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__dropdown-link {
  display: block;
  color: #ffffff;
  padding: 10px 18px;
  white-space: nowrap;
  background: none;
}

.nav__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.nav__dropdown li:first-child .nav__dropdown-link {
  border-radius: 10px 10px 0 0;
}

.nav__dropdown li:last-child .nav__dropdown-link {
  border-radius: 0 0 10px 10px;
}

/* Mobile */
@media (max-width: 860px) {
  .nav__item {
    position: static;
    display: block;
  }

  .nav__dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
  }

  .nav__dropdown {
    position: static;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.20);
    padding: 0;
    margin: 0;
  }

  .nav__dropdown-link {
    padding: 11px 16px 11px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .nav__dropdown li:first-child .nav__dropdown-link,
  .nav__dropdown li:last-child .nav__dropdown-link {
    border-radius: 0;
  }
}