:root {
  --public-navy-950: #06162b;
  --public-navy-900: #071b33;
  --public-navy-800: #0b2a4b;
  --public-cyan-500: #17b8d3;
  --public-cyan-400: #45cae0;
  --public-cyan-100: #ddf8fb;
  --public-cyan-700: #00647a;
  --public-paper: #ffffff;
  --public-mist: #f3f8fa;
  --public-ink: #10243a;
  --public-muted: #5b6c7f;
  --public-line: #d9e5e9;
  --public-radius: 22px;
  --public-shadow: 0 24px 60px rgba(6, 35, 59, 0.12);
  --public-focus: #ffbf47;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--public-ink);
  background: var(--public-paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

html :focus-visible {
  outline: 3px solid var(--public-navy-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--public-focus);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--public-navy-950);
  background: var(--public-focus);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.public-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.public-container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 229, 233, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--public-navy-950);
  text-decoration: none;
}

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

.public-brand strong {
  font-size: 1.08rem;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.public-brand small {
  margin-top: 2px;
  color: var(--public-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(8, 35, 67, 0.12);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.public-nav a {
  position: relative;
  color: #263e54;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.public-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--public-cyan-500);
  transform: scaleX(0);
  transition: transform 0.16s ease;
}

.public-nav a:hover::after,
.public-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.public-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--public-cyan-500);
  border-radius: 999px;
  color: var(--public-navy-950);
  background: var(--public-cyan-400);
  box-shadow: 0 12px 30px rgba(23, 184, 211, 0.24);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.public-button:hover {
  background: #68d9e9;
  box-shadow: 0 15px 34px rgba(23, 184, 211, 0.3);
  transform: translateY(-2px);
}

.public-button--compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.public-button--ghost {
  border-color: #aac0ca;
  color: var(--public-navy-900);
  background: transparent;
  box-shadow: none;
}

.public-button--ghost:hover {
  border-color: var(--public-cyan-500);
  background: var(--public-cyan-100);
  box-shadow: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) 0 clamp(70px, 9vw, 112px);
  background:
    radial-gradient(circle at 83% 28%, rgba(69, 202, 224, 0.18), transparent 26%),
    linear-gradient(140deg, #f8fcfd 0%, #eff8fa 58%, #e7f5f8 100%);
}

.hero-section::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 184, 211, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #087c95;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--public-cyan-500);
}

.hero-copy h1,
.page-hero h1,
.article-header h1 {
  margin: 17px 0 22px;
  color: var(--public-navy-950);
  font-size: clamp(2.65rem, 5.6vw, 5.05rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #4d6275;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions,
.contact-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-note {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--public-muted);
  font-size: 0.84rem;
}

.eye-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: space-between;
  overflow: hidden;
  padding: 42px;
  border-radius: 42px 14px 42px 14px;
  color: var(--public-paper);
  background:
    radial-gradient(circle at 70% 22%, rgba(69, 202, 224, 0.28), transparent 28%),
    linear-gradient(145deg, var(--public-navy-800), var(--public-navy-950));
  box-shadow: 0 35px 80px rgba(6, 22, 43, 0.24);
}

.eye-orbit {
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 1.75;
  place-items: center;
  margin: 42px auto 0;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 80% 12%;
  transform: rotate(45deg);
}

.eye-iris {
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  border: 19px solid var(--public-cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(69, 202, 224, 0.42);
  transform: rotate(-45deg);
}

.eye-pupil {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--public-paper);
}

.eye-card-caption span,
.eye-card-caption strong {
  display: block;
}

.eye-card-caption span {
  color: #9fe9f2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eye-card-caption strong {
  max-width: 310px;
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.public-section {
  padding: clamp(66px, 8vw, 105px) 0;
}

.public-section--soft {
  background: var(--public-mist);
}

.public-section--navy {
  color: var(--public-paper);
  background:
    radial-gradient(circle at 90% 30%, rgba(23, 184, 211, 0.18), transparent 25%),
    var(--public-navy-950);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 12px 0 10px;
  color: var(--public-navy-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--public-muted);
  font-size: 1.04rem;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--public-paper);
}

.feature-grid,
.news-grid,
.location-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: var(--public-paper);
  box-shadow: 0 18px 45px rgba(19, 57, 78, 0.07);
}

.feature-number {
  color: var(--public-cyan-700);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.feature-card h3,
.news-card h2,
.news-card h3 {
  margin: 42px 0 12px;
  color: var(--public-navy-900);
  font-size: 1.3rem;
  line-height: 1.25;
}

.feature-card p,
.news-card p {
  margin: 0;
  color: var(--public-muted);
}

.section-action {
  margin-top: 34px;
}

.text-link,
.back-link {
  color: #087c95;
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover,
.back-link:hover {
  text-decoration: underline;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: var(--public-paper);
  box-shadow: 0 18px 45px rgba(19, 57, 78, 0.08);
}

.news-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--public-mist);
}

.news-card-content {
  padding: 26px;
}

.news-card h2,
.news-card h3 {
  margin: 13px 0 10px;
}

.news-card h2 a,
.news-card h3 a {
  text-decoration: none;
}

.news-card h2 a:hover,
.news-card h3 a:hover {
  color: #087c95;
}

.news-card .text-link {
  display: inline-block;
  margin-top: 20px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--public-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-meta > * + *::before {
  margin-right: 9px;
  content: "•";
  color: var(--public-cyan-500);
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.location-card {
  padding: 30px;
  border: 1px solid rgba(130, 212, 225, 0.25);
  border-radius: var(--public-radius);
  background: rgba(255, 255, 255, 0.06);
}

.location-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.location-card p {
  color: #c4d5df;
  white-space: pre-line;
}

.location-actions {
  margin-top: 24px;
}

.location-actions a {
  color: #7de3f0;
  font-weight: 800;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--public-radius);
  object-fit: cover;
  box-shadow: var(--public-shadow);
}

.page-hero {
  padding: clamp(72px, 10vw, 130px) 0;
  background:
    radial-gradient(circle at 75% 10%, rgba(69, 202, 224, 0.19), transparent 24%),
    linear-gradient(145deg, #f8fcfd, #edf7f9);
}

.page-hero--compact {
  padding-block: clamp(60px, 8vw, 92px);
}

.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--public-muted);
  font-size: 1.08rem;
}

.offer-list {
  border-top: 1px solid var(--public-line);
}

.offer-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--public-line);
}

.offer-item > span {
  color: var(--public-cyan-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offer-item h2 {
  margin: 0 0 8px;
  color: var(--public-navy-900);
}

.offer-item p {
  max-width: 740px;
  margin: 0;
  color: var(--public-muted);
}

.notice-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 60px);
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: var(--public-mist);
  text-align: center;
}

.notice-card h2,
.notice-card h3 {
  margin-top: 0;
  color: var(--public-navy-900);
}

.notice-card p {
  color: var(--public-muted);
}

.notice-card .public-button {
  margin-top: 14px;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-card {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  box-shadow: var(--public-shadow);
}

.contact-card-top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 8px;
  border: 4px solid var(--public-cyan-100);
  border-radius: 50%;
  background: var(--public-cyan-500);
  box-shadow: 0 0 0 1px var(--public-cyan-500);
}

.contact-card h2 {
  margin: 0;
}

.contact-card .address {
  margin: 5px 0 0;
  color: var(--public-muted);
}

.contact-card dl {
  margin: 30px 0;
}

.contact-card dl > div {
  padding: 18px 0;
  border-top: 1px solid var(--public-line);
}

.contact-card dt {
  color: var(--public-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 5px 0 0;
  color: var(--public-navy-900);
  font-weight: 700;
  white-space: pre-line;
}

.google-place-panel {
  min-width: 0;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: 16px;
  background: #fff;
}

.google-place-panel gmp-place-details-compact {
  display: block;
  width: 100%;
  min-height: 150px;
}

.google-place-fallback {
  margin: 0;
  padding: 18px;
  color: var(--public-muted);
  font-size: 0.9rem;
}

.google-places-ready .google-place-fallback {
  display: none;
}

.legal-content {
  max-width: 820px;
  font-size: 1.02rem;
}

.legal-content h2 {
  margin: 42px 0 10px;
  color: var(--public-navy-900);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #465b6e;
}

.legal-note {
  margin-top: 42px;
  padding: 20px;
  border-left: 4px solid var(--public-cyan-500);
  background: var(--public-mist);
  font-size: 0.91rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  color: var(--public-muted);
}

.pagination a {
  color: #087c95;
  font-weight: 800;
}

.article-page {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.article-header {
  padding: clamp(58px, 8vw, 96px) 0 48px;
  background: linear-gradient(145deg, #f8fcfd, #edf7f9);
}

.article-header .news-meta {
  margin-top: 44px;
}

.article-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.article-lead {
  max-width: 760px;
  margin: 0;
  color: var(--public-muted);
  font-size: 1.18rem;
}

.article-image {
  width: 100%;
  margin: 48px 0 38px;
  border-radius: var(--public-radius);
  object-fit: cover;
  box-shadow: var(--public-shadow);
}

.article-body {
  padding-top: 46px;
  color: #2f4559;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.86;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.article-image + .article-body {
  padding-top: 0;
}

.site-footer {
  padding: 60px 0 22px;
  color: #c1d1db;
  background: var(--public-navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  color: var(--public-paper);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid p {
  max-width: 430px;
  margin-bottom: 0;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--public-paper);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 7px 0;
  color: #c1d1db;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--public-cyan-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8ba0ae;
  font-size: 0.79rem;
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 13px 0;
  }

  .public-brand {
    min-height: 44px;
  }

  .public-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding: 3px 1px 8px;
  }

  .public-nav a {
    flex: 0 0 auto;
  }

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

  .eye-card {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  .public-container,
  .public-container.narrow {
    width: min(100% - 26px, 1160px);
  }

  .site-header {
    position: static;
  }

  .public-button--compact {
    display: none;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-copy h1,
  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .hero-actions .public-button,
  .contact-actions .public-button {
    width: 100%;
  }

  .eye-card {
    min-height: 320px;
    padding: 28px;
    border-radius: 30px 12px;
  }

  .eye-orbit {
    width: 230px;
    margin-top: 28px;
  }

  .eye-iris {
    width: 80px;
    border-width: 15px;
  }

  .eye-pupil {
    width: 25px;
  }

  .feature-grid,
  .news-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3 {
    margin-top: 28px;
  }

  .offer-item {
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Public identity refresh — navy, champagne gold and editorial typography. */
:root {
  --public-navy-950: #06101f;
  --public-navy-900: #081426;
  --public-navy-800: #10233e;
  --public-navy-700: #17304f;
  --public-gold-500: #c9953c;
  --public-gold-400: #e0b566;
  --public-gold-300: #f0d191;
  --public-gold-100: #fbf2df;
  --public-paper: #fffdf9;
  --public-mist: #f5f2ec;
  --public-ink: #122238;
  --public-muted: #657186;
  --public-line: #e6dfd3;
  --public-radius: 20px;
  --public-shadow: 0 22px 58px rgba(6, 16, 31, 0.12);
  --public-focus: #f5c96f;
}

body {
  background: var(--public-paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.public-container {
  width: min(1240px, calc(100% - 48px));
}

.site-header {
  border-bottom: 1px solid rgba(224, 181, 102, 0.16);
  color: #fff;
  background: rgba(6, 16, 31, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
  min-height: 82px;
}

.public-brand {
  color: #fff;
}

.public-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.public-brand small {
  color: var(--public-gold-300);
  font-size: 0.62rem;
  letter-spacing: 0.19em;
}

.public-brand-logo {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  border-color: rgba(224, 181, 102, 0.34);
  background: #071221;
}

.public-nav {
  gap: 24px;
}

.public-nav a {
  color: #dbe3ec;
  font-size: 0.82rem;
  font-weight: 650;
}

.public-nav a::after {
  bottom: -11px;
  background: var(--public-gold-400);
}

.public-nav a:hover,
.public-nav a[aria-current="page"] {
  color: #fff;
}

.public-button {
  min-height: 50px;
  border-color: var(--public-gold-400);
  color: var(--public-navy-950);
  background: linear-gradient(135deg, #f3d590, #d5a34e);
  box-shadow: 0 14px 34px rgba(201, 149, 60, 0.24);
}

.public-button:hover {
  border-color: var(--public-gold-300);
  background: linear-gradient(135deg, #f8e0a5, #e3b866);
  box-shadow: 0 17px 38px rgba(201, 149, 60, 0.3);
}

.public-button--compact {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.78rem;
}

.public-button--ghost {
  border-color: rgba(18, 34, 56, 0.24);
  color: var(--public-navy-900);
  background: transparent;
}

.public-button--ghost:hover {
  border-color: var(--public-gold-500);
  background: var(--public-gold-100);
}

.hero-section {
  min-height: 760px;
  padding: clamp(84px, 10vw, 138px) 0 0;
  color: #fff;
  background: var(--public-navy-950);
}

.hero-section::before {
  display: none;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.99) 0%, rgba(4, 12, 24, 0.94) 35%, rgba(4, 12, 24, 0.46) 68%, rgba(4, 12, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 12, 24, 0.7) 0%, transparent 38%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-optyk-2026.webp");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.55fr);
  min-height: 490px;
  gap: 70px;
}

.eyebrow {
  color: var(--public-gold-300);
  font-size: 0.7rem;
  letter-spacing: 0.19em;
}

.eyebrow::before {
  background: var(--public-gold-400);
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 22px 0 24px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 610px;
  color: #d6dee8;
  font-size: clamp(1.03rem, 1.55vw, 1.2rem);
}

.hero-section .public-button--ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.hero-section .public-button--ghost:hover {
  border-color: var(--public-gold-400);
  color: var(--public-navy-950);
  background: var(--public-gold-100);
}

.hero-note {
  color: #aab7c8;
}

.hero-detail {
  align-self: end;
  max-width: 330px;
  margin-bottom: 65px;
  padding: 24px;
  border: 1px solid rgba(240, 209, 145, 0.25);
  border-radius: 18px;
  background: rgba(5, 15, 29, 0.72);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-detail-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--public-gold-400);
  border-radius: 50%;
  color: var(--public-gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
}

.hero-detail p {
  margin: 24px 0 8px;
  color: var(--public-gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-detail strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(240, 209, 145, 0.24);
}

.trust-strip > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip span {
  grid-row: 1 / span 2;
  color: var(--public-gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  color: #fff;
  font-size: 0.86rem;
}

.trust-strip small {
  margin-top: 3px;
  color: #9faec0;
  font-size: 0.7rem;
}

.public-section {
  padding: clamp(74px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 790px;
}

.section-heading h2,
.about-copy h2,
.vision-grid h2 {
  color: var(--public-navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading--row {
  align-items: end;
  margin-bottom: 48px;
}

.section-heading--row > div {
  max-width: 800px;
}

.text-link,
.back-link {
  color: #9c6b1d;
  font-weight: 800;
}

.offer-preview {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f5ef 100%);
}

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

.offer-confirmation {
  grid-column: 1 / -1;
  margin: -4px 0 4px;
  padding: 13px 18px;
  border-left: 3px solid var(--public-gold-500);
  color: #6f5b37;
  background: var(--public-gold-100);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(12, 27, 48, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(201, 149, 60, 0.58);
  box-shadow: 0 22px 48px rgba(12, 27, 48, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(201, 149, 60, 0.42);
  border-radius: 50%;
  color: #a56e19;
  background: var(--public-gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.service-card h3 {
  margin: 33px 0 11px;
  color: var(--public-navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--public-muted);
  font-size: 0.94rem;
}

.about-section {
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(224, 181, 102, 0.14), transparent 24%),
    var(--public-navy-900);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(224, 181, 102, 0.22);
  border-radius: 40px 10px 40px 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.about-visual img {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(224, 181, 102, 0.42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.about-orbit {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(224, 181, 102, 0.2);
  border-radius: 50%;
}

.about-orbit::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(224, 181, 102, 0.12);
  border-radius: 50%;
  content: "";
}

.about-visual > span {
  position: absolute;
  bottom: 34px;
  color: var(--public-gold-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 16px 0 24px;
  color: #fff;
}

.about-lead {
  max-width: 720px;
  color: #c8d2df;
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 34px;
}

.about-points div {
  padding-top: 18px;
  border-top: 1px solid rgba(224, 181, 102, 0.34);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: #fff;
  font-size: 0.9rem;
}

.about-points span {
  margin-top: 7px;
  color: #9daec0;
  font-size: 0.82rem;
}

.about-section .text-link {
  color: var(--public-gold-300);
}

.vision-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(224, 181, 102, 0.17), transparent 24%),
    var(--public-paper);
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(60px, 9vw, 140px);
}

.vision-grid h2 {
  margin: 16px 0 0;
}

.vision-copy {
  padding: 34px;
  border-left: 3px solid var(--public-gold-400);
  background: #f8f4ec;
}

.vision-copy p {
  margin-top: 0;
  color: var(--public-muted);
}

.vision-copy ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.vision-copy li {
  position: relative;
  margin: 12px 0;
  padding-left: 27px;
  color: var(--public-navy-800);
  font-weight: 650;
}

.vision-copy li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--public-gold-500);
  border-radius: 50%;
  content: "";
}

.news-section {
  background: var(--public-mist);
}

.news-card {
  border-color: var(--public-line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(6, 16, 31, 0.08);
}

.news-card > img,
.news-placeholder {
  aspect-ratio: 16 / 10;
}

.news-placeholder {
  display: grid;
  place-items: center;
  color: var(--public-gold-300);
  background:
    radial-gradient(circle at 50% 40%, rgba(224, 181, 102, 0.22), transparent 25%),
    var(--public-navy-900);
}

.news-placeholder span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--public-gold-400);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.news-meta {
  color: #8a6a34;
}

.news-meta > * + *::before {
  color: var(--public-gold-500);
}

.news-card h2,
.news-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.news-card .text-link {
  display: inline-block;
  margin-top: 20px;
}

.public-section--navy {
  background:
    radial-gradient(circle at 92% 16%, rgba(224, 181, 102, 0.14), transparent 22%),
    var(--public-navy-950);
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.location-card {
  padding: 34px;
  border-color: rgba(224, 181, 102, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.location-index {
  color: var(--public-gold-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.location-card h3 {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.location-address {
  color: #fff !important;
  font-weight: 700;
}

.location-actions a {
  color: var(--public-gold-300);
}

.notice-card--dark {
  border-color: rgba(224, 181, 102, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.notice-card--dark h3,
.notice-card--dark p {
  color: inherit;
}

.page-hero,
.article-header {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(224, 181, 102, 0.16), transparent 24%),
    linear-gradient(135deg, var(--public-navy-900), var(--public-navy-950));
}

.page-hero h1,
.article-header h1 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.page-hero p,
.article-lead {
  color: #c9d2dd;
}

.offer-list {
  border-color: var(--public-line);
}

.offer-item {
  grid-template-columns: 70px 1fr;
  border-color: var(--public-line);
}

.offer-item > span {
  color: #9c6b1d;
  font-family: Georgia, "Times New Roman", serif;
}

.offer-item h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.contact-card {
  border-color: var(--public-line);
  background: #fff;
}

.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.location-dot {
  border-color: var(--public-gold-100);
  background: var(--public-gold-500);
  box-shadow: 0 0 0 1px var(--public-gold-500);
}

.article-body {
  color: #33445a;
}

.site-footer {
  border-top: 1px solid rgba(224, 181, 102, 0.18);
  background: #040c18;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr));
  gap: 42px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-decoration: none;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 181, 102, 0.3);
  border-radius: 50%;
}

.footer-grid h2 {
  color: var(--public-gold-300);
}

.footer-grid a:hover {
  color: var(--public-gold-300);
}

@media (max-width: 1050px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 12px 0;
  }

  .public-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding: 4px 2px 8px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
  }

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

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:nth-child(n+3) {
    margin-top: 22px;
  }

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

  .about-grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 50px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .public-container,
  .public-container.narrow {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    position: static;
  }

  .public-brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .public-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 22px;
    overflow: visible;
  }

  .public-nav a {
    flex: 0 0 auto;
    font-size: 0.76rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-section::after {
    background:
      linear-gradient(90deg, rgba(4, 12, 24, 0.97), rgba(4, 12, 24, 0.72)),
      linear-gradient(0deg, rgba(4, 12, 24, 0.76), transparent 44%);
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-grid {
    display: block;
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-detail {
    max-width: 100%;
    margin: 48px 0 32px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-strip > div,
  .trust-strip > div:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip > div:nth-child(n+3) {
    margin-top: 0;
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row > .text-link,
  .section-heading--row > .public-button {
    display: inline-flex;
    margin-top: 20px;
  }

  .service-grid,
  .about-grid,
  .vision-grid,
  .news-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 380px;
  }

  .vision-copy {
    padding: 26px;
  }

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

@media (max-width: 460px) {
  .public-brand strong {
    font-size: 0.96rem;
  }

  .public-brand small {
    font-size: 0.55rem;
  }

  .hero-actions .public-button,
  .contact-actions .public-button {
    width: 100%;
  }

  .service-card {
    min-height: 0;
  }

  .about-visual {
    min-height: 330px;
  }

  .about-visual img {
    width: 160px;
    height: 160px;
  }

  .about-orbit {
    width: 250px;
    height: 250px;
  }

  .footer-bottom {
    display: block;
  }
}
