:root {
  --ink: #111111;
  --paper: #f7f4ef;
  --stone: #d8d1c6;
  --charcoal: #171a18;
  --deep-green: #17362e;
  --moss: #5f755f;
  --brass: #b8945c;
  --copper: #9f6145;
  --white: #ffffff;
  --muted: #6c6a64;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wp-site-blocks,
.easton-home,
.easton-home > .wp-block-group,
.wp-block-template-part {
  margin-block-start: 0;
}

.easton-home {
  max-width: none !important;
}

.easton-home > section,
.wp-block-group.hero,
.wp-block-group.intro,
.wp-block-group.services,
.wp-block-group.quote-band,
.wp-block-group.testimonials,
.wp-block-group.club,
.wp-block-group.contact {
  max-width: none !important;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), padding 260ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(184, 148, 92, 0.16);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  border-radius: 50%;
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: color 220ms var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 116px clamp(18px, 5vw, 72px) 48px;
}

.hero > img,
.hero .hero-bg,
.hero .hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero > img,
.hero .hero-bg {
  z-index: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.hero > img,
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-bottom: 96px;
}

.hero .wp-block-heading,
.hero h1 {
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 7.9rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 5.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  width: min(610px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.wp-block-button.button {
  padding: 0;
  border: 0;
  background: transparent;
}

.wp-block-button.button .wp-block-button__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.wp-block-button.button.primary .wp-block-button__link {
  background: var(--brass);
  color: #17110a;
}

.wp-block-button.button.secondary .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.wp-block-button.button .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.button.primary {
  background: var(--brass);
  color: #17110a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button.outline {
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--ink);
  background: transparent;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(720px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 16, 15, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel .wp-block-group {
  margin: 0;
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--brass);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.section-pad {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--charcoal);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 7vw, 92px);
  align-items: end;
}

.intro h2 {
  margin-bottom: 0;
}

.intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ece6dc;
}

.metrics div {
  padding: clamp(22px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.metrics p,
.hero-panel p,
.contact-points p,
.service-grid article > p:first-child {
  margin: 0;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--deep-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.split,
.club {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.split-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.feature-list article,
.service-grid article,
.plans article,
.event-row article,
.steps article,
.faq details,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
}

.feature-list article {
  padding: 22px;
}

.feature-list p,
.service-grid p,
.event-row p,
.steps p,
.plans li,
.faq p {
  color: var(--muted);
}

.image-card {
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wp-block-image.image-card {
  margin: 0;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.services {
  background: #fdfbf7;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article,
.event-row article,
.steps article {
  padding: 26px;
}

.service-grid article {
  height: 100%;
}

.service-grid span,
.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-green);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
}

.club {
  background: var(--deep-green);
  color: var(--white);
}

.club .split-copy > p:not(.eyebrow),
.club .check-list {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--brass);
  border-radius: 50%;
}

.membership {
  background: #e7e0d4;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plans article {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.featured-plan {
  background: var(--charcoal) !important;
  color: var(--white);
  border-color: rgba(184, 148, 92, 0.5) !important;
  box-shadow: var(--shadow);
}

.plan-label {
  color: var(--brass);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.price {
  margin-bottom: 24px;
  color: var(--deep-green);
  font-size: 1.35rem;
  font-weight: 800;
}

.featured-plan .price {
  color: var(--brass);
}

.plans ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding-left: 18px;
}

.plans .button {
  margin-top: auto;
}

.events {
  background: var(--paper);
}

.event-row,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-row time {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--copper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.process {
  background: #fdfbf7;
}

.testimonials {
  background: #fdfbf7;
  color: var(--ink);
}

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

.testimonial-grid blockquote {
  margin: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.18;
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.07);
}

.testimonial-grid cite {
  display: block;
  margin-top: 28px;
  color: var(--brass);
  font-style: normal;
  font-weight: 800;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.86rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(23, 54, 46, 0.96), rgba(23, 26, 24, 0.96)),
    var(--charcoal);
  color: var(--white);
}

.contact-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  backdrop-filter: blur(16px);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.lead-form,
.contact-card,
.service-grid article,
.feature-list article,
.testimonial-grid blockquote,
.image-card {
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.service-grid article:hover,
.feature-list article:hover,
.testimonial-grid blockquote:hover,
.image-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 148, 92, 0.42);
  box-shadow: 0 20px 70px rgba(17, 17, 17, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px clamp(18px, 5vw, 72px);
  background: #0d0e0d;
  color: var(--white);
}

.footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(17, 17, 17, 0.96);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .hero-panel,
  .intro-grid,
  .split,
  .club,
  .section-heading,
  .quote-band,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .metrics,
  .service-grid,
  .plans,
  .event-row,
  .steps,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

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

  .hero {
    min-height: 100vh;
    padding: 104px 18px 28px;
  }

  .hero-content {
    padding-bottom: 330px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

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

  .metrics,
  .service-grid,
  .plans,
  .event-row,
  .steps,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 64px 18px;
  }
}
