/*
Theme Name: Risen Anchor Landing v2.9
Theme URI: https://example.com/
Author: Risen Anchor Co.
Description: A lightweight, professional one-page WordPress landing theme for Risen Anchor Co.
Version: 2.9.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: risen-anchor-landing
*/

:root {
  --rac-teal: #17575f;
  --rac-deep: #103f45;
  --rac-gold: #cdaf70;
  --rac-cream: #f7f2e7;
  --rac-paper: #fffdf9;
  --rac-ink: #17272a;
  --rac-muted: #5c6a6c;
  --rac-line: rgba(15, 97, 112, 0.16);
  --rac-shadow: 0 24px 70px rgba(10, 64, 73, 0.13);
  --rac-radius: 26px;
  --rac-width: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--rac-ink);
  background: var(--rac-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--rac-teal); }
a:hover { color: var(--rac-deep); }

.rac-container {
  width: min(calc(100% - 40px), var(--rac-width));
  margin-inline: auto;
}

.rac-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--rac-deep);
  border-radius: 8px;
}

.rac-skip-link:focus { transform: translateY(0); }

/* Large centered header at the top; compact horizontal header after scrolling. */
.rac-header-shell {
  position: relative;
  z-index: 1000;
  width: 100%;
}

.rac-site-header {
  position: relative;
  width: 100%;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid var(--rac-line);
  backdrop-filter: blur(14px);
}

.rac-site-header.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.rac-header-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 0 15px;
  transition: padding 0.25s ease, min-height 0.25s ease;
}

.rac-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: width 0.25s ease, flex-basis 0.25s ease;
}

.rac-site-header:not(.is-scrolled) .rac-brand {
  flex: 0 0 auto;
  width: 650px;
  max-width: calc(100vw - 40px);
  overflow: visible;
}

.rac-brand img {
  display: block;
  height: auto;
  object-fit: contain;
  transition: width 0.25s ease, max-width 0.25s ease, max-height 0.25s ease;
}

.rac-site-header:not(.is-scrolled) .rac-brand img {
  width: 650px;
  max-width: 100%;
  max-height: none;
  transform: none;
}

.rac-header-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: width 0.25s ease, margin 0.25s ease;
}

.rac-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rac-nav a {
  color: var(--rac-ink);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.rac-nav a:hover,
.rac-nav a:focus { color: var(--rac-teal); }

.rac-site-header.is-scrolled .rac-header-inner {
  min-height: 72px;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.rac-site-header.is-scrolled .rac-brand {
  flex: 0 0 150px;
  width: 150px;
  justify-content: flex-start;
}

.rac-site-header.is-scrolled .rac-brand img {
  width: 150px;
  max-width: 150px;
  max-height: 58px;
}

.rac-site-header.is-scrolled .rac-header-actions {
  width: auto;
  justify-content: flex-end;
  margin-left: auto;
}

.rac-site-header.is-scrolled .rac-nav ul {
  justify-content: flex-end;
  gap: 26px;
}

.rac-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--rac-deep);
  background: transparent;
  border: 1px solid var(--rac-line);
  border-radius: 12px;
  cursor: pointer;
}

.rac-menu-toggle span,
.rac-menu-toggle::before,
.rac-menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.rac-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 13px 23px;
  color: #fff;
  background: var(--rac-teal);
  border: 1px solid var(--rac-teal);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 97, 112, 0.17);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rac-button:hover,
.rac-button:focus {
  color: #fff;
  background: var(--rac-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 97, 112, 0.23);
}

.rac-button--secondary {
  color: var(--rac-deep);
  background: transparent;
  border-color: rgba(15, 97, 112, 0.4);
  box-shadow: none;
}

.rac-button--secondary:hover,
.rac-button--secondary:focus {
  color: var(--rac-deep);
  background: var(--rac-cream);
}

.rac-button--light {
  color: var(--rac-deep);
  background: #fff;
  border-color: #fff;
}

.rac-button--light:hover,
.rac-button--light:focus {
  color: var(--rac-deep);
  background: var(--rac-cream);
}

.rac-button--disabled,
.rac-button--disabled:hover,
.rac-button--disabled:focus {
  color: rgba(255, 255, 255, 0.82);
  background: #7c898b;
  border-color: #7c898b;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.82;
  transform: none;
}

.rac-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 86px;
  background:
    radial-gradient(circle at 85% 18%, rgba(217, 184, 95, 0.19), transparent 31%),
    linear-gradient(180deg, #fffdf9 0%, #f8f3e9 100%);
}


.rac-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: 52px;
  align-items: center;
}

.rac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--rac-teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rac-eyebrow::before {
  width: 36px;
  height: 2px;
  content: "";
  background: var(--rac-gold);
}

.rac-hero h1,
.rac-section-heading h2,
.rac-callout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

/* Approximately 30% smaller than the original hero heading. */
.rac-hero h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.rac-hero-lede {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--rac-muted);
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}

.rac-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
}

.rac-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--rac-muted);
  font-size: 0.91rem;
  list-style: none;
}

.rac-trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rac-trust-line li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--rac-gold);
  border-radius: 50%;
}

/* Scattered hero magnet gallery. */
.rac-hero-visual {
  width: 100%;
  min-height: 600px;
}

.rac-hero-mosaic {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 555px;
  margin-inline: auto;
}

.rac-hero-magnet {
  position: absolute;
  width: clamp(138px, 10.35vw, 190px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 20px 36px rgba(16, 63, 69, 0.18),
    0 5px 12px rgba(16, 63, 69, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rac-hero-magnet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rac-hero-magnet:nth-child(1)  { top: 1%;  left: 0;   z-index: 4; transform: rotate(-6deg); }
.rac-hero-magnet:nth-child(2)  { top: 4%;  left: 24%; z-index: 2; transform: rotate(5deg); }
.rac-hero-magnet:nth-child(3)  { top: 0;   left: 49%; z-index: 5; transform: rotate(-3deg); }
.rac-hero-magnet:nth-child(4)  { top: 5%;  right: 0;  z-index: 3; transform: rotate(6deg); }

.rac-hero-magnet:nth-child(5)  { top: 31%; left: 4%;  z-index: 7; transform: rotate(4deg); }
.rac-hero-magnet:nth-child(6)  { top: 28%; left: 28%; z-index: 8; transform: rotate(-5deg); }
.rac-hero-magnet:nth-child(7)  { top: 32%; left: 52%; z-index: 6; transform: rotate(3deg); }
.rac-hero-magnet:nth-child(8)  { top: 29%; right: 2%; z-index: 9; transform: rotate(-4deg); }

.rac-hero-magnet:nth-child(9)  { top: 59%; left: 0;   z-index: 4; transform: rotate(-4deg); }
.rac-hero-magnet:nth-child(10) { top: 56%; left: 24%; z-index: 6; transform: rotate(6deg); }
.rac-hero-magnet:nth-child(11) { top: 60%; left: 49%; z-index: 5; transform: rotate(-2deg); }
.rac-hero-magnet:nth-child(12) { top: 57%; right: 0;  z-index: 7; transform: rotate(5deg); }

.rac-hero-magnet:hover {
  z-index: 20;
  transform: rotate(0deg) translateY(-6px) scale(1.045);
  box-shadow:
    0 26px 46px rgba(16, 63, 69, 0.23),
    0 8px 18px rgba(16, 63, 69, 0.13);
}

.rac-section { padding: 92px 0; }
.rac-section--cream { background: var(--rac-cream); }

.rac-section--teal {
  color: #fff;
  background: var(--rac-deep);
}

.rac-section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 46px;
}

.rac-section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.rac-section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--rac-muted);
  font-size: 1.08rem;
}

.rac-section--teal .rac-section-heading p { color: rgba(255,255,255,0.76); }
.rac-section--teal .rac-eyebrow { color: #fff; }

.rac-example-gallery {
  display: grid;
  gap: 34px;
}

.rac-example-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(460px, 1.28fr);
  gap: 46px;
  align-items: center;
  min-height: 420px;
  padding: 34px 36px;
  background: #fff;
  border: 1px solid var(--rac-line);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(16, 63, 69, 0.08);
  overflow: hidden;
}

.rac-example-group:nth-child(even) {
  grid-template-columns: minmax(460px, 1.28fr) minmax(250px, 0.72fr);
}

.rac-example-group:nth-child(even) .rac-example-copy {
  order: 2;
}

.rac-example-group:nth-child(even) .rac-scatter {
  order: 1;
}

.rac-example-copy {
  position: relative;
  z-index: 2;
}

.rac-example-number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: var(--rac-teal);
  background: var(--rac-cream);
  border-radius: 16px;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.rac-example-copy h3 {
  margin: 0 0 12px;
  color: var(--rac-deep);
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  line-height: 1.18;
}

.rac-example-copy p {
  margin: 0;
  color: var(--rac-muted);
  font-size: 1.02rem;
}

.rac-scatter {
  position: relative;
  width: 100%;
  min-height: 350px;
}

.rac-gallery-magnet {
  position: absolute;
  width: clamp(155px, 18vw, 220px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 20px 36px rgba(16, 63, 69, 0.18),
    0 5px 12px rgba(16, 63, 69, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rac-gallery-magnet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rac-gallery-magnet:nth-child(1) {
  top: 18px;
  left: 5%;
  z-index: 2;
  transform: rotate(-7deg);
}

.rac-gallery-magnet:nth-child(2) {
  top: 0;
  right: 6%;
  z-index: 1;
  transform: rotate(6deg);
}

.rac-gallery-magnet:nth-child(3) {
  bottom: 4px;
  left: 24%;
  z-index: 4;
  transform: rotate(3deg);
}

.rac-gallery-magnet:nth-child(4) {
  right: 14%;
  bottom: 18px;
  z-index: 3;
  transform: rotate(-4deg);
}

.rac-gallery-magnet:hover {
  z-index: 10;
  transform: rotate(0deg) translateY(-5px) scale(1.025);
  box-shadow:
    0 24px 44px rgba(16, 63, 69, 0.22),
    0 8px 16px rgba(16, 63, 69, 0.12);
}

.rac-section-cta {
  margin-top: 34px;
}

.rac-bulk-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 62px;
  align-items: center;
}

.rac-bulk-copy,
.rac-bulk-panel,
.rac-step > div {
  min-width: 0;
}

.rac-bulk-copy h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rac-bulk-copy p { color: rgba(255,255,255,0.79); }

.rac-bulk-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 27px 0 34px;
  list-style: none;
}

.rac-bulk-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.89);
}

.rac-bulk-list li::before {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  content: "✓";
  color: var(--rac-deep);
  background: var(--rac-gold);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  line-height: 20px;
}

.rac-bulk-panel {
  padding: 35px;
  color: var(--rac-ink);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

.rac-bulk-panel h3 {
  margin: 0 0 24px;
  color: var(--rac-deep);
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rac-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--rac-line);
}

.rac-step:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.rac-step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--rac-deep);
  background: var(--rac-cream);
  border-radius: 50%;
  font-weight: 850;
}

.rac-step strong {
  display: block;
  margin-bottom: 3px;
}

.rac-step p {
  margin: 0;
  color: var(--rac-muted);
  font-size: 0.94rem;
}

.rac-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.rac-about-brand {
  padding: 40px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--rac-line);
  border-radius: 32px;
  box-shadow: var(--rac-shadow);
}

.rac-about-brand img { width: min(100%, 390px); }

.rac-about-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rac-about-copy p {
  color: var(--rac-muted);
  font-size: 1.04rem;
}

.rac-scripture {
  margin-top: 28px;
  padding-left: 20px;
  color: var(--rac-deep);
  border-left: 3px solid var(--rac-gold);
  font-family: Georgia, serif;
  font-size: 1.08rem;
}

.rac-order-strip {
  padding: 54px 0;
  background: #fff;
  border-block: 1px solid var(--rac-line);
}

.rac-order-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.rac-order-strip h2 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.15;
}

.rac-order-strip p {
  margin: 0;
  color: var(--rac-muted);
}

.rac-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.rac-contact-copy h2 {
  margin: 0 0 20px;
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.08;
}

.rac-contact-copy > p {
  max-width: 650px;
  color: rgba(255,255,255,0.77);
}

.rac-contact-card {
  padding: 32px;
  color: var(--rac-ink);
  background: #fff;
  border-radius: 26px;
}

.rac-contact-item {
  padding: 17px 0;
  border-top: 1px solid var(--rac-line);
}

.rac-contact-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.rac-contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--rac-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rac-contact-label--long {
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.rac-contact-value {
  color: var(--rac-deep);
  font-size: 1.06rem;
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.rac-contact-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
}

.rac-site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.70);
  background: #072f36;
  font-size: 0.88rem;
}

.rac-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.rac-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.rac-site-footer a { color: #fff; }

.rac-content {
  width: min(calc(100% - 40px), 860px);
  margin: 70px auto;
}

.rac-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
}

.rac-content article + article {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--rac-line);
}

@media (max-width: 920px) {
  .rac-header-actions { gap: 12px; }

  .rac-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: var(--rac-paper);
    border-bottom: 1px solid var(--rac-line);
    box-shadow: 0 18px 35px rgba(10,64,73,0.10);
  }

  .rac-nav.is-open { display: block; }
  .rac-nav ul { display: grid; gap: 0; }
  .rac-nav a { display: block; padding: 12px 0; }
  .rac-menu-toggle { display: block; }
  .rac-header-order { display: none; }

  .rac-header-actions {
    width: auto;
  }

  .rac-site-header:not(.is-scrolled) .rac-header-actions {
    width: 100%;
  }

  .rac-site-header.is-scrolled .rac-brand {
    flex-basis: 150px;
  }

  .rac-hero-grid,
  .rac-bulk-grid,
  .rac-about-grid,
  .rac-contact-grid {
    grid-template-columns: 1fr;
  }

  .rac-hero-grid { gap: 52px; }

  .rac-hero-visual {
    width: min(100%, 800px);
    min-height: 550px;
    margin-inline: auto;
  }

  .rac-hero-mosaic {
    max-width: 800px;
    min-height: 550px;
  }

  .rac-hero-magnet {
    width: clamp(140px, 21vw, 190px);
  }

  .rac-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rac-example-group,
  .rac-example-group:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .rac-example-group:nth-child(even) .rac-example-copy,
  .rac-example-group:nth-child(even) .rac-scatter {
    order: initial;
  }

  .rac-scatter {
    min-height: 350px;
  }

  .rac-gallery-magnet {
    width: clamp(145px, 28vw, 215px);
  }

  .rac-about-brand { max-width: 560px; }
}

@media (max-width: 640px) {
  .rac-container { width: min(calc(100% - 28px), var(--rac-width)); }
  .rac-site-header .rac-container { width: min(calc(100% - 20px), var(--rac-width)); }

  .rac-header-inner {
    gap: 8px;
    padding: 12px 0;
  }

  .rac-site-header:not(.is-scrolled) .rac-brand {
    flex-basis: auto;
    width: 650px;
    max-width: calc(100vw - 20px);
  }

  .rac-site-header:not(.is-scrolled) .rac-brand img {
    width: 650px;
    max-width: 100%;
    max-height: none;
    transform: none;
  }

  .rac-site-header.is-scrolled .rac-header-inner {
    min-height: 66px;
    gap: 10px;
    padding: 6px 0;
  }

  .rac-site-header.is-scrolled .rac-brand,
  .rac-site-header.is-scrolled .rac-brand img {
    width: 150px;
    max-width: 150px;
  }

  .rac-site-header.is-scrolled .rac-brand img {
    max-height: 52px;
  }

  .rac-hero { padding: 66px 0 62px; }
  .rac-hero h1 { font-size: clamp(2rem, 10vw, 2.7rem); }

  .rac-hero-visual {
    min-height: 0;
  }

  .rac-hero-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    max-width: 390px;
    padding: 8px 4px 14px;
  }

  .rac-hero-magnet,
  .rac-hero-magnet:nth-child(n) {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .rac-hero-magnet:nth-child(1)  { transform: rotate(-5deg); }
  .rac-hero-magnet:nth-child(2)  { transform: rotate(3deg); }
  .rac-hero-magnet:nth-child(3)  { transform: rotate(-2deg); }
  .rac-hero-magnet:nth-child(4)  { transform: rotate(4deg); }
  .rac-hero-magnet:nth-child(5)  { transform: rotate(-4deg); }
  .rac-hero-magnet:nth-child(6)  { transform: rotate(2deg); }
  .rac-hero-magnet:nth-child(7)  { transform: rotate(-3deg); }
  .rac-hero-magnet:nth-child(8)  { transform: rotate(5deg); }
  .rac-hero-magnet:nth-child(9)  { transform: rotate(-2deg); }
  .rac-hero-magnet:nth-child(10) { transform: rotate(4deg); }
  .rac-hero-magnet:nth-child(11) { transform: rotate(-4deg); }
  .rac-hero-magnet:nth-child(12) { transform: rotate(2deg); }

  .rac-hero-actions,
  .rac-order-strip-inner,
  .rac-footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .rac-button { width: 100%; }

  .rac-section { padding: 70px 0; }

  .rac-example-gallery {
    gap: 24px;
  }

  .rac-example-group,
  .rac-example-group:nth-child(even) {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .rac-scatter {
    min-height: 430px;
  }

  .rac-gallery-magnet {
    width: min(48vw, 190px);
  }

  .rac-gallery-magnet:nth-child(1) {
    top: 16px;
    left: 0;
  }

  .rac-gallery-magnet:nth-child(2) {
    top: 0;
    right: 0;
  }

  .rac-gallery-magnet:nth-child(3) {
    bottom: 20px;
    left: 2%;
  }

  .rac-gallery-magnet:nth-child(4) {
    right: 2%;
    bottom: 0;
  }

  .rac-bulk-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  .rac-bulk-copy > p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .rac-bulk-list {
    gap: 16px;
  }

  .rac-bulk-list li {
    gap: 13px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .rac-bulk-panel,
  .rac-contact-card {
    padding: 24px 20px;
  }

  .rac-bulk-panel h3 {
    margin-bottom: 20px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .rac-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .rac-step strong {
    font-size: 1rem;
  }

  .rac-step p {
    font-size: 0.95rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .rac-bulk-copy .rac-button,
  .rac-bulk-panel .rac-button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
  .rac-about-brand { padding: 28px; }
  .rac-order-strip { padding: 44px 0; }
  .rac-footer-legal { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after { transition: none !important; }
}


/* Version 1.9: the header uses a tightly cropped theme asset, so no CSS image crop is needed. */
.rac-site-header:not(.is-scrolled) .rac-header-inner {
  padding-top: 18px;
  padding-bottom: 14px;
}
