:root {
  --green-950: #071f18;
  --green-900: #0d2f23;
  --green-800: #133d2d;
  --green-700: #1d5a41;
  --green-200: #cae2c1;
  --cream: #f7f2e6;
  --cream-soft: #fbf8ef;
  --sand: #d8c289;
  --gold: #c69a45;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(3, 20, 13, 0.28);
  --radius-large: 34px;
  --radius-medium: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--green-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(214, 194, 137, 0.16), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(148, 189, 121, 0.22), transparent 30rem),
    linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 42%, #0b261d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 22px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  min-height: calc(100vh - 168px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    linear-gradient(145deg, rgba(12, 57, 40, 0.94), rgba(7, 31, 24, 0.98));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -96px;
  height: 160px;
  border-radius: 50%;
  background: rgba(202, 226, 193, 0.16);
  filter: blur(34px);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vw, 68px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(44px, 8vw, 92px);
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.2));
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand em {
  margin-top: 6px;
  color: var(--green-200);
  font-size: 0.86rem;
  font-style: normal;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(251, 248, 239, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--green-950);
  background: linear-gradient(135deg, #f3dc91, var(--gold));
  box-shadow: 0 16px 28px rgba(198, 154, 69, 0.26);
}

.button--secondary {
  color: var(--cream-soft);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.notice {
  display: flex;
  gap: 14px;
  max-width: 560px;
  margin-top: 38px;
  border: 1px solid rgba(202, 226, 193, 0.18);
  border-radius: var(--radius-medium);
  padding: 16px 18px;
  background: rgba(7, 31, 24, 0.38);
  backdrop-filter: blur(14px);
}

.notice p {
  margin: 0;
  color: rgba(251, 248, 239, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.notice__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(202, 226, 193, 0.16);
}

.hero__art {
  position: relative;
  min-height: 520px;
  align-self: stretch;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 28px 28px 28px 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 16%, rgba(247, 242, 230, 0.34), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__art img {
  position: absolute;
  right: clamp(-170px, -10vw, -82px);
  bottom: 0;
  width: min(760px, 112%);
  max-width: none;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
  animation: floatCourse 7s ease-in-out infinite;
}

.club-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-medium);
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.club-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.phone-link {
  display: grid;
  min-width: min(100%, 288px);
  justify-items: start;
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--green-950);
  text-decoration: none;
  background: var(--cream);
}

.phone-link span {
  color: rgba(7, 31, 24, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-link strong {
  margin-top: 4px;
  font-size: 1.35rem;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 30px;
  color: rgba(251, 248, 239, 0.55);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes floatCourse {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.25deg);
  }
  50% {
    transform: translate3d(-8px, -10px, 0) rotate(0.35deg);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-bottom: 24px;
  }

  .brand {
    margin-bottom: 54px;
  }

  .hero__art {
    min-height: 330px;
    order: 2;
  }

  .hero__art::before {
    inset: 0 18px 24px;
  }

  .hero__art img {
    right: 50%;
    bottom: -18px;
    width: min(720px, 120vw);
    transform: translateX(50%);
    animation: none;
  }

  .club-card {
    align-items: stretch;
    flex-direction: column;
  }

  .phone-link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, var(--max-width));
    padding-top: 10px;
  }

  .hero {
    border-radius: 24px;
  }

  .hero__content {
    padding: 26px 22px 18px;
  }

  .brand {
    gap: 12px;
    margin-bottom: 46px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand em {
    letter-spacing: 0.22em;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .notice {
    align-items: flex-start;
  }

  .club-card {
    padding: 18px;
  }
}

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