body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-md);
  color: var(--color-text-body);
  background: var(--color-background);
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - (var(--container-pad) * 2), var(--container-width));
  margin-inline: auto;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.section-head.is-center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.section-head h2,
.welcome h2,
.information h2,
.enquiry h2,
.gallery-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-lede {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: var(--measure);
}

.section-head.is-center .section-lede {
  margin-inline: auto;
}

/* Welcome / about */
.welcome {
  padding: var(--section-spacing) 0;
}

.welcome-grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.welcome-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-muted);
  box-shadow: var(--shadow-md);
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3 / 4;
}

.welcome-copy p + p {
  margin-top: var(--space-4);
}

.welcome-kicker {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-muted);
}

.welcome-kicker + p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--color-muted);
  color: var(--color-text);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
}

.trust-chip svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Services */
.services {
  padding: var(--section-spacing) 0 0;
}

.services-grid {
  display: grid;
  gap: var(--space-5);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--color-muted);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 280ms var(--ease);
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.04);
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
  padding: var(--space-5);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-body);
  flex: 1;
}

.service-body .btn {
  align-self: flex-start;
  margin-top: var(--space-2);
}

/* CTA band */
.cta-band {
  margin-top: var(--section-spacing);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--container-pad);
  overflow: hidden;
  text-align: center;
  min-height: 16rem;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: #1a1512 url("../images/hero/cta-balloons-background.webp") center / cover no-repeat;
  filter: brightness(0.42);
  transform: scale(1.02);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  max-width: 40rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  color: var(--color-hero-text);
  line-height: 1.2;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* Information / trust */
.information {
  padding: var(--section-spacing) 0;
  background: var(--color-surface);
}

.trust-grid {
  display: grid;
  gap: var(--space-4);
}

.trust-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-muted);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.trust-card p {
  color: var(--color-text-body);
  font-size: var(--text-sm);
}

/* Enquiry */
.enquiry {
  padding: var(--section-spacing) 0;
}

.enquiry-layout {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.enquiry-intro p + p {
  margin-top: var(--space-4);
}

.contact-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
}

.contact-list a:hover {
  color: var(--color-primary);
}

.contact-list svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-list svg:not([fill="none"]) {
  fill: currentColor;
}

.trust-card-wide {
  margin-top: var(--space-4);
}

.form-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.form-note a {
  color: var(--color-primary);
  font-weight: 700;
}

/* Gallery */
.gallery-section {
  padding: var(--section-spacing) 0;
  background: var(--color-background);
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--color-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 280ms var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-grid:not(.is-expanded) .gallery-item:nth-child(n + 13) {
  display: none;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

/* Footer */
.site-footer {
  background: #1c1917;
  color: #f5f0ea;
  padding: var(--space-8) 0 calc(var(--space-6) + env(safe-area-inset-bottom, 0px));
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-brand .brand-title {
  color: #fffaf6;
}

.footer-brand p {
  margin-top: var(--space-3);
  color: #d6d3d1;
  max-width: 22rem;
}

.footer-grid h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fafaf9;
  margin-bottom: var(--space-3);
}

.footer-nav,
.footer-contacts {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a,
.footer-contacts a {
  color: #e7e5e4;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer-base {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a8a29e;
  font-size: var(--text-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
