@charset "UTF-8";

:root {
  --ewns-navy: #031820;
  --ewns-navy-soft: #082732;
  --ewns-ink: #08242d;
  --ewns-gold: #c7a353;
  --ewns-gold-light: #ddc47d;
  --ewns-ivory: #f6f2e9;
  --ewns-paper: #fbfaf6;
  --ewns-white: #fff;
  --ewns-line: rgba(8, 36, 45, 0.16);
  --ewns-line-dark: rgba(221, 196, 125, 0.28);
  --ewns-serif: "Newsreader", Georgia, serif;
  --ewns-sans: "Montserrat", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ewns-navy);
}

body.ccp-page {
  margin: 0;
  color: var(--ewns-ink);
  background: var(--ewns-paper);
  font-family: var(--ewns-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ccp-page img {
  display: block;
  max-width: 100%;
}

:where(body.ccp-page a) {
  color: inherit;
  text-decoration: none;
}

.cc-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(600px, 1.9fr) auto;
  align-items: center;
  min-height: 112px;
  padding: 0 4.5vw;
  color: var(--ewns-white);
  background: var(--ewns-navy);
  border-bottom: 1px solid var(--ewns-line-dark);
}

.cc-brand {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: 12px;
  color: var(--ewns-white);
  white-space: nowrap;
}

.cc-brand strong {
  font-family: var(--ewns-serif);
  font-size: clamp(34px, 2.5vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.cc-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cc-menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.1vw, 40px);
}

.cc-menu a,
.cc-languages a,
.cc-join,
.cc-menu-toggle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.cc-menu a {
  position: relative;
  padding: 43px 0 39px;
  color: rgba(255, 255, 255, 0.88);
}

.cc-menu a::after {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ewns-gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.cc-menu a:hover::after,
.cc-menu a:focus-visible::after,
.cc-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.cc-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.cc-languages {
  display: flex;
  gap: 8px;
}

.cc-languages a {
  color: rgba(255, 255, 255, 0.48);
}

.cc-languages a[aria-current="true"] {
  color: var(--ewns-gold-light);
}

.cc-join {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ewns-white);
  border: 1px solid var(--ewns-gold);
  transition: color 180ms ease, background 180ms ease;
}

.cc-join:hover,
.cc-join:focus-visible {
  color: var(--ewns-navy);
  background: var(--ewns-gold-light);
}

.cc-menu-toggle {
  display: none;
  color: var(--ewns-white);
  border: 0;
  background: transparent;
}

.ccp-hero {
  position: relative;
  min-height: clamp(560px, 67vh, 760px);
  isolation: isolate;
  overflow: hidden;
  color: var(--ewns-white);
  background: var(--ewns-navy);
}

.ccp-hero > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.01);
}

.ccp-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 20, 28, 0.94) 0%, rgba(2, 20, 28, 0.76) 34%, rgba(2, 20, 28, 0.24) 67%, rgba(2, 20, 28, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 20, 28, 0.42) 0%, transparent 50%);
}

.ccp-hero-copy {
  display: flex;
  width: min(680px, 88vw);
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: clamp(32px, 7vw, 136px);
  padding: 64px 0 70px;
}

.ccp-hero-copy > p:first-child,
.ccp-section-heading > p:first-child,
.ccp-feature-copy > p:first-child {
  margin: 0 0 19px;
  color: var(--ewns-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ccp-hero h1 {
  max-width: 10.2ch;
  margin: 0;
  font-family: var(--ewns-serif);
  font-size: clamp(58px, 6vw, 106px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.cc-gold-rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 30px 0 27px;
  background: var(--ewns-gold);
}

.ccp-hero-copy > p:last-child {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 1.65;
}

.ccp-about .ccp-hero > img { object-position: 62% 42%; }
.ccp-golfers .ccp-hero > img { object-position: 70% 45%; }
.ccp-clubs .ccp-hero > img { object-position: 64% 50%; }
.ccp-companies .ccp-hero > img { object-position: 68% 44%; }
.ccp-events .ccp-hero > img { object-position: 62% 46%; }
.ccp-network .ccp-hero > img { object-position: 58% 45%; }

.cc-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ewns-white);
  background: var(--ewns-navy);
  border-top: 1px solid var(--ewns-line-dark);
}

.cc-value {
  min-height: 220px;
  padding: 38px clamp(25px, 3vw, 58px) 34px;
  text-align: center;
  border-right: 1px solid var(--ewns-line-dark);
}

.cc-value:last-child {
  border-right: 0;
}

.cc-icon,
.ccp-card > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--ewns-gold-light);
  border: 1px solid rgba(221, 196, 125, 0.42);
  border-radius: 50%;
}

.cc-icon svg,
.ccp-card > span svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.cc-value h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-value p {
  max-width: 31ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.ccp-content {
  padding: clamp(92px, 9vw, 160px) clamp(32px, 6.5vw, 126px);
  background: var(--ewns-paper);
}

.ccp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.75fr);
  column-gap: clamp(48px, 9vw, 170px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto clamp(54px, 6vw, 96px);
}

.ccp-section-heading > p:first-child {
  grid-column: 1 / -1;
  color: #9a712b;
}

.ccp-section-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--ewns-serif);
  font-size: clamp(52px, 5.15vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ccp-section-heading .cc-gold-rule {
  display: none;
}

.ccp-section-heading > p:last-child {
  max-width: 49ch;
  margin: 0 0 4px;
  color: rgba(8, 36, 45, 0.68);
  font-size: 16px;
}

.ccp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1540px;
  margin: 0 auto;
  border-top: 1px solid var(--ewns-line);
  border-bottom: 1px solid var(--ewns-line);
}

.ccp-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ccp-card {
  min-height: 330px;
  padding: 48px clamp(27px, 3vw, 52px) 42px;
  background: transparent;
  border-right: 1px solid var(--ewns-line);
}

.ccp-card:last-child {
  border-right: 0;
}

.ccp-card > span {
  margin: 0 0 33px;
  color: #9a712b;
  border-color: rgba(154, 113, 43, 0.38);
}

.ccp-card h3 {
  margin: 0 0 16px;
  font-family: var(--ewns-serif);
  font-size: clamp(31px, 2.1vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.ccp-card p {
  max-width: 38ch;
  margin: 0;
  color: rgba(8, 36, 45, 0.66);
  font-size: 14px;
}

.ccp-card a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--ewns-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ewns-gold);
}

.ccp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  min-height: 760px;
  color: var(--ewns-white);
  background: var(--ewns-navy);
}

.ccp-feature-image {
  min-height: 760px;
  overflow: hidden;
}

.ccp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.ccp-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 142px);
}

.ccp-feature-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--ewns-serif);
  font-size: clamp(52px, 5vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.ccp-feature-copy > p:not(:first-child) {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.ccp-feature-copy ul {
  display: grid;
  gap: 0;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ewns-line-dark);
}

.ccp-feature-copy li {
  padding: 16px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ewns-line-dark);
}

.ccp-about .ccp-feature,
.ccp-companies .ccp-feature,
.ccp-partners .ccp-feature {
  grid-template-columns: minmax(440px, 0.88fr) minmax(0, 1.12fr);
}

.ccp-about .ccp-feature-image,
.ccp-companies .ccp-feature-image,
.ccp-partners .ccp-feature-image {
  grid-column: 2;
}

.ccp-about .ccp-feature-copy,
.ccp-companies .ccp-feature-copy,
.ccp-partners .ccp-feature-copy {
  grid-row: 1;
  grid-column: 1;
}

.cc-button {
  display: inline-flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--ewns-gold);
}

.cc-button--gold {
  color: var(--ewns-navy);
  background: var(--ewns-gold-light);
}

.cc-button--navy {
  color: var(--ewns-white);
  background: var(--ewns-navy);
}

@media (max-width: 720px) {
  body.ccp-page main :is(h1, h2, h3) {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
}

.ccp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(70px, 7vw, 120px) clamp(32px, 7vw, 136px);
  color: var(--ewns-ink);
  background: var(--ewns-gold-light);
}

.ccp-cta h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--ewns-serif);
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.ccp-cta p {
  max-width: 52ch;
  margin: 16px 0 0;
}

.cc-footer {
  color: var(--ewns-white);
  background: var(--ewns-navy);
  border-top: 1px solid var(--ewns-line-dark);
}

.cc-footer-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ewns-line-dark);
}

.cc-footer-values > div {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  border-right: 1px solid var(--ewns-line-dark);
}

.cc-footer-values > div:last-child {
  border-right: 0;
}

.cc-footer-values svg {
  width: 38px;
  height: 38px;
  fill: none;
  color: var(--ewns-gold-light);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.cc-footer-values strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cc-footer-brand {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 42px;
  padding: 66px 5vw 58px;
}

.cc-footer-brand p,
.cc-footer-brand > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home17-back-to-top,
.back-to-top,
[data-back-to-top] {
  position: fixed !important;
  z-index: 9999 !important;
  right: 28px !important;
  bottom: 28px !important;
  display: grid !important;
  width: 58px !important;
  height: 58px !important;
  place-items: center !important;
  color: var(--ewns-gold-light) !important;
  background: var(--ewns-navy) !important;
  border: 1px solid var(--ewns-gold) !important;
  border-radius: 50% !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

.home17-back-to-top span,
.back-to-top span,
[data-back-to-top] span {
  display: none !important;
}

@media (max-width: 1320px) {
  .cc-header {
    grid-template-columns: 1fr auto;
  }

  .cc-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 22px 5vw 30px;
    background: var(--ewns-navy);
    border-top: 1px solid var(--ewns-line-dark);
  }

  .cc-header.is-open .cc-menu {
    display: flex;
  }

  .cc-menu a {
    padding: 13px 0;
  }

  .cc-menu a::after {
    bottom: 9px;
    width: 40px;
  }

  .cc-menu-toggle {
    display: inline-flex;
  }

  .cc-header-actions {
    grid-column: 2;
    grid-row: 1;
  }

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

  .ccp-card-grid--four .ccp-card:nth-child(2) {
    border-right: 0;
  }

  .ccp-card-grid--four .ccp-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ewns-line);
  }
}

@media (max-width: 900px) {
  .cc-header {
    min-height: 88px;
    padding: 0 24px;
  }

  .cc-brand small,
  .cc-languages,
  .cc-join {
    display: none;
  }

  .ccp-hero {
    min-height: 650px;
  }

  .ccp-hero-copy {
    width: auto;
    margin: 0;
    padding: 70px 28px 58px;
    justify-content: flex-end;
  }

  .ccp-hero h1 {
    font-size: clamp(54px, 14vw, 80px);
  }

  .ccp-hero > img {
    object-position: 66% center;
  }

  .ccp-hero-shade {
    background: linear-gradient(0deg, rgba(2, 20, 28, 0.96) 0%, rgba(2, 20, 28, 0.74) 44%, rgba(2, 20, 28, 0.18) 100%);
  }

  .cc-value-strip,
  .cc-footer-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-value:nth-child(2),
  .cc-footer-values > div:nth-child(2) {
    border-right: 0;
  }

  .cc-value:nth-child(-n + 2),
  .cc-footer-values > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ewns-line-dark);
  }

  .ccp-section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .ccp-card-grid,
  .ccp-card-grid--four {
    grid-template-columns: 1fr;
  }

  .ccp-card,
  .ccp-card-grid--four .ccp-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ewns-line);
  }

  .ccp-feature,
  .ccp-about .ccp-feature,
  .ccp-companies .ccp-feature,
  .ccp-partners .ccp-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .ccp-feature-image,
  .ccp-about .ccp-feature-image,
  .ccp-companies .ccp-feature-image,
  .ccp-partners .ccp-feature-image {
    grid-column: 1;
    min-height: 430px;
  }

  .ccp-feature-copy,
  .ccp-about .ccp-feature-copy,
  .ccp-companies .ccp-feature-copy,
  .ccp-partners .ccp-feature-copy {
    grid-row: auto;
    grid-column: 1;
    padding: 70px 30px 80px;
  }

  .ccp-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-footer-brand {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .cc-value-strip,
  .cc-footer-values {
    grid-template-columns: 1fr;
  }

  .cc-value,
  .cc-value:nth-child(2),
  .cc-footer-values > div,
  .cc-footer-values > div:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ewns-line-dark);
  }

  .ccp-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ccp-section-heading h2,
  .ccp-feature-copy h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .ccp-card {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
