:root {
  --bg: #faf5ee;
  --surface: #ffffff;
  --ink: #35302b;
  --muted: #7d746b;
  --accent: #b05970;
  --accent-strong: #8e3b52;
  --accent-soft: #eed6db;
  --line: #e5dcd0;
  --soft: #f3ece1;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.6;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 54px;
  width: auto;
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 10px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--muted);
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.site-nav a.active {
  background: var(--accent);
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch a:hover {
  color: var(--accent-strong);
}

.lang-switch a.active {
  background: var(--accent);
  color: #fff;
}

.lang-switch span {
  color: var(--line);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-strong);
  transition: background 0.15s ease, color 0.15s ease;
}

.social:hover {
  background: var(--accent);
  color: #fff;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer .social-icons {
  justify-content: center;
  margin-top: 10px;
}

.hero {
  text-align: center;
  padding: 90px 24px 84px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #faf5ee;
  background-image: url(../img/hero.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.45s ease;
}

.hero:hover::after {
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 245, 238, 0.55);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 40px;
  color: var(--ink);
}

.hero h1 span {
  color: var(--accent-strong);
}

.hero p.lede {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 19px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--accent-strong);
}

.btn.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
  border: 2px solid var(--accent);
}

.btn.btn-ghost:hover {
  background: var(--accent-soft);
}

.main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px;
}

.back-link {
  margin: 0 0 20px;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 16px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.back-link a::before {
  content: "←";
  font-size: 15px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.back-link a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.back-link a:hover::before {
  transform: translateX(-3px);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.page-head h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  margin: 0 0 8px;
  color: var(--ink);
}

.group-head {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-bottom: 24px;
}

.ruled-head {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 32px;
}

.group-head h2 {
  font-size: 21px;
  color: var(--accent-strong);
}

.section-head h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--ink);
}

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

.about {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about--text {
  display: block;
}

.about--feature {
  grid-template-columns: 420px 1fr;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.about--feature img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.about--feature .about-body {
  padding: 40px 44px;
}

.about--feature h2 {
  font-size: 28px;
}

.about h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin-top: 0;
}

.about p:last-child {
  margin-bottom: 0;
}

.main > section + section {
  margin-top: 72px;
}

.wip {
  margin-top: 72px;
}

.wip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wip-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wip-photo {
  margin-top: 48px;
  position: relative;
  background: var(--accent-strong);
  border-radius: 12px;
  padding: 16px 36px;
}

.wip-grid {
  width: 50%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 5px;
}

.wip-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wip-caption {
  position: absolute;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.wip-caption--top {
  top: 25%;
  left: 4%;
  width: 17%;
  text-align: center;
}

.wip-caption--bottom {
  bottom: 25%;
  right: 4%;
  width: 17%;
  text-align: center;
}

.wip-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.pillar .number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.pillar h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  margin: 8px 0 8px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Anchor targets land clear of the sticky header */
#my-work {
  scroll-margin-top: 120px;
}
.gallery-grid.thumb-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.gallery-grid li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-grid a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.gallery-grid li:hover img {
  transform: scale(1.05);
}

.card-text {
  padding: 14px 16px 16px;
}

.card-text h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0 0 2px;
}

.card-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status {
  display: inline-block;
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.status.sold {
  color: var(--muted);
}

.banner {
  margin-top: 48px;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-events {
  grid-template-columns: 1fr 1fr;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* Event banner image — bleeds to the card edges on top */
.ev-banner {
  display: block;
  width: calc(100% + 44px);
  margin: -22px -22px 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Date badge sits on the banner, half-overlapping its bottom edge */
.event-card.has-banner .ev-date {
  margin-top: -30px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(53, 48, 43, 0.15);
}

.event-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ev-date {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  min-width: 66px;
  padding: 10px 12px;
  text-align: center;
  flex-shrink: 0;
}

.ev-date .day {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.05;
}

.ev-date .mon {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.ev-date .yr {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.ev-badge {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 3px 10px;
}

.ev-badge.course {
  color: #4b5a3c;
  background: #e3ead9;
}

.event-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  margin: 2px 0 6px;
}

.event-card meta {
  display: block;
}

.event-card .ev-meta,
.event-card .ev-short {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.event-card .ev-meta {
  margin-bottom: 8px;
}

.event-card .ev-short {
  flex: 1;
}

.ev-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* SIDE BY SIDE (default) */
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ---------- TEST B: ONE AFTER THE OTHER ----------
   To try the stacked layout, uncomment the two lines below
   (delete the .ev-details rule above first, or comment it out).
.ev-details {
  grid-template-columns: 1fr;
}
---------- */

.ev-details li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.ev-details h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 4px;
}

.ev-details p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.event-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-foot .btn {
  padding: 9px 18px;
  font-size: 13px;
}

.ev-note {
  color: var(--muted);
  font-size: 13.5px;
}

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

  .ev-details {
    grid-template-columns: 1fr;
  }
}

.banner h2 {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 8px;
  font-size: 24px;
}

.banner p {
  margin: 0 0 20px;
  color: var(--accent-soft);
}

.banner .btn {
  background: #fff;
  color: var(--accent-strong);
}

.banner .btn:hover {
  background: var(--accent-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--accent);
}

.steps h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 8px 0 6px;
}

.steps p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 40px;
}

table.pricing {
  width: 100%;
  border-collapse: collapse;
}

table.pricing th {
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--soft);
  padding: 12px 18px;
}

table.pricing td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

table.pricing td.price {
  font-weight: bold;
  color: var(--accent-strong);
  white-space: nowrap;
}

.form-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}

label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--muted);
  margin: 0 0 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.contact-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.contact-list strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px;
}

.channel {
  display: block;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.channel:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(53, 48, 43, 0.08);
}

.channel svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-strong);
}

.channel h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 10px 0 2px;
}

.channel .handle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  overflow-wrap: anywhere;
}

.channel-cta {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 7px 16px;
  transition: background 0.15s ease, color 0.15s ease;
}

.channel:hover .channel-cta {
  background: var(--accent);
  color: #fff;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq summary {
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: var(--ink);
  list-style: none;
  padding: 15px 46px 15px 18px;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.15s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14.5px;
}

.faq details a {
  color: var(--accent);
}

.closing-note {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 14px;
  padding: 44px 40px 36px;
}

.closing-note .ev-badge {
  margin-bottom: 18px;
}

.closing-title {
  font-size: 30px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.closing-letter {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.closing-letter a {
  color: var(--accent);
}

.reopen-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.reopen-note a {
  color: var(--accent-strong);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 50;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 8px;
  transition: opacity 0.15s ease;
}

.lightbox figure {
  margin: 0;
  text-align: center;
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
  margin-top: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox .lb-close {
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 26px;
}

.lightbox .lb-prev,
.lightbox .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.lightbox .lb-prev {
  left: 18px;
}

.lightbox .lb-next {
  right: 18px;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer-legal {
  margin-top: 10px;
  font-size: 12px;
}

.filter-empty {
  text-align: center;
  color: var(--muted);
  margin: 32px 0 0;
}

/* Gallery filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 32px;
}

.filter-btn {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  padding: 9px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid li.is-hidden {
  display: none;
}

.enquire {
  position: relative;
  margin-top: 12px;
}

.enquire-toggle {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.enquire-toggle:hover {
  background: var(--accent-strong);
}

.enquire-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 6px);
  display: none;
  z-index: 5;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(53, 48, 43, 0.12);
  padding: 6px;
}

.enquire.open .enquire-menu {
  display: block;
}

.enquire-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  color: var(--ink);
  padding: 9px 10px;
  border-radius: 7px;
}

.enquire-menu a:hover {
  background: var(--soft);
}

.enquire-menu svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-strong);
}

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

  .gallery-filter {
    margin: -12px 0 28px;
  }

  .pillars, .gallery-grid, .steps {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .about--feature img {
    height: auto;
  }

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

/* Mobile menu */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--accent-strong);
  cursor: pointer;
  flex: none;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.open .menu-toggle .icon-open {
  display: none;
}

.site-header.open .menu-toggle .icon-close {
  display: block;
}

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

  .site-header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(53, 48, 43, 0.06);
    padding: 16px 24px 22px;
  }

  .site-header.open .header-right {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav a {
    border-radius: 10px;
  }

  .lang-switch {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .pillars, .gallery-grid, .steps {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }
}
