:root {
  --navy: #07234b;
  --slate: #7c818b;
  --orange: #f1691b;
  --white: #ffffff;
  --header-offset: 0px;
  --bg: #0b2347;
  --text: #edf3fb;
  --muted: rgba(237, 243, 251, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  --page-background: linear-gradient(180deg, rgba(7, 35, 75, 0.98), rgba(7, 35, 75, 0.98));
  --surface-gradient: linear-gradient(180deg, rgba(7, 35, 75, 0.88), rgba(7, 35, 75, 0.88));
  --surface-gradient-soft: linear-gradient(180deg, rgba(12, 44, 90, 0.82), rgba(12, 44, 90, 0.82));
  --shadow: 0 18px 48px rgba(7, 35, 75, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: var(--page-background);
  line-height: 1.6;
  padding-top: var(--header-offset);
}

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

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

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

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

.topbar {
  background: #f1691b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.28s ease, border-bottom-color 0.28s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  transition: padding 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: #f1691b;
  box-shadow: 0 10px 28px rgba(7, 35, 75, 0.08);
}

.site-header.is-compact .topbar {
  max-height: 0;
  border-bottom-color: transparent;
}

.site-header.is-compact .topbar-inner {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-top {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.brand-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
}

.topbar-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
  flex: 1;
}

.topbar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  justify-content: flex-start;
  color: var(--white);
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
}

.topbar-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.topbar-copy span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.topbar-copy strong {
  font-size: 1rem;
  line-height: 1;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.nav-strip {
  background: #f1691b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.92);
  min-height: 68px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 30px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 35, 75, 0.88) 0%, rgba(7, 35, 75, 0.52) 44%, rgba(7, 35, 75, 0.2) 100%),
    radial-gradient(circle at 20% 20%, rgba(241, 105, 27, 0.22), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(124, 129, 139, 0.16), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 68px 0 64px;
}

.hero-panels {
  position: relative;
  min-height: 420px;
  width: min(100%, 1080px);
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 920px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: 72px;
}

.hero-pagination {
  position: absolute;
  left: 0;
  bottom: 156px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.hero-dot {
  width: 42px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  background: var(--orange);
  transform: scaleX(1.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8b49);
  box-shadow: 0 16px 32px rgba(241, 105, 27, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 820px;
}

.hero-stats article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--orange);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 96px 0;
}

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

.section-heading h2,
.advantage-content h2,
.appointment-box h2,
.split-grid h2,
.visual-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  color: var(--white);
}

.section-heading p:last-child,
.lead,
.visual-card p:last-child {
  color: var(--muted);
}

.featured-grid,
.catalog-grid,
.news-grid,
.partners-grid {
  display: grid;
  gap: 24px;
}

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

.featured-card,
.catalog-card,
.article-item,
.news-card,
.appointment-box,
.visual-card {
  background: var(--surface-gradient-soft);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
}

.featured-card,
.catalog-card,
.article-item,
.news-card {
  padding: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalog-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin-bottom: 4px;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: contain;
}

.featured-card:hover,
.catalog-card:hover,
.article-item:hover,
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 105, 27, 0.45);
  box-shadow: 0 24px 52px rgba(7, 35, 75, 0.16);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(241, 105, 27, 0.9), rgba(124, 129, 139, 0.72));
  color: var(--white);
  font-weight: 800;
}

.featured-card h3,
.catalog-card h3,
.article-item h3,
.news-content h3,
.advantage-list h3,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.featured-card p,
.catalog-card p,
.article-item p,
.news-content p,
.advantage-list p,
.footer-copy,
.footer-list,
.appointment-form label {
  color: var(--muted);
}

.featured-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
}

.advantage {
  background: transparent;
}

.advantage-grid,
.split-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.visual-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 34px;
  background: var(--surface-gradient);
  color: var(--white);
}

.visual-media {
  margin-bottom: 6px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(7, 35, 75, 0.28);
}

.visual-media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.visual-card h2,
.visual-card p,
.visual-card .eyebrow {
  color: var(--white);
}

.visual-card .eyebrow {
  margin: 2px 0 0;
}

.visual-card h2 {
  margin: 0;
  line-height: 1.25;
}

.visual-card p {
  margin: 0;
}

.visual-card > p:not(.eyebrow) {
  line-height: 1.8;
  max-width: 58ch;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.badge-row span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.advantage-content {
  padding: 18px 0;
}

.advantage-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.advantage-list article {
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--surface-gradient-soft);
  box-shadow: 0 12px 30px rgba(7, 35, 75, 0.2);
}

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

.split-section {
  background: transparent;
}

.article-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.article-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-box {
  padding: 34px;
  background: var(--surface-gradient);
}

.appointment-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.appointment-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 35, 75, 0.48);
  color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: rgba(241, 105, 27, 0.55);
  box-shadow: 0 0 0 4px rgba(241, 105, 27, 0.12);
}

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

.news-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: start;
}

.news-date {
  display: grid;
  place-items: center;
  border-radius: 20px;
  padding: 14px 10px;
  background: var(--surface-gradient);
  color: var(--white);
}

.news-date strong {
  font-size: 2rem;
  line-height: 1;
}

.news-date span {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.partners-grid span {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-gradient-soft);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(7, 35, 75, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.partners-grid span:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 105, 27, 0.45);
}

.site-footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 72px 0 44px;
}

.footer-block {
  min-width: 0;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 32ch;
  line-height: 1.85;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  padding: 16px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  color: var(--white);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 35, 75, 0.88) 0%, rgba(7, 35, 75, 0.56) 52%, rgba(7, 35, 75, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 35, 75, 0.16), rgba(7, 35, 75, 0.44));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 78px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.page-hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.page-breadcrumb a:hover {
  color: var(--orange);
}

.about-intro-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.about-copy-card,
.about-summary-card,
.about-culture-card,
.about-story-content,
.about-story-media,
.about-value-card,
.about-metric-card,
.about-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
}

.about-copy-card,
.about-summary-card,
.about-culture-card,
.about-story-content,
.about-value-card,
.about-cta-card {
  padding: 34px;
}

.about-copy-card h2,
.about-culture-card h2,
.about-story-content h2,
.about-cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
}

.about-copy-card p:last-child,
.about-culture-card p,
.about-story-content p,
.about-cta-card p {
  color: var(--muted);
}

.about-culture-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-culture-card p {
  margin: 0;
  line-height: 1.95;
}

.about-culture-values {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  padding-top: 8px;
}

.about-culture-values p {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-culture-values strong {
  color: var(--white);
}

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

.booking-info-card,
.booking-form-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
}

.booking-info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px;
}

.booking-info-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.2;
}

.booking-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.booking-info-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.booking-info-list p {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-info-list strong {
  color: var(--white);
}

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

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
  padding: 34px;
}

.contact-card h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.2;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.contact-list p {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list strong,
.contact-service-grid h3 {
  color: var(--white);
}

.contact-wide-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contact-service-grid article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-service-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

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

.service-page-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-page-card:hover,
.service-page-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(241, 105, 27, 0.45);
  box-shadow: 0 24px 52px rgba(7, 35, 75, 0.16);
  outline: none;
}

.service-page-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 24px 24px 10px;
}

.service-page-media img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.service-page-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 0 28px 28px;
}

.service-page-body h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
}

.service-page-body p {
  margin: 0;
  color: var(--muted);
}

.service-page-link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--orange);
  font-weight: 700;
}

.news-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.news-page-card {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.news-page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 105, 27, 0.4);
  box-shadow: 0 24px 52px rgba(7, 35, 75, 0.16);
}

.news-page-media {
  height: 100%;
}

.news-page-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.news-page-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.news-page-date {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(241, 105, 27, 0.14);
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
}

.news-page-body h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.45;
}

.news-page-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.news-page-link {
  margin-top: auto;
  color: var(--orange);
  font-weight: 700;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.news-detail-layout-single {
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.news-detail-sidebar,
.news-article-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient-soft);
  box-shadow: 0 22px 54px rgba(4, 14, 32, 0.28);
}

.news-detail-sidebar {
  position: sticky;
  top: calc(var(--header-offset) + 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.news-detail-sidebar h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.6rem;
}

.news-detail-sidebar a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.news-detail-sidebar a:hover {
  color: var(--orange);
}

.news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.news-article-card {
  overflow: hidden;
}

.news-article-media img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.news-article-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
}

.news-article-body h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.35;
}

.news-article-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.news-article-rich {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-article-rich p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 10, 24, 0.72);
  backdrop-filter: blur(8px);
  z-index: 60;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 35, 75, 0.98), rgba(12, 44, 90, 0.96));
  box-shadow: 0 28px 60px rgba(2, 10, 24, 0.46);
}

.service-modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin: 4px 0 22px;
}

.service-modal-media img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.service-modal-dialog h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.service-modal-dialog p:last-of-type {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
  white-space: pre-line;
  font-size: 1.02rem;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

body.modal-open {
  overflow: hidden;
}

.about-summary-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.about-summary-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-summary-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
}

.about-summary-item span {
  color: var(--muted);
}

.about-story-media {
  overflow: hidden;
}

.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-content p {
  margin: 0;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.about-points article {
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.05);
}

.about-points h3,
.about-value-card h3 {
  margin: 0 0 10px;
  color: var(--white);
}

.about-points p,
.about-value-card p {
  margin: 0;
  color: var(--muted);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-value-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 105, 27, 0.45);
  box-shadow: 0 24px 52px rgba(7, 35, 75, 0.16);
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-metric-card {
  padding: 28px 24px;
  text-align: center;
}

.about-metric-card strong {
  display: block;
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.about-metric-card span {
  color: var(--muted);
}

.about-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  .featured-grid,
  .catalog-grid,
  .news-grid,
  .partners-grid,
  .about-values-grid,
  .about-metrics-grid,
  .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page-card,
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-layout-single {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
  }

  .hero-stats,
  .advantage-grid,
  .split-grid,
  .about-intro-grid,
  .about-story-grid,
  .booking-grid,
  .contact-grid,
  .contact-service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .topbar-contact-list {
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(7, 35, 75, 0.18);
    min-height: auto;
  }

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

  .site-nav a {
    width: 100%;
    min-height: auto;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 56px 0 52px;
  }

  .hero-panels {
    min-height: 450px;
  }

  .hero-stats,
  .featured-grid,
  .catalog-grid,
  .news-grid,
  .partners-grid,
  .about-values-grid,
  .about-metrics-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    gap: 12px;
  }

  .brand img {
    width: 168px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 1.45rem;
  }

  .topbar-contact-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    white-space: normal;
  }

  .topbar-contact-item {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .hero-panels {
    min-height: 470px;
  }

  .hero-pagination {
    bottom: 166px;
  }

  .featured-card,
  .catalog-card,
  .article-item,
  .news-card,
  .appointment-box,
  .visual-card {
    border-radius: 22px;
  }

  .visual-card {
    padding: 22px 22px 26px;
    gap: 12px;
  }

  .visual-media {
    border-radius: 22px;
  }

  .visual-media img {
    height: 260px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-content {
    padding: 74px 0 62px;
  }

  .about-copy-card,
  .about-summary-card,
  .about-culture-card,
  .about-story-content,
  .about-value-card,
  .about-cta-card {
    padding: 24px;
  }

  .service-page-media {
    min-height: 230px;
    padding: 20px 20px 6px;
  }

  .news-page-body,
  .news-article-body,
  .news-detail-sidebar {
    padding: 22px;
  }

  .news-page-media img,
  .news-article-media img {
    min-height: 220px;
  }

  .service-page-media img {
    max-height: 210px;
  }

  .service-page-body {
    padding: 0 22px 24px;
  }

  .service-modal-dialog {
    padding: 28px 22px 24px;
  }

  .service-modal-media {
    min-height: 180px;
    margin-bottom: 18px;
  }

  .service-modal-media img {
    max-height: 180px;
  }
}
