:root {
  --navy: #18364a;
  --cream: #fbf7ef;
  --coral: #ef765d;
  --yellow: #f2c94c;
  --mint: #9bc9b8;
  --white: #ffffff;
  --ink-soft: #536875;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(24,54,74,.35) .6px, transparent .6px);
  background-size: 8px 8px;
}

.page-shell {
  width: min(1200px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0 48px;
}

.brand {
  display: inline-block;
  margin-bottom: 64px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  display: block;
  width: min(460px, 76vw);
  height: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: .98;
  letter-spacing: -3px;
}

.intro {
  max-width: 620px;
  margin: 30px 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.contact-card {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid var(--navy);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  box-shadow: 5px 5px 0 var(--navy);
  font-weight: 700;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover { color: var(--coral); }

address {
  margin-top: 24px;
  color: var(--ink-soft);
  font-style: normal;
}

.visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-one {
  width: 420px;
  height: 420px;
  background: var(--mint);
  right: 8%;
  top: 8%;
}

.circle-two {
  width: 175px;
  height: 175px;
  background: var(--yellow);
  left: 0;
  bottom: 3%;
}

.smile-card {
  width: min(360px, 78%);
  padding: 45px 42px;
  border: 3px solid var(--navy);
  border-radius: 36px;
  background: var(--white);
  box-shadow: 14px 14px 0 var(--coral);
  transform: rotate(3deg);
  position: relative;
  z-index: 2;
}

.spark {
  position: absolute;
  right: 28px;
  top: 18px;
  color: var(--yellow);
  font-size: 42px;
}

.face {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 34px;
  background: var(--yellow);
  position: relative;
}

.face > span {
  position: absolute;
  top: 50px;
  width: 12px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
}

.face > span:first-child { left: 38px; }
.face > span:nth-child(2) { right: 38px; }

.smile {
  position: absolute;
  width: 60px;
  height: 28px;
  left: 40px;
  bottom: 31px;
  border-bottom: 6px solid var(--navy);
  border-radius: 0 0 60px 60px;
}

.smile-card p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.15;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(24,54,74,.18);
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-top: 34px; gap: 26px; }
  .brand { margin-bottom: 48px; }
  .visual { min-height: 430px; }
  .circle-one { width: 330px; height: 330px; }
  h1 { letter-spacing: -2px; }
}

@media (max-width: 540px) {
  .page-shell { width: min(100% - 28px, 1200px); }
  .hero { padding-bottom: 28px; }
  .brand { margin-bottom: 38px; }
  .brand img { width: min(380px, 88vw); }
  h1 { font-size: 48px; }
  .intro { font-size: 16px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .contact-card span { display: none; }
  .visual { min-height: 370px; }
  .smile-card { padding: 36px 30px; }
  .smile-card p { font-size: 29px; }
  footer { flex-direction: column; gap: 8px; }
}
