:root {
  --shell: #fbf7ef;
  --foam: #fffdf8;
  --sand: #e7d6bd;
  --warm-sand: #cfae84;
  --sea-glass: #8db9ad;
  --deep-sea: #244b4e;
  --ink: #202827;
  --muted: #64706b;
  --line: rgba(64, 83, 80, 0.16);
  --shadow: 0 22px 60px rgba(55, 70, 63, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(207, 174, 132, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(141, 185, 173, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--foam), var(--shell) 44%, #f6efe4);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max-width));
  margin: 16px auto 0;
  padding: 12px 14px 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(62, 70, 65, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: -10px;
}

.brand-logo {
  display: block;
  width: 158px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  transform: translateX(-8px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-width: 76px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--deep-sea);
  background: rgba(141, 185, 173, 0.17);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--foam);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-sea);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero,
.page-hero,
.contact-hero,
.section,
.cta-section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: clamp(48px, 8vw, 96px) 0 56px;
}

.hero-content {
  order: 1;
}

.hero-art {
  position: relative;
  order: 2;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.52), rgba(255, 253, 248, 0.08)),
    radial-gradient(circle at 42% 34%, rgba(252, 238, 208, 0.98) 0 74px, transparent 76px),
    linear-gradient(160deg, #f5e7d1 0%, #f7f1e6 42%, #d7e4de 100%);
  box-shadow: var(--shadow);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  inset: auto -18% 18% -18%;
  height: 42%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 253, 248, 0.54);
}

.hero-art::after {
  inset: auto -12% -5% -12%;
  height: 34%;
  background: rgba(141, 185, 173, 0.35);
}

.sun-disc {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(224, 180, 111, 0.56);
  transform: translateX(-50%);
}

.shoreline {
  position: absolute;
  right: -30px;
  bottom: 118px;
  left: 58px;
  height: 2px;
  background: rgba(36, 75, 78, 0.22);
}

.glass-panel {
  position: absolute;
  right: 34px;
  bottom: 40px;
  width: min(62%, 310px);
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.42);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--deep-sea);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

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

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fffdf8;
  background: var(--deep-sea);
  box-shadow: 0 12px 28px rgba(36, 75, 78, 0.22);
}

.button.secondary {
  color: var(--deep-sea);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.74);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-band,
.split-section,
.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 620px;
}

.section-copy {
  max-width: 650px;
  font-size: 1.06rem;
}

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

.service-card,
.values-grid article,
.contact-panel,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 14px 38px rgba(55, 70, 63, 0.08);
}

.service-card {
  min-height: 270px;
  padding: 22px;
}

.service-number,
.timeline span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--warm-sand);
  font-weight: 700;
}

.service-card p,
.values-grid p,
.timeline p {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list p {
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.03rem;
}

.feature-list strong {
  color: var(--deep-sea);
}

.cta-section {
  margin-bottom: 72px;
  padding: clamp(42px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 28%, rgba(141, 185, 173, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(231, 214, 189, 0.38));
  box-shadow: var(--shadow);
}

.cta-section h2 {
  max-width: 760px;
}

.page-hero,
.contact-hero {
  padding: clamp(72px, 11vw, 132px) 0 clamp(52px, 7vw, 88px);
}

.page-hero h1,
.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.4vw, 4.05rem);
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid article {
  min-height: 190px;
  padding: 24px;
}

.team-section {
  border-top: 1px solid var(--line);
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 38px rgba(55, 70, 63, 0.08);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card-content {
  padding: 24px;
}

.team-card-content h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.team-card-content p:last-child {
  margin-bottom: 0;
}

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

.origin-story article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 14px 38px rgba(55, 70, 63, 0.08);
}

.origin-story h3 {
  margin-bottom: 12px;
}

.origin-story p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

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

.timeline article {
  padding: 22px;
}

.timeline span {
  margin-bottom: 36px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.contact-panel {
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 80% 0%, rgba(141, 185, 173, 0.22), transparent 14rem),
    rgba(255, 253, 248, 0.8);
}

.email-link {
  display: block;
  margin-bottom: 22px;
  color: var(--deep-sea);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-family: Newsreader, Georgia, serif;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--deep-sea);
  font-weight: 700;
}

.acknowledgement {
  max-width: none;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .hero,
  .contact-hero,
  .intro-band,
  .split-section,
  .team-intro,
  .approach-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    order: 1;
    min-height: 380px;
  }

  .hero-content {
    order: 2;
  }

  .services-grid,
  .team-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    border-radius: var(--radius);
  }

  .hero,
  .page-hero,
  .contact-hero,
  .section,
  .cta-section,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-art {
    min-height: 320px;
  }

  .services-grid,
  .values-grid,
  .team-grid,
  .origin-story,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .service-number {
    margin-bottom: 34px;
  }

  .site-footer {
    gap: 16px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
  }

  .acknowledgement {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 132px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .cta-section {
    padding: 32px 20px;
  }
}
