:root {
  --gold: #f4b84a;
  --sun: #ffd982;
  --sand: #fff3dc;
  --cream: #fffaf1;
  --blue: #28a9c8;
  --deep-blue: #13788f;
  --ink: #23414a;
  --muted: #6a7a80;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(19, 120, 143, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 217, 130, 0.35), transparent 34rem),
    linear-gradient(180deg, var(--cream), #ffffff 45%, #effcff);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 184, 74, 0.22);
}

.brand img {
  width: 150px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--deep-blue);
}

nav a { transition: color 0.2s ease, transform 0.2s ease; }
nav a:hover { color: var(--gold); transform: translateY(-1px); }

.nav-button {
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(244, 184, 74, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem);
}

.hero-copy { max-width: 640px; }

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--deep-blue);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #1f5260;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: #1f5260;
}

h3 {
  font-size: 1.45rem;
  color: var(--deep-blue);
}

.intro {
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(244, 184, 74, 0.28);
}

.secondary {
  background: rgba(40, 169, 200, 0.1);
  color: var(--deep-blue);
  border: 1px solid rgba(40, 169, 200, 0.22);
}

.hero-image-card {
  position: relative;
  padding: 0.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: -1rem;
  z-index: -1;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(244,184,74,0.22), rgba(40,169,200,0.2));
}

.hero-image-card img {
  border-radius: 1.4rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 6rem);
}

.product-section { text-align: center; }
.product-section h2 { max-width: 720px; margin: 0 auto 2rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.product-card {
  min-height: 260px;
  padding: 1.5rem;
  text-align: left;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 40px rgba(19, 120, 143, 0.10);
  border: 1px solid rgba(40, 169, 200, 0.13);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--sand);
  font-size: 1.4rem;
}

.product-card p,
.split p,
.custom-box p,
.contact-section p {
  line-height: 1.7;
  color: var(--muted);
}

.product-card strong {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--deep-blue);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  background: linear-gradient(135deg, rgba(255,243,220,0.92), rgba(239,252,255,0.96));
}

.split > p { font-size: 1.15rem; margin: 0; }

.custom-box {
  margin: clamp(1rem, 4vw, 4rem) clamp(1rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fff7e5, #e7fbff);
  box-shadow: var(--shadow);
}

.custom-box p { max-width: 720px; margin: 1rem auto 1.8rem; }

.contact-section { text-align: center; }

.contact-card {
  max-width: 560px;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(19, 120, 143, 0.10);
}

.contact-card p { margin: 0.35rem 0; }
.contact-card .note { font-size: 0.9rem; color: #89979c; }

footer {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.8);
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
  .hero, .split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .brand img { width: 128px; }
  nav { font-size: 0.9rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
