:root {
  --bg: #ffffff;
  --ink: #070857;
  --accent: #2894bd;
  --accent-2: #1aa4c9;
  --muted: #80939e;
  --deep: #020066;
  --white: #ffffff;
  --text: #333333;
  --container: 1140px;
  --font: Montserrat, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(7,8,87,0.06);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 92px;
}
.site-logo img { width: min(260px, 42vw); height: auto; }
.nav-toggle {
  display: none; border: 0; background: var(--ink); color: #fff;
  width: 44px; height: 44px; border-radius: 4px; cursor: pointer; font-size: 20px;
}
.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  color: var(--ink); font-weight: 600; font-size: 14px; padding: 8px 10px; white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); }
.phone-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff !important; font-weight: 700;
  padding: 12px 18px; border-radius: 4px; margin-left: 8px;
}
.phone-btn:hover { background: var(--accent-2); color: #fff !important; }

.hero {
  position: relative; min-height: 700px;
  display: grid; place-items: end center; text-align: center; color: #fff;
  background: #0a3a5c center bottom / cover no-repeat;
  padding: 120px 24px 180px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,0.75) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 980px; }
.hero h1 {
  margin: 0 0 16px; color: #fff; font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1.15; text-shadow: 1px 1px 3px rgba(0,0,0,0.45);
}
.hero p {
  margin: 0; color: #fff; font-size: clamp(18px, 2.4vw, 30px); font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.45);
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; color: #fff;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

.cta-bar {
  position: relative; z-index: 2; margin-top: -75px; margin-bottom: 0;
}
.cta-bar-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cta-bar a {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 96px; padding: 24px 16px; border-radius: 5px;
  color: #fff !important; font-size: 18px; font-weight: 700; line-height: 1.3;
  box-shadow: 0 10px 30px rgba(7,8,87,0.12);
}
.cta-bar a:nth-child(1) { background: var(--deep); }
.cta-bar a:nth-child(1):hover { background: var(--accent-2); }
.cta-bar a:nth-child(2) { background: var(--accent); }
.cta-bar a:nth-child(2):hover { background: var(--muted); }
.cta-bar a:nth-child(3) { background: var(--muted); }
.cta-bar a:nth-child(3):hover { background: var(--accent); }

.intro { padding: 60px 0 50px; text-align: center; }
.intro h2 {
  margin: 0 0 24px; color: var(--ink); font-size: clamp(22px, 2.5vw, 30px); line-height: 1.25;
}
.intro-copy { max-width: 970px; margin: 0 auto; line-height: 2; color: #444; }
.intro-copy p { margin: 0 0 1.25em; }
.intro-copy p:last-child { margin-bottom: 0; }

.reasons { padding: 0 0 100px; }
.reasons h2 {
  margin: 0 0 50px; text-align: center; color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2;
}
.reason-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 48px;
}
.reason {
  display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: start;
}
.reason img { width: 96px; height: 96px; object-fit: contain; }
.reason h3 { margin: 0 0 10px; color: var(--accent); font-size: 22px; line-height: 1.25; }
.reason p { margin: 0; line-height: 2; color: #555; }

.testimonials {
  position: relative; min-height: 420px; color: #fff;
  background: center / cover no-repeat;
  display: grid; place-items: center; padding: 70px 0 50px;
}
.testimonials::before {
  content: ""; position: absolute; inset: 0; background: rgba(7,8,87,0.85);
}
.testimonials-inner { position: relative; z-index: 1; width: min(100% - 40px, 1140px); }
.testimonial-quote {
  position: absolute; left: 50%; top: -30px; transform: translateX(-50%);
  font-size: 100px; line-height: 1; color: var(--accent); opacity: 0.95;
}
.slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform 0.45s ease; }
.slide {
  min-width: 100%; padding: 40px 48px 20px; text-align: center;
}
.slide p { margin: 0 0 28px; color: #fff; font-size: 17px; font-weight: 500; line-height: 2; }
.slide cite {
  display: block; color: var(--accent); font-style: normal; font-size: 20px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
}
.slide .role { color: #fff; font-size: 14px; margin-top: 6px; text-transform: none; font-weight: 400; }
.slider-nav {
  display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 10px;
}
.slider-nav button {
  border: 0; background: transparent; color: #fff; font-size: 30px; cursor: pointer; line-height: 1;
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
}
.dots button[aria-current="true"] { background: var(--accent); }

.services { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative; min-height: 500px; color: #000;
  background: center / cover no-repeat; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.15) 100%);
}
.service-card-inner {
  position: relative; z-index: 1; max-width: 420px; padding: 75px;
}
.service-card h3 { margin: 0 0 16px; font-size: 28px; line-height: 1.2; }
.service-card:nth-child(1) h3 { color: var(--ink); }
.service-card:nth-child(2) h3 { color: var(--accent); }
.service-card:nth-child(3) h3 { color: var(--muted); }
.service-card p { margin: 0 0 1em; color: #000; line-height: 1.7; }
.service-card .btn-outline {
  display: inline-flex; margin-top: 10px; padding: 12px 18px;
  border: 2px solid currentColor; background: transparent; font-weight: 500; font-size: 18px;
}
.service-card:nth-child(1) .btn-outline { color: var(--ink); }
.service-card:nth-child(1) .btn-outline:hover { background: var(--ink); color: #fff; }
.service-card:nth-child(2) .btn-outline { color: var(--accent); }
.service-card:nth-child(2) .btn-outline:hover { background: var(--accent); color: #fff; }
.service-card:nth-child(3) .btn-outline { color: var(--muted); }
.service-card:nth-child(3) .btn-outline:hover { background: var(--muted); color: #fff; }

.consult {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
  padding: 80px 0; align-items: start;
}
.consult h2 { margin: 0 0 12px; color: var(--ink); font-size: 34px; line-height: 1.2; }
.consult > div > p { margin: 0 0 28px; color: #555; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; border: 1px solid #cfd8dc; border-radius: 4px; padding: 14px 14px;
  font: inherit; color: #333; background: #fff;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid button {
  border: 0; background: var(--accent); color: #fff; font-weight: 700;
  padding: 14px 22px; border-radius: 4px; cursor: pointer; font-size: 16px;
}
.form-grid button:hover { background: var(--deep); }
.contact-aside h1 { margin: 0 0 24px; color: var(--ink); font-size: 34px; line-height: 1.2; }
.contact-aside h5 { margin: 0 0 8px; color: var(--accent); font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-aside p { margin: 0 0 24px; color: #555; }
.licence { margin-top: 28px; color: #777; font-size: 14px; }

.site-footer {
  border-top: 1px solid rgba(7,8,87,0.08); padding: 28px 0; text-align: center; color: #777; font-size: 14px;
}
.page-main { padding: 60px 0 80px; }
.page-main h1 { color: var(--ink); margin: 0 0 20px; }

/* About page */
.page-hero {
  position: relative; min-height: 300px;
  display: grid; place-items: center; text-align: center; color: #fff;
  background: #0a3a5c center / cover no-repeat;
  padding: 80px 24px 70px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.page-hero h1 {
  position: relative; z-index: 1; margin: 0; color: #fff;
  font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.35);
}
.page-hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 50px; color: #fff;
}
.page-hero-wave svg { display: block; width: 100%; height: 50px; }

.about-intro { padding: 75px 0 40px; text-align: center; }
.about-intro h2 {
  margin: 0 auto 28px; max-width: 920px; color: #1ca5c9;
  font-size: clamp(24px, 2.8vw, 34px); line-height: 1.3; font-weight: 700;
}
.about-intro-copy {
  max-width: 920px; margin: 0 auto; color: #444; line-height: 2; text-align: left;
}
.about-intro-copy p { margin: 0 0 1.3em; }
.about-intro-copy strong { color: #222; }

.dream-team { padding: 20px 0 40px; }
.dream-team > .container > h2 {
  margin: 0 0 12px; text-align: center; color: #1ca5c9;
  font-size: clamp(26px, 3vw, 36px);
}
.dream-team > .container > .lead {
  margin: 0 auto 30px; text-align: center; color: #666; font-weight: 600; max-width: 760px;
}
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px;
}
.team-card {
  padding: 50px; text-align: center;
}
.team-card h3 {
  margin: 0 0 10px; color: #333; font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.team-card .role {
  margin: 0 0 20px; color: #1ca5c9; font-weight: 500; font-size: 16px;
}
.team-card p {
  margin: 0; color: #555; line-height: 1.85; text-align: left;
}

/* Why us page */
.why-intro { padding: 75px 0 30px; }
.why-intro h2 {
  margin: 0 0 28px; text-align: center; color: #1ca5c9;
  font-size: clamp(28px, 3vw, 36px); line-height: 1.25;
}
.why-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
  align-items: start;
}
.why-grid h3 {
  margin: 0 0 18px; color: #555; font-size: 22px; font-weight: 600; line-height: 1.3;
}
.why-grid p { margin: 0 0 1.15em; color: #444; line-height: 1.85; }
.why-grid .note { font-weight: 700; color: #222; }
.trade-list {
  margin: 12px 0 0; padding-left: 1.2em; color: #444; line-height: 1.9;
}
.supplier { padding: 40px 0 20px; text-align: center; }
.supplier h2 {
  margin: 0 0 24px; color: #1ca5c9; font-size: clamp(26px, 3vw, 34px);
}
.supplier-logo {
  width: min(280px, 70%); margin: 0 auto 28px;
}
.supplier-copy {
  max-width: 900px; margin: 0 auto 36px; text-align: left; color: #444; line-height: 1.85;
}
.supplier-copy p { margin: 0 0 1.15em; }
.supplier-banner {
  width: min(100%, 960px); margin: 0 auto; border-radius: 2px;
}

/* Pool Designs page */
.designs-intro { padding: 60px 0 30px; text-align: center; }
.designs-intro .tfpc-logo {
  width: min(520px, 90%); margin: 0 auto 28px;
}
.designs-intro h2 {
  margin: 0 0 18px; color: var(--ink);
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.2;
}
.designs-intro p {
  max-width: 820px; margin: 0 auto; color: #555; line-height: 1.85;
}
.series-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px;
  padding: 20px 0 50px; align-items: stretch;
}
.series-card {
  text-align: center;
  display: flex; flex-direction: column; height: 100%;
}
.series-card .photo-wrap {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; margin-bottom: 16px; background: #eef3f6;
}
.series-card .series-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.series-card h3 {
  margin: 0 0 10px; font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  min-height: 2.4em;
}
.series-card h3 a { color: var(--ink); }
.series-card h3 a:hover { color: #1ca5c9; }
.series-card .desc {
  margin: 0 0 16px; color: #555; line-height: 1.7; text-align: left; font-size: 15px;
  flex: 1 1 auto;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5;
  overflow: hidden;
}
.series-card .size-wrap {
  margin-top: auto; width: 100%; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.series-card .size {
  width: 100%; max-height: 220px; height: auto; object-fit: contain; margin: 0 auto;
}
.designer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px;
  padding: 10px 0 50px; align-items: stretch;
}
.designer-card {
  text-align: center;
  display: flex; flex-direction: column; height: 100%;
}
.designer-card .photo-wrap {
  display: block; width: 100%; aspect-ratio: 3 / 2;
  overflow: hidden; margin-bottom: 14px; background: #eef3f6;
}
.designer-card .photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.designer-card h3 {
  margin: 0 0 12px; color: var(--ink); font-size: 20px; font-weight: 700;
  min-height: 2.4em;
}
.designer-card .view-design {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border: 2px solid #1ca5c9; color: #1ca5c9;
  font-weight: 600; font-size: 15px; margin-top: auto;
}
.designer-card .view-design:hover {
  background: #1ca5c9; color: #fff;
}

@media (max-width: 1024px) {
  .about-intro { padding: 50px 0 30px; }
  .team-card { padding: 25px; }
  .why-intro { padding: 50px 0 20px; }
  .series-grid, .designer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 860px) {
  .page-hero { min-height: 180px; padding: 60px 20px 50px; }
  .about-intro { padding: 25px 0 20px; }
  .about-intro-copy { text-align: left; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 25px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-intro { padding: 25px 0 10px; }
  .supplier { padding: 20px 0 10px; }
  .series-grid, .designer-grid { grid-template-columns: 1fr; }
  .designs-intro { padding: 30px 0 20px; }
}

@media (max-width: 1024px) {
  .hero { min-height: 400px; padding-bottom: 120px; }
  .cta-bar { margin-top: -60px; }
  .cta-bar a { min-height: 72px; font-size: 15px; padding: 15px; }
  .reason-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; }
  .service-card-inner { padding: 50px; }
  .consult { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; flex-direction: column; align-items: stretch; padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(7,8,87,0.08); box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .site-nav.is-open { display: flex; }
  .phone-btn { margin: 8px 0 0; }
  .cta-bar-inner { grid-template-columns: 1fr; }
  .reason { grid-template-columns: 72px 1fr; }
  .reason img { width: 72px; height: 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .slide { padding: 24px 12px; }
}

/* Pool Colours */
.colours-intro {
  text-align: center;
  padding: 40px 20px 20px;
  max-width: 920px;
}
.colours-intro .tfpc-logo {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 28px;
}
.colours-intro p {
  margin: 0;
  color: #444;
  line-height: 1.85;
  font-size: 16px;
}
.colours-apct {
  text-align: center;
  padding: 10px 20px 30px;
}
.colours-apct .apct-banner {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  margin: 0 auto 18px;
}
.colours-apct .apct-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.colours-apct .apct-title span { color: #1ca5c9; }
.apct-guarantee {
  display: inline-block;
  background: #7cd1e9;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  padding: 12px 28px;
}
.colour-explorer {
  padding: 10px 20px 40px;
  max-width: 1100px;
}
.colour-stage {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eef3f6;
  margin-bottom: 28px;
}
.colour-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.colour-stage-img.is-fading { opacity: 0.35; }
.colour-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
}
.colour-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: #1ca5c9;
  text-align: center;
}
.colour-swatch img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.colour-swatch span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.colour-swatch:hover img,
.colour-swatch.is-active img {
  border-color: #1ca5c9;
}
.colour-swatch.is-active img {
  transform: translateY(-2px);
}
.colour-gallery {
  padding: 10px 20px 50px;
  max-width: 1100px;
}
.colour-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.colour-card {
  margin: 0;
  background: #eef3f6;
}
.colour-card img {
  width: 100%;
  height: auto;
  display: block;
}
.colour-note {
  margin: 36px auto 0;
  max-width: 820px;
  text-align: center;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 860px) {
  .colour-swatches { grid-template-columns: repeat(3, 1fr); }
  .colour-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .colour-swatches { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .colour-swatch span { font-size: 12px; }
}
/* Excavation */
.excav-intro {
  text-align: center;
  padding: 50px 20px 60px;
  max-width: 900px;
}
.excav-intro h2 {
  margin: 0 0 28px;
  color: #1ca5c9;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
}
.excav-intro p {
  margin: 0 0 18px;
  color: #444;
  line-height: 1.85;
  font-size: 16px;
}
.excav-intro p:last-child { margin-bottom: 0; }
.excav-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #0a3a5c center / cover no-repeat;
  padding: 70px 24px;
}
.excav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(2, 0, 102, 0.55), rgba(7, 8, 87, 0.72));
}
.excav-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.excav-cta h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}
.excav-cta p {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  font-size: 16px;
}
.excav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.excav-cta-btn:hover {
  background: #fff;
  color: var(--ink);
}
/* Blog */
.blog-grid-wrap {
  padding: 40px 20px 30px;
  max-width: 1180px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.blog-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f6;
  margin-bottom: 16px;
}
.blog-card-media img,
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-placeholder { background: #d9e6ee; }
.blog-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.blog-card h3 a { color: #1ca5c9; }
.blog-card h3 a:hover { color: var(--ink); }
.blog-excerpt {
  margin: 0 0 12px;
  color: #777;
  line-height: 1.7;
  font-size: 15px;
  flex: 1 1 auto;
}
.read-more {
  color: #1ca5c9;
  font-weight: 600;
  font-size: 15px;
}
.read-more:hover { color: var(--ink); }
.navigation.pagination,
.blog-pagination,
nav.navigation {
  margin: 48px 0 10px;
  text-align: center;
}
.navigation.pagination .nav-links,
nav.navigation .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.navigation.pagination a,
.navigation.pagination span,
nav.navigation a,
nav.navigation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(7,8,87,0.12);
  color: var(--ink);
  font-weight: 600;
}
.navigation.pagination .current,
nav.navigation .current {
  background: #1ca5c9;
  border-color: #1ca5c9;
  color: #fff;
}
.page-hero--compact {
  min-height: 280px;
}
.page-hero--compact h1 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.single-post {
  max-width: 860px;
  padding: 40px 20px 50px;
}
.single-meta {
  margin: 0 0 20px;
  color: #80939E;
  font-size: 14px;
  text-align: center;
}
.single-featured {
  margin: 0 0 28px;
}
.single-featured img {
  width: 100%;
  height: auto;
  display: block;
}
.entry-content {
  color: #444;
  line-height: 1.85;
  font-size: 16px;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2,
.entry-content h3 {
  color: var(--ink);
  margin: 1.6em 0 0.6em;
  line-height: 1.3;
}
.entry-content p { margin: 0 0 1.1em; }
.entry-content a { color: #1ca5c9; }
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.2em auto;
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
.single-back {
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(7,8,87,0.08);
}
.single-back a {
  color: #1ca5c9;
  font-weight: 600;
}
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }
}