:root {
  --ink: #16384d;
  --ink-deep: #102c40;
  --sky: #d9f0f7;
  --turquoise: #58c7d2;
  --sun: #ffd15c;
  --blush: #ffcec0;
  --cloud: #fbfdfe;
  --paper: #f7fbfc;
  --line: rgba(22, 56, 77, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  border-radius: 0.5rem;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1200px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.3rem 0.8rem rgba(16, 44, 64, 0.12);
}

.footer-brand .brand-logo { width: 56px; height: 56px; }

nav { display: flex; align-items: center; gap: 1.75rem; font-size: 0.93rem; font-weight: 600; }
nav > a { text-decoration: none; }
nav > a:not(.nav-instagram):hover, nav > a:not(.nav-instagram):focus-visible { text-decoration: underline; text-underline-offset: 0.3rem; }
.nav-instagram { border: 1px solid var(--ink); border-radius: 999px; padding: 0.6rem 1rem; }
.nav-instagram:hover, .nav-instagram:focus-visible { background: var(--ink); color: white; }

.hero {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto 7.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy { position: relative; z-index: 1; padding: 2rem 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  color: #277a90;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow span { display: inline-block; width: 1.7rem; height: 2px; background: currentColor; }

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

h1, h2, h3 { font-family: "Fredoka", Arial, sans-serif; }

h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: var(--ink-deep);
  font-size: clamp(3.05rem, 6.2vw, 5.55rem);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 i { color: #e99273; font-style: normal; }

.hero-description { max-width: 470px; margin-bottom: 2rem; font-size: 1.1rem; line-height: 1.55; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 3.35rem;
  border-radius: 999px;
  padding: 0.75rem 1.25rem 0.75rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 0.75rem 1.5rem rgba(16, 44, 64, 0.18); }
.button-primary { background: var(--ink); color: white; }
.button span { font-size: 1.35rem; line-height: 1; }
.text-link { font-weight: 700; text-underline-offset: 0.35rem; }

.hero-note { display: flex; align-items: center; gap: 0.65rem; margin: 2.3rem 0 0; color: #527084; font-size: 0.86rem; line-height: 1.45; }
.hero-note p { margin: 0; }
.hero-note strong { color: var(--ink); }
.sun-dot { width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 0.3rem rgba(255, 209, 92, 0.24); }

.hero-visual { position: relative; min-height: 510px; isolation: isolate; }
.hero-visual img { position: absolute; z-index: 1; inset: 2.5rem 0 0 2rem; width: calc(100% - 2rem); height: calc(100% - 2.5rem); border-radius: 8.3rem 1.5rem 6rem 1.5rem; object-fit: cover; object-position: 70% center; box-shadow: 0 1.6rem 3rem rgba(16, 44, 64, 0.18); }
.shape { position: absolute; z-index: 0; }
.shape-blue { top: 0; right: -0.5rem; width: 40%; height: 30%; border-radius: 60% 40% 55% 45%; background: var(--sky); transform: rotate(18deg); }
.shape-yellow { bottom: 0; left: 0; width: 9rem; height: 9rem; border-radius: 46% 54% 43% 57%; background: var(--sun); transform: rotate(-15deg); }
.photo-caption { position: absolute; z-index: 2; right: -1rem; bottom: 2rem; max-width: 13rem; border-radius: 1rem; background: white; padding: 0.85rem 1rem; box-shadow: 0 0.75rem 1.75rem rgba(16, 44, 64, 0.12); color: var(--ink); font-family: "Fredoka", sans-serif; font-size: 0.92rem; line-height: 1.2; }
.photo-caption span { display: block; margin-bottom: 0.2rem; color: #e9917a; }

.intro { width: min(980px, calc(100% - 48px)); margin: 0 auto 3.2rem; display: grid; grid-template-columns: 0.85fr 1fr; align-items: end; gap: clamp(2rem, 8vw, 8rem); }
.eyebrow-dark { color: #e58872; }
h2 { margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; line-height: 1.03; letter-spacing: -0.045em; }
.intro-text { margin: 0; padding-bottom: 0.15rem; font-size: 1.1rem; line-height: 1.65; }

.pillars { width: min(1200px, calc(100% - 48px)); margin: 0 auto 8rem; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 1.5rem; }
.pillar { min-height: 235px; position: relative; display: grid; grid-template-rows: auto 1fr; gap: 2rem; padding: 1.75rem; }
.pillar-sun { background: var(--sun); }
.pillar-blue { background: #bfeaf1; }
.pillar-pink { background: var(--blush); }
.pillar-number { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }
.pillar h3 { margin-bottom: 0.55rem; font-size: 1.6rem; font-weight: 600; line-height: 1; letter-spacing: -0.035em; }
.pillar p { max-width: 15rem; margin-bottom: 0; font-size: 0.97rem; line-height: 1.5; }
.pillar-symbol { position: absolute; right: 1.5rem; bottom: 1rem; font-family: "Fredoka", sans-serif; font-size: 4.4rem; line-height: 1; opacity: 0.38; }

.visit { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; padding: 5.5rem max(24px, calc((100% - 1100px) / 2)); background: var(--ink); color: white; }
.visit::after { content: ""; position: absolute; z-index: 0; top: -12rem; left: -8rem; width: 27rem; height: 27rem; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 45% 55% 53% 47%; transform: rotate(-20deg); }
.visit-copy, .contact-card { position: relative; z-index: 1; }
.eyebrow-light { color: var(--sun); }
.visit h2 { max-width: 660px; margin-bottom: 1.25rem; color: white; }
.visit-copy > p:not(.eyebrow) { max-width: 30rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; }
.button-light { background: var(--sun); color: var(--ink); }
.contact-card { border-radius: 1.25rem; background: white; padding: 1.7rem; color: var(--ink); box-shadow: 0 1rem 2.5rem rgba(5, 23, 35, 0.25); }
.contact-row { display: grid; grid-template-columns: 2.25rem 1fr; gap: 0.8rem; }
.contact-icon { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--sky); color: var(--ink); font-size: 1.3rem; }
.contact-card h3 { margin: 0 0 0.3rem; font-size: 1.08rem; letter-spacing: -0.02em; }
.contact-card p { margin: 0; color: #4e6b7e; font-size: 0.92rem; line-height: 1.55; }
.contact-card a { display: inline-block; margin-top: 0.55rem; color: var(--ink); font-size: 0.87rem; font-weight: 700; text-underline-offset: 0.25rem; }
.contact-divider { height: 1px; margin: 1.35rem 0; background: var(--line); }

.site-footer { width: min(1200px, calc(100% - 48px)); min-height: 135px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #547082; font-size: 0.85rem; }
.site-footer p { margin: 0; }
.site-footer > a:not(.brand) { font-weight: 700; color: var(--ink); text-underline-offset: 0.25rem; }

@media (max-width: 800px) {
  .site-header { width: min(100% - 32px, 640px); min-height: 82px; }
  nav > a:not(.nav-instagram) { display: none; }
  .hero { width: min(100% - 32px, 640px); min-height: auto; margin-bottom: 5rem; grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-copy { padding-top: 1.7rem; }
  h1 { max-width: 600px; font-size: clamp(3.05rem, 13vw, 4.8rem); }
  .hero-visual { min-height: 430px; margin-top: 0.7rem; }
  .hero-visual img { inset: 2rem 0 0 1rem; width: calc(100% - 1rem); height: calc(100% - 2rem); border-radius: 5.5rem 1.25rem 4.2rem 1.25rem; }
  .photo-caption { right: -0.2rem; bottom: 1rem; }
  .intro { width: min(100% - 32px, 640px); grid-template-columns: 1fr; gap: 1.1rem; }
  .pillars { width: min(100% - 32px, 640px); grid-template-columns: 1fr; margin-bottom: 5rem; }
  .pillar { min-height: 180px; }
  .visit { grid-template-columns: 1fr; padding: 4.5rem 1.5rem; }
  .site-footer { width: min(100% - 32px, 640px); padding: 1.8rem 0; flex-wrap: wrap; }
}

@media (max-width: 430px) {
  .brand-logo { width: 58px; height: 58px; }
  .footer-brand .brand-logo { width: 52px; height: 52px; }
  .nav-instagram { padding: 0.52rem 0.8rem; font-size: 0.84rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 355px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
