:root {
  --purple: #895fd7;
  --purple-dark: #744ccc;
  --purple-soft: #ead7f5;
  --orange: #ff8248;
  --orange-dark: #f6753c;
  --yellow: #fff1a7;
  --yellow-soft: #fff8d0;
  --ink: #30303a;
  --muted: #65646c;
  --white: #ffffff;
  --shadow-card:
    0 0 0 1px rgba(83, 57, 122, 0.05),
    0 10px 30px rgba(83, 57, 122, 0.1),
    0 24px 60px rgba(83, 57, 122, 0.08);
  --shadow-button:
    0 1px 2px rgba(122, 69, 37, 0.12),
    0 10px 24px rgba(255, 130, 72, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 253, 241, 0.18), rgba(255, 253, 241, 0.18)),
    #fffdf1 url("assets/backgrounds/hero.jpg") center / cover no-repeat fixed;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(calc(100% - 96px), 1500px);
  margin-inline: auto;
}

.page-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
}

.site-header {
  display: flex;
  min-height: 126px;
  align-items: center;
  padding-block: 24px;
}

.logo-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 14px;
}

.logo-link img {
  width: clamp(230px, 19vw, 292px);
}

.logo-link:focus-visible,
.call-button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(137, 95, 215, 0.36);
  outline-offset: 5px;
}

.holding-page {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
  padding-block: 24px 44px;
}

.holding-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: clamp(0px, 3vw, 52px);
}

.eyebrow {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple);
  box-shadow:
    0 0 0 1px rgba(137, 95, 215, 0.08),
    0 4px 12px rgba(83, 57, 122, 0.05);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 130, 72, 0.14);
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--purple);
  font-size: clamp(58px, 5.5vw, 94px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 600;
  line-height: 1.42;
  text-wrap: pretty;
}

.contact-card {
  max-width: 680px;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.address-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  background: var(--yellow-soft);
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(83, 57, 122, 0.1);
}

.contact-icon svg,
.call-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

address {
  min-width: 0;
  font-style: normal;
}

.contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

address strong {
  display: block;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.38;
  text-wrap: pretty;
}

.call-button {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
  padding: 14px 24px 14px 26px;
  border-radius: 22px;
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-button);
  text-align: left;
  transition-property: transform, background-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.call-button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow:
    0 1px 2px rgba(122, 69, 37, 0.14),
    0 14px 30px rgba(255, 130, 72, 0.34);
}

.call-button:active {
  transform: scale(0.96);
}

.call-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.call-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.call-copy > span {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.86;
}

.call-copy strong {
  font-size: clamp(24px, 2.05vw, 32px);
  line-height: 1.1;
  white-space: nowrap;
}

.holding-visual {
  position: relative;
  min-height: min(680px, 66vh);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
  width: min(686px, 46vw);
  filter: drop-shadow(0 22px 40px rgba(83, 57, 122, 0.1));
}

.rainbow {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 31%;
  width: clamp(135px, 12vw, 197px);
}

.dog {
  position: absolute;
  z-index: 3;
  bottom: 13%;
  left: 0;
  width: clamp(108px, 10vw, 164px);
}

.flower {
  position: absolute;
  z-index: 3;
}

.flower-one {
  right: 0;
  bottom: 19%;
  width: clamp(48px, 4.5vw, 69px);
}

.flower-two {
  right: 1%;
  bottom: 35%;
  width: clamp(32px, 3vw, 45px);
}

.site-footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  color: var(--purple);
  font-size: 15px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  font-size: 17px;
}

@media (min-width: 1121px) and (max-height: 980px) {
  .site-header {
    min-height: 102px;
    padding-block: 16px;
  }

  .logo-link img {
    width: clamp(220px, 17vw, 264px);
  }

  .holding-page {
    gap: clamp(32px, 4vw, 72px);
    padding-block: 8px 18px;
  }

  .eyebrow {
    min-height: 38px;
    margin-bottom: 18px;
    padding-block: 7px;
  }

  h1 {
    font-size: clamp(56px, 4.8vw, 82px);
  }

  .lead {
    margin-block: 22px 26px;
    font-size: clamp(19px, 1.35vw, 23px);
  }

  .contact-card {
    padding: 10px;
    border-radius: 32px;
  }

  .address-block {
    grid-template-columns: 46px 1fr;
    padding: 14px 18px;
    border-radius: 22px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .call-button {
    min-height: 74px;
    margin-top: 10px;
    padding-block: 10px;
  }

  .call-icon {
    width: 42px;
    height: 42px;
  }

  .call-copy strong {
    font-size: clamp(23px, 1.8vw, 29px);
  }

  .holding-visual {
    min-height: min(590px, 61vh);
  }

  .hero-photo {
    width: min(620px, 42vw);
  }

  .site-footer {
    min-height: 62px;
    padding-block: 9px;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 56px), 900px);
  }

  .holding-page {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .holding-copy {
    max-width: 760px;
    margin-inline: auto;
    padding-left: 0;
    text-align: center;
  }

  .lead,
  .contact-card {
    margin-inline: auto;
  }

  .address-block,
  .call-button {
    text-align: left;
  }

  .holding-visual {
    min-height: 560px;
  }

  .hero-photo {
    right: 50%;
    width: min(620px, 76vw);
    transform: translateX(50%);
  }

  .rainbow {
    left: 50%;
    transform: translateX(-15%);
  }

  .dog {
    left: 8%;
  }

  .flower-one,
  .flower-two {
    right: 8%;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .container {
    width: min(calc(100% - 32px), 540px);
  }

  .site-header {
    min-height: 104px;
    justify-content: center;
    padding-block: 20px 10px;
  }

  .logo-link img {
    width: 235px;
  }

  .holding-page {
    padding-block: 24px 28px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .lead {
    margin-block: 24px 28px;
    font-size: 18px;
  }

  .contact-card {
    padding: 10px;
    border-radius: 28px;
  }

  .address-block {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 17px 16px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  address strong {
    font-size: 16px;
  }

  .call-button {
    min-height: 76px;
    padding-inline: 16px;
    border-radius: 18px;
  }

  .call-icon {
    width: 44px;
    height: 44px;
  }

  .call-copy strong {
    font-size: clamp(21px, 6.5vw, 27px);
  }

  .holding-visual {
    min-height: 390px;
  }

  .hero-photo {
    width: min(470px, 104vw);
  }

  .rainbow {
    top: 0;
    width: 118px;
  }

  .dog {
    bottom: 7%;
    left: -2%;
    width: 92px;
  }

  .flower-one {
    right: -1%;
    bottom: 16%;
    width: 48px;
  }

  .flower-two {
    right: 2%;
    bottom: 34%;
    width: 32px;
  }

  .site-footer {
    min-height: 106px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .site-footer p {
    font-size: 13px;
  }

  .site-footer a {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .address-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-icon {
    margin-inline: auto;
  }

  .call-button {
    padding-inline: 12px;
    text-align: center;
  }

  .call-icon {
    display: none;
  }

  .call-copy strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-button {
    transition-duration: 0.01ms;
  }
}
