:root {
  --bg: #0C5157;
  --bg-deep: #083b40;
  --teal: #67CFBE;
  --cream: #FFFDB3;
  --yellow: #FFF500;
  --muted-teal: #5f858a;
  --pale: #eaefc4;
  --panel: #0f5c62;
  --line: #2c7a80;
  --ink: #FFFDB3;
  --radius: 3px;
  --sans: Arial, Verdana, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; color: red; }

.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: bold;
  color: var(--teal);
  line-height: 1.3;
  margin: 0 0 0.6em;
}

.page-title {
  font-size: 22px;
  margin: 24px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.section-title { font-size: 17px; color: var(--teal); margin-bottom: 14px; }
.section-lead { color: var(--pale); max-width: 640px; margin: 0 0 20px; font-size: 13.5px; }

.breadcrumbs { font-family: var(--mono); font-size: 12px; color: var(--muted-teal); margin: 12px 0 0; }
.breadcrumbs a { color: var(--muted-teal); }

/* Header */
.site-header { background: var(--bg-deep); border-bottom: 3px double var(--teal); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 60px; height: auto; }
.brand-text { font-family: var(--mono); font-weight: bold; font-size: 20px; color: var(--yellow); }
.brand-text span { display: block; font-family: var(--sans); font-weight: normal; font-size: 11px; color: var(--pale); }
.top-contacts { margin-left: auto; text-align: right; font-size: 12.5px; color: var(--pale); }
.top-contacts a { color: var(--cream); font-weight: bold; }

.nav-bar { background: #0a464b; border-bottom: 1px solid var(--line); }
.main-nav { display: flex; flex-wrap: wrap; gap: 0; }
.main-nav a {
  display: block; color: #fff; text-decoration: none; font-size: 13px;
  padding: 9px 14px; border-right: 1px solid var(--line);
}
.main-nav a:hover, .main-nav a.active { background: var(--teal); color: var(--bg-deep); text-decoration: none; }

/* Hero */
.hero { padding: 34px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.hero h1 { color: var(--yellow); font-size: 24px; }
.hero p { color: var(--cream); font-size: 15px; max-width: 560px; }
.hero-mascot { width: 150px; }

/* Content boxes (old-school bordered panels) */
.content-section { padding: 26px 0; }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.panel p { color: var(--pale); margin: 0 0 12px; font-size: 14px; }
.panel ul { color: var(--pale); margin: 0 0 12px; padding-left: 20px; }
.panel li { margin-bottom: 6px; }
.panel strong { color: var(--cream); }

/* Two-col intro */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Services quicklist */
.quicklinks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quicklinks a {
  display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 16px; font-size: 13.5px; color: var(--cream);
}
.quicklinks a:hover { background: var(--teal); color: var(--bg-deep); text-decoration: none; }

/* Price table (old style) */
.price-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 10px; }
.price-table th {
  background: var(--bg-deep); color: var(--yellow); text-align: left; padding: 8px 10px;
  border: 1px solid var(--line); font-weight: bold; font-size: 11.5px; text-transform: uppercase;
}
.price-table td { padding: 8px 10px; border: 1px solid var(--line); color: var(--pale); }
.price-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.price-table td.price { color: var(--cream); font-weight: bold; white-space: nowrap; }

/* Categories chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--bg-deep); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-size: 12.5px; color: var(--pale); }

/* City list */
.city-list { columns: 4; column-gap: 20px; font-size: 12.5px; color: var(--pale); }
.city-list div { break-inside: avoid; margin-bottom: 4px; }

/* Templates gallery */
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.template-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; text-align: center; }
.template-card img { border: 1px solid var(--line); margin-bottom: 8px; }
.template-card span { font-family: var(--mono); font-size: 12px; color: var(--teal); }

/* Client logos grid */
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.client-logo { background: #fff; border-radius: var(--radius); padding: 14px; display: flex; align-items: center; justify-content: center; height: 80px; }
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Awards grid */
.awards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.award-card { text-align: center; }
.award-card img { border: 1px solid var(--line); border-radius: var(--radius); }
.award-card p { font-size: 11.5px; color: var(--pale); margin: 6px 0 0; }

/* Exhibitions list */
.expo-list { list-style: none; margin: 0; padding: 0; }
.expo-list li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; color: var(--pale); display: flex; justify-content: space-between; gap: 14px; }
.expo-list li span:last-child { color: var(--teal); font-size: 12px; white-space: nowrap; }

/* Contact box */
.contact-box {
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.contact-box h4 { margin: 0 0 6px; font-size: 11px; text-transform: uppercase; color: var(--muted-teal); }
.contact-box p { margin: 0; font-size: 13.5px; color: var(--cream); }

/* Footer */
.site-footer { background: var(--bg-deep); border-top: 3px double var(--teal); padding: 22px 0; font-size: 12px; color: var(--muted-teal); }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-row a { color: var(--pale); }

@media (max-width: 800px) {
  .main-nav { flex-wrap: wrap; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-mascot { margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; }
  .quicklinks { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .city-list { columns: 2; }
  .contact-box { grid-template-columns: 1fr; }
}
