:root {
  --cream: #fff8ea;
  --cream-deep: #f3e7cf;
  --blush: #f7d9ce;
  --blush-soft: #fff0e9;
  --green: #143f34;
  --green-soft: #2f6652;
  --blue: #1f6f86;
  --brown: #7a573b;
  --brown-dark: #463323;
  --orange: #d9822b;
  --text: #263329;
  --muted: #667365;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(20, 63, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 56px);
  background: rgba(255, 248, 234, 0.94);
  border-bottom: 1px solid rgba(122, 87, 59, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(20, 63, 52, 0.22);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.section {
  padding: clamp(64px, 10vw, 112px) clamp(18px, 5vw, 56px);
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.page-section {
  min-height: calc(100vh - 158px);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(20, 63, 52, 0.9), rgba(31, 111, 134, 0.84)),
    url("assets/hero-texture.png") center / cover,
    var(--green);
  color: var(--cream);
}

.hero-inner {
  padding: clamp(28px, 6vw, 64px) 0;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb05d;
}

h1,
h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
}

h2 {
  color: var(--green);
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.page-title {
  color: var(--green);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

p {
  max-width: 68ch;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

figure {
  margin: 0;
}

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

.mission-statement {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 248, 234, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero .button {
  border-color: rgba(255, 248, 234, 0.42);
  color: var(--cream);
}

.hero .button:hover,
.button-accent {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--brown-dark);
}

.section-soft {
  background: var(--cream-deep);
}

.waiu-section {
  background:
    linear-gradient(180deg, var(--blush-soft), var(--cream) 56%, var(--cream-deep));
}

.waiu-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.waiu-copy {
  max-width: 720px;
}

.waiu-section .section-label {
  color: #bd6b4d;
}

.waiu-portrait,
.waiu-product {
  overflow: hidden;
  border: 1px solid rgba(122, 87, 59, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(122, 87, 59, 0.16);
}

.waiu-portrait {
  transform: rotate(1deg);
}

.waiu-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.waiu-portrait figcaption {
  padding: 12px 14px;
  color: var(--brown-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.waiu-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(38px, 7vw, 72px);
}

.waiu-visuals article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(122, 87, 59, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(122, 87, 59, 0.09);
}

.waiu-visuals h2 {
  margin-top: 16px;
  color: var(--brown-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.waiu-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: inset 0 0 0 8px rgba(255, 248, 234, 0.64);
}

.pump-shape {
  position: relative;
  width: 34px;
  height: 42px;
  border-radius: 17px 17px 11px 11px;
  background: var(--green);
}

.pump-shape::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -12px;
  width: 18px;
  height: 16px;
  border-radius: 14px 14px 8px 8px;
  background: var(--orange);
}

.pump-shape::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 4px solid var(--cream);
}

.app-icon {
  background: #dfeee8;
}

.app-icon span {
  width: 34px;
  height: 46px;
  border: 4px solid var(--green);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 82%, var(--orange) 0 3px, transparent 4px),
    var(--cream);
}

.waiu-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(48px, 8vw, 88px);
}

.waiu-product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.waiu-note {
  padding: clamp(24px, 4vw, 42px);
  border-left: 4px solid var(--orange);
  background: rgba(255, 248, 234, 0.72);
}

.waiu-note h2 {
  max-width: 11ch;
  color: var(--brown-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.kaiaulu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.94), rgba(255, 248, 234, 0.88)),
    url("assets/kaiaulu/courtyard-market.png") center / cover fixed,
    var(--cream);
}

.kaiaulu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 63, 52, 0.08), transparent 44%);
}

.kaiaulu-section > .section-inner {
  position: relative;
  z-index: 1;
}

.kaiaulu-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.kaiaulu-overview article,
.kaiaulu-impact {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(20, 63, 52, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.78);
  box-shadow: 0 18px 44px rgba(20, 63, 52, 0.08);
}

.kaiaulu-overview h2 {
  color: var(--green);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.kaiaulu-leadership {
  margin-top: 32px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(20, 63, 52, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.78);
  box-shadow: 0 18px 44px rgba(20, 63, 52, 0.08);
}

.kaiaulu-leadership h2 {
  color: var(--green);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.kaiaulu-simple {
  margin-top: 32px;
}

.simple-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.simple-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(20, 63, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green);
  font-weight: 700;
}

.kaiaulu-impact {
  margin-top: 28px;
  border-left: 4px solid var(--orange);
}

.kaiaulu-impact p {
  margin: 0;
  color: var(--brown-dark);
  font-weight: 700;
}

.kaiaulu-closing {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.86);
}

.kaiaulu-closing p {
  margin: 0;
  color: var(--brown-dark);
  font-weight: 800;
}

.kaiaulu-gallery {
  margin-top: 40px;
}

.vision-note {
  margin-bottom: 18px;
  padding: clamp(18px, 3vw, 26px);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.86);
  box-shadow: 0 14px 34px rgba(20, 63, 52, 0.08);
}

.vision-note p:last-child {
  margin-top: 8px;
  color: var(--brown-dark);
  font-weight: 700;
}

.kaiaulu-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(122, 87, 59, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.kaiaulu-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-feature img {
  aspect-ratio: 16 / 9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.kaiaulu-gallery figcaption {
  display: grid;
  gap: 4px;
  min-height: 94px;
  place-items: center;
  padding: 16px 18px;
  color: var(--brown-dark);
  text-align: center;
  line-height: 1.35;
}

.kaiaulu-gallery figcaption em {
  color: #bd6b4d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.kaiaulu-gallery figcaption strong {
  color: var(--green);
  font-size: 1rem;
}

.kaiaulu-gallery figcaption span {
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  background: var(--green);
  color: var(--cream);
}

.contact-section h2 {
  color: var(--cream);
}

.contact-section .page-title {
  color: var(--cream);
}

.contact-section p {
  color: rgba(255, 248, 234, 0.88);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  align-items: start;
  gap: clamp(28px, 6vw, 72px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 234, 0.32);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 248, 234, 0.95);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.contact-form .button {
  width: fit-content;
  cursor: pointer;
}

.form-note {
  margin-top: 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 0.92rem;
}

.email-link {
  display: inline-block;
  margin-top: 22px;
  color: #ffb05d;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 56px);
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
}

.site-footer p {
  max-width: none;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav a,
  .button {
    flex: 1 1 auto;
  }

  .hero {
    min-height: auto;
  }

  .waiu-intro,
  .waiu-visuals,
  .waiu-story {
    grid-template-columns: 1fr;
  }

  .waiu-portrait {
    transform: none;
  }

  .waiu-story {
    margin-top: 42px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .kaiaulu-overview {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .brand {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 220px;
    line-height: 1.25;
  }

  .nav a,
  .button {
    width: 100%;
  }
}
