:root {
  /* Sunbrella Branding Colors */
  --sunbrella-green: #65A67B;
  --sunbrella-cream: #F2E394;
  --sunbrella-peach: #F2AE72;
  --sunbrella-blue: #5B98B2;
  --sunbrella-coral: #D96459;
  --bg-sky: #f8faf8;
  --sand: #F2E394;
  --coral: #D96459;
  --sun: #F2AE72;
  --teal: #65A67B;
  --deep-blue: #2d5a6e;
  --ink: #2d3d3d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, var(--sunbrella-cream) 0%, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(91, 152, 178, 0.2) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-sky) 0%, #fffef9 35%, rgba(242, 227, 148, 0.25) 100%);
  line-height: 1.6;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
}

.brand {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--sunbrella-blue);
}

.tagline {
  margin: 0.5rem 0 0;
  color: var(--deep-blue);
  font-weight: 500;
}

main {
  padding: 0 1.25rem 3rem;
}

/* Hero shell inspired by beach reference */
.hero-shell {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 0 1.5rem;
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.14);
  background: #e9f4ff;
}

.hero-image {
  width: 100%;
  display: block;
  height: auto;
  min-height: 48vh;
  max-height: 60vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
}

.hero-brand-mark {
  top: 6%;
  left: 5%;
}

.hero-logo-text {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.06em;
  color: #f5fbff;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.55);
}

.hero-message {
  top: 18%;
  right: 6%;
  max-width: 360px;
  padding: 1.1rem 1.6rem;
  background: rgba(253, 253, 253, 0.86);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-kicker {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  color: #c53f32;
  text-align: left;
}

.hero-subline {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #314a54;
}

@media (max-width: 768px) {
  .hero-message {
    top: auto;
    bottom: 10%;
    right: 7%;
    left: 7%;
    max-width: none;
  }

  .hero-kicker {
    text-align: center;
  }
}

.story-block {
  max-width: 1120px;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: transparent;
}

.hero-block {
  grid-template-columns: 1fr;
  padding-top: 0;
  margin-bottom: 2rem;
}

/* Hero image: ~half the viewport */
.hero-image-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  min-height: 50vh;
  max-height: 55vh;
  object-fit: contain;
  object-position: center;
  display: block;
}

.story-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
}

/* Playful, water-park / Lego feel: rounded, soft, bouncy */
.playful-image {
  border-radius: 28px;
  box-shadow:
    0 6px 0 rgba(91, 152, 178, 0.2),
    0 10px 24px rgba(101, 166, 123, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playful-image:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 rgba(91, 152, 178, 0.2),
    0 14px 28px rgba(101, 166, 123, 0.22);
}

.playful-image img {
  border-radius: 28px;
  filter: saturate(1.05) contrast(1.02);
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--sunbrella-blue);
}

h1,
h2 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: var(--deep-blue);
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  text-align: center;
}

.hero-lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.story-copy p {
  margin: 0.7rem 0;
  font-size: 1.05rem;
}

.small-copy p {
  font-size: 0.95rem;
  color: var(--ink);
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--sunbrella-coral), var(--sunbrella-peach));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(217, 100, 89, 0.3);
}

.cta:hover {
  filter: brightness(1.04);
}

.site-footer {
  text-align: center;
  padding: 0.6rem 1rem 2.2rem;
  color: var(--sunbrella-blue);
  font-size: 0.88rem;
}

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

  .hero-image-wrap {
    min-height: 45vh;
    padding: 0 0.75rem;
  }

  .hero-image {
    min-height: 45vh;
    max-height: 50vh;
  }

  .hero-copy {
    padding: 0 0.75rem 1rem;
  }

  .story-image-wrap img {
    min-height: 220px;
  }
}
