﻿:root {
  --ink: #1a1f2b;
  --muted: #5c667a;
  --bg: #ffffff;
  --card: #ffffff;
  --accent: #b81f2d;
  --accent-2: #0b6aa8;
  --gold: #f1c354;
  --shadow: 0 16px 40px rgba(20, 23, 30, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

ul,
ol {
  padding-left: 20px;
  margin: 0 0 12px;
}

li {
  margin-bottom: 6px;
}

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

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

a:hover {
  color: var(--accent);
}

.container {
  width: 92vw;
  max-width: 1160px;
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 16px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 720px;
}

.topbar {
  background: #121826;
  color: #f7f7f7;
  font-size: 14px;
}

.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar a {
  color: #f7f7f7;
}

.notice-bar {
  background: var(--gold);
  color: #231a05;
  font-weight: 600;
  font-size: 14px;
}

.notice-bar .marquee {
  overflow: hidden;
  white-space: nowrap;
}

.notice-bar .marquee span {
  display: inline-block;
  padding: 10px 0;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(26, 31, 43, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

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

.brand span {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(26, 31, 43, 0.2);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 15px;
}

.site-nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
  border-bottom-color: var(--accent);
}

.site-nav .btn {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(184, 31, 45, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(184, 31, 45, 0.4);
}

.hero {
  padding: 70px 0 90px;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 14px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 18px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 260px;
  font-size: 14px;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.stat {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 26px;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

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

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

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ribbon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(11, 106, 168, 0.1);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  border-radius: 12px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.cta {
  background: linear-gradient(120deg, #1a1f2b, #2b3652);
  color: #ffffff;
  padding: 50px 0;
}

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

.footer {
  background: #121826;
  color: #d8dbe6;
  padding: 50px 0 30px;
}

.footer a {
  color: #d8dbe6;
}

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

.footer h4 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #ffffff;
}

.footer small {
  color: rgba(216, 219, 230, 0.7);
}

.page-hero {
  padding: 60px 0;
  background: #ffffff;
}

.page-hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 10px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.tag {
  border: 1px solid rgba(26, 31, 43, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(26, 31, 43, 0.08);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: rgba(11, 106, 168, 0.08);
  font-weight: 700;
}

.table tr:last-child td {
  border-bottom: none;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(26, 31, 43, 0.2);
  margin-bottom: 12px;
  font-family: inherit;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 4vw;
    left: 4vw;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .site-nav .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }

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

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 18px;
  }
}
