:root {
  --ink: #17141a;
  --muted: #6f6470;
  --line: #ded4dc;
  --paper: #f3f0f2;
  --white: #ffffff;
  --steel: #786b76;
  --steel-dark: #4c414c;
  --navy: #ffffff;
  --navy-deep: #f6f1f5;
  --blue: #e76ab0;
  --blue-soft: #fff4fb;
  --accent: #ffffff;
  --accent-dark: #b81775;
  --magenta: #e65aa8;
  --magenta-dark: #c83c8e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 2%, rgba(230, 90, 168, 0.18), transparent 34%),
    linear-gradient(90deg, #e2dfdf 0%, #f8f5f7 18%, #ffffff 50%, #f7f2f6 82%, #dedbdb 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(184, 23, 117, 0.16);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, #ffffff 0%, #fff4fb 58%, #eadfe6 100%);
  border: 1px solid rgba(184, 23, 117, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(80, 56, 74, 0.14);
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--magenta-dark);
}

.section {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: calc(100vh - 118px);
  margin: clamp(16px, 3vw, 34px) clamp(18px, 8vw, 160px) clamp(28px, 5vw, 60px);
  padding: clamp(30px, 5vw, 64px);
  background:
    radial-gradient(circle at 76% 18%, rgba(230, 90, 168, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff4fb 100%);
  border: 1px solid rgba(184, 23, 117, 0.14);
  box-shadow: 0 22px 60px rgba(80, 56, 74, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--magenta);
}

.button.primary:hover {
  background: var(--magenta-dark);
}

.button.secondary {
  color: var(--magenta-dark);
  border-color: rgba(184, 23, 117, 0.38);
  background: transparent;
}

.hero-media,
.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.65;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-media figcaption {
  padding: 12px 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.stats-band span {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading p {
  color: var(--muted);
}

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

.machine-card {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.machine-card.featured {
  border-color: var(--line);
  border-top: 4px solid var(--magenta);
  padding-top: 19px;
  box-shadow: 0 10px 24px rgba(15, 61, 97, 0.12);
}

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

.machine-card h3 {
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 20% 12%, rgba(230, 90, 168, 0.16), transparent 30%),
    #fff8fc;
  color: var(--ink);
  border-top: 1px solid rgba(184, 23, 117, 0.12);
  border-bottom: 1px solid rgba(184, 23, 117, 0.12);
}

.split-section p,
.split-section .eyebrow {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div,
.support-note {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list span {
  color: var(--muted);
}

.about-band {
  background: var(--navy-deep);
}

.support-note {
  max-width: 760px;
  color: var(--ink);
  background: var(--blue-soft);
  border-color: var(--line);
}

.support-note p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 52%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 70px);
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 90, 168, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff2fa 100%);
  border-top: 1px solid rgba(184, 23, 117, 0.12);
}

.contact-section p {
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--steel-dark);
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #bcc6ce;
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: #f1e8ef;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin: clamp(18px, 5vw, 36px);
  }

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }

  .site-nav {
    gap: 8px 12px;
  }

  .stats-band,
  .machine-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }

  .hero {
    padding: 30px 18px;
  }
}
