:root {
  --ink: #151515;
  --muted: #5b5f62;
  --paper: #f5f1ea;
  --white: #fffdf8;
  --lava: #202020;
  --ember: #b84a2d;
  --sea: #11656f;
  --line: #ddd3c5;
  --shadow: 0 18px 50px rgba(22, 18, 12, 0.18);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  color: var(--white);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 47% 42% 55% 38%;
  background: var(--lava);
  transform: rotate(-9deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 6px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--ember);
  transform: rotate(-24deg);
}

.site-header.scrolled .brand-mark::before {
  background: var(--white);
}

nav a {
  padding: 8px 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72)), url("assets/gemini/fuerteventura.png");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  position: relative;
  width: min(560px, calc(100% - 48px));
  margin-left: auto;
  margin-right: 8vw;
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0aa87;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lead {
  max-width: 35rem;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-actions,
.wholesale {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary {
  background: var(--ember);
  color: var(--white);
}

.secondary {
  background: rgba(255, 253, 248, 0.12);
  color: inherit;
  border-color: currentColor;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.product-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 34px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-grid article,
.interest-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-grid article {
  min-height: 190px;
  padding: 22px;
}

.product-grid p,
.copy-block p,
.wholesale p,
footer {
  color: var(--muted);
  line-height: 1.6;
}

.product-grid span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sea);
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

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

.island-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(22, 18, 12, 0.12);
}

.island-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.island-grid h3 {
  margin: 0;
  padding: 14px 16px 16px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  background: var(--sea);
}

.interest-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #2b2b2b;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c8bbaa;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  padding: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid #c8bbaa;
  padding: 10px;
  background: #fff;
}

fieldset input {
  width: auto;
  min-height: auto;
}

.submit {
  width: 100%;
  border: 0;
}

.hidden {
  display: none;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--sea);
  font-weight: 700;
}

.wholesale {
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.wholesale > div {
  max-width: 680px;
}

footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
    gap: 8px;
  }

  nav {
    gap: 4px;
  }

  .brand span:not(.brand-mark) {
    display: none;
  }

  nav a {
    padding: 6px 5px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .product-strip,
  .split,
  .product-grid,
  .island-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 680px);
    padding: 48px 0;
  }

  fieldset {
    grid-template-columns: 1fr;
  }
}
