/* =========================================================
   XINEPH VINYLS — EASY-TO-EDIT COLOURS
   Change these values to update colours throughout the site.
   ========================================================= */
:root {
  --background: #f3f4f6;
  --surface: #ffffff;
  --text: #333333;
  --muted: #6f7477;
  --dark: #4d4f4b;

  --yellow: #ffcc00ff;
  --blue: #2abecaff;
  --mint: #62deb9;
  --coral: #ff584e;

  --line: #e4e7e9;
  --shadow: 0 7px 19px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --page-width: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.58;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.page-width {
  width: min(var(--page-width), calc(100% - 28px));
  margin-inline: auto;
}

.site-header {
  background: var(--surface);
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
}

.logo-area {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 10px 18px;
}

.logo-area a {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.site-logo {
  width: min(370px, 90vw);
  max-height: 82px;
  object-fit: contain;
}

.logo-fallback {
  align-items: baseline;
  gap: 7px;
  font-size: clamp(1.9rem, 6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.logo-fallback strong {
  color: var(--dark);
}

.logo-fallback span {
  color: var(--coral);
}

.main-nav {
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 11px 14px;
}

.main-nav a {
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-1px);
  background: #f5f5f5;
}

.main-nav a.active {
  background: var(--blue);
  color: #173e44;
}

.intro-card {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border-top: 5px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-copy h1 {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.intro-copy > p {
  max-width: 650px;
  margin: 0.65rem 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.intro-points {
  display: grid;
  gap: 10px;
}

.intro-points div {
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
}

.intro-points .point-yellow {
  border-left: 5px solid var(--yellow);
}

.intro-points .point-mint {
  border-left: 5px solid var(--mint);
}

.intro-points .point-coral {
  border-left: 5px solid var(--coral);
}

.intro-points strong,
.intro-points span {
  display: block;
}

.intro-points strong {
  font-size: 0.86rem;
}

.intro-points span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.79rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 19px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 8px 17px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.button.primary {
  background: var(--blue);
  color: #173e44;
}

.button.coral-button {
  background: var(--coral);
  color: #ffffff;
}

.button.yellow-button {
  background: var(--yellow);
  color: #ffffff;
}

.button.dark {
  background: var(--dark);
  color: #ffffff;
}

.section {
  margin-top: 24px;
}

.section-heading {
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 10px 18px;
  color: #ffffff;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.02rem, 2.6vw, 1.3rem);
}

.section-heading.yellow {
  background: var(--yellow);
}

.section-heading.mint {
  background: var(--mint);
  color: #20433a;
}

.section-heading.coral {
  background: var(--coral);
}

.section-heading.blue {
  background: var(--blue);
  color: #173e44;
}

.white-card {
  background: var(--surface);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}

.centre-copy {
  max-width: 700px;
  margin: 0 auto 22px;
  text-align: center;
}

.compact-copy {
  margin-bottom: 18px;
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.layer-card {
  position: relative;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 45px 16px 17px;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.layer-card:hover,
.layer-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.layer-card.layer-blue:hover {
  border-color: var(--blue);
  background: rgba(35, 213, 238, 0.08);
}

.layer-card.layer-yellow:hover {
  border-color: var(--yellow);
  background: rgba(245, 180, 0, 0.08);
}

.layer-card.layer-coral:hover {
  border-color: var(--coral);
  background: rgba(255, 88, 78, 0.07);
}

.layer-number {
  position: absolute;
  top: 11px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.layer-card h3 {
  margin: 0 0 6px;
  font-size: 0.89rem;
}

.layer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.notice {
  margin-bottom: 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 7px;
  padding: 12px 15px;
  background: #fff8dc;
  font-size: 0.86rem;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-steps {
  grid-template-columns: repeat(2, 1fr);
}

.steps li {
  position: relative;
  min-height: 78px;
  padding: 12px 14px 12px 61px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
}

.steps li:nth-child(1)::before {
  background: #0aa996;
}

.steps li:nth-child(2)::before {
  background: var(--blue);
  color: #ffffff;
}

.steps li:nth-child(3)::before {
  background: #ef4d8b;
}

.steps li:nth-child(4)::before {
  background: var(--coral);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  font-size: 0.86rem;
}

.steps span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.79rem;
}

.application-guide-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
}

.centre-note {
  text-align: center;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 13px;
}

.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.3), transparent),
    #d9dddf;
  color: #555b5d;
  text-align: center;
}

.photo-placeholder::after {
  content: "XINEPH VINYLS";
  position: absolute;
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-25deg);
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-banner h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1rem, 2.6vw, 1.28rem);
}

.contact-banner p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,0.76);
}

.contact-page,
.design-page {
  padding-top: 24px;
  padding-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-option {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-option.ebay {
  background: var(--yellow);
}

.contact-option.email {
  background: var(--mint);
}

.contact-option h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.02rem, 2.6vw, 1.3rem);
}

.contact-option p:not(.eyebrow) {
  margin: 0.5rem 0 1rem;
}

.email-address {
  display: inline-block;
  overflow-wrap: anywhere;
  font-size: clamp(0.92rem, 2.4vw, 1.04rem);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd4d6;
  border-radius: 10px;
  padding: 10px 11px;
  background: #fafafa;
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(35, 213, 238, 0.25);
  border-color: var(--blue);
}

.coming-soon-card {
  text-align: center;
}

.coming-soon-label {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--coral);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.coming-soon-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.coming-soon-card > p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.future-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}

.future-category-grid div {
  min-height: 115px;
  display: grid;
  place-items: center;
  border: 1px dashed #c8cdd0;
  border-radius: 12px;
  background: #f8f9fa;
  color: #9a9fa2;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer {
  margin-top: 32px;
  padding: 23px 0;
  background: var(--dark);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-grid > :last-child {
  text-align: right;
}

.footer-grid p {
  margin: 2px 0 0;
  color: rgba(255,255,255,0.67);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 760px) {
  .intro-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .layer-grid,
  .compact-steps {
    grid-template-columns: 1fr;
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .future-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid > :last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .logo-area {
    min-height: 82px;
  }

  .main-nav {
    gap: 7px;
  }

  .main-nav a {
    padding: 7px 12px;
    font-size: 0.75rem;
  }

  .page-width {
    width: min(100% - 18px, var(--page-width));
  }

  .intro-card {
    margin-top: 14px;
    padding: 21px 17px;
  }

  .customer-grid,
  .form-row,
  .future-category-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .section-heading {
    padding-inline: 14px;
  }

  .white-card {
    padding: 19px 15px;
  }
}


/* Colour on both sides of the three small introduction boxes. */
.intro-points div {
  border-left-width: 5px;
  border-right-width: 5px;
}

.intro-points .point-yellow {
  border-left-color: var(--yellow);
  border-right-color: var(--yellow);
}

.intro-points .point-mint {
  border-left-color: var(--mint);
  border-right-color: var(--mint);
}

.intro-points .point-coral {
  border-left-color: var(--coral);
  border-right-color: var(--coral);
}

/* Fonts for Text page. */




/* Image-based font showcase. */
.font-image-showcase {
  text-align: center;
}

.font-example-list {
  display: grid;
  gap: 16px;
}

.font-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  text-align: left;
}

.font-example-header {
  padding: 9px 15px;
  background: var(--dark);
  color: #ffffff;
  text-align: center;
}

.font-example-header h2 {
  margin: 0;
  font-size: 0.9rem;
}

.font-image-placeholder {
  min-height: 125px;
  display: grid;
  place-items: center;
  margin: 14px;
  border: 2px dashed #c9ced1;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(42, 190, 202, 0.06), rgba(255, 204, 0, 0.08)),
    #f8f9fa;
  color: var(--muted);
  text-align: center;
}

.font-image-placeholder span {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-style-label {
  padding: 9px 15px;
  background: #f3f4f6;
  color: var(--muted);
  font-size: 0.79rem;
  text-align: center;
}

.font-style-label strong {
  color: var(--text);
}

.coming-soon-note {
  margin-top: 18px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 204, 0, 0.16);
  color: var(--text);
  font-size: 0.79rem;
  font-weight: 800;
}

/* Legal-only footer. */
.legal-footer {
  text-align: center;
}

.legal-footer p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1.55;
}

.legal-footer p + p {
  margin-top: 7px;
  color: #ffffff;
}

@media (max-width: 620px) {
  .font-grid {
    grid-template-columns: 1fr;
  }
}


/* Quick-jump controls and compact two-column font layout. */
.font-style-jump {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.font-style-jump a {
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--dark);
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.font-style-jump a:nth-child(1) {
  background: var(--blue);
  color: #ffffff;
}

.font-style-jump a:nth-child(2) {
  background: var(--yellow);
  color: #4a3b00;
}

.font-style-jump a:nth-child(3) {
  background: var(--coral);
}

.font-style-jump a:nth-child(4) {
  background: var(--mint);
  color: #20433a;
}

.font-style-jump a:hover,
.font-style-jump a:focus-visible {
  transform: translateY(-2px);
}

.font-category {
  scroll-margin-top: 18px;
}

.font-category + .font-category {
  margin-top: 25px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.font-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.font-category-heading h2 {
  margin: 0;
  font-size: 1rem;
}

.font-category-heading a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.font-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.font-example-header h3 {
  margin: 0;
  font-size: 0.84rem;
}

@media (max-width: 620px) {
  .font-style-jump {
    grid-template-columns: repeat(2, 1fr);
  }

  .font-example-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact-form spam field and submission messages. */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.83rem;
  font-weight: 800;
}

.form-status.success {
  border: 1px solid #45b899;
  background: rgba(98, 222, 185, 0.18);
  color: #204f43;
}

.form-status.error {
  border: 1px solid var(--coral);
  background: rgba(255, 88, 78, 0.10);
  color: #7b2620;
}
