/* Sits and Giggles Pet Care — concept demo */
:root {
  --forest: #143528;
  --forest-deep: #0c241c;
  --sage: #dce8dc;
  --sage-soft: #eef4ee;
  --meadow: #5a8f6e;
  --amber: #c9782e;
  --amber-bright: #e08a3a;
  --ink: #15201a;
  --muted: #4a5c52;
  --paper: #f4f7f3;
  --white: #ffffff;
  --line: rgba(20, 53, 40, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --banner-h: 2.25rem;
  --max: 68rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.has-norbit-demo-banner {
  padding-top: var(--banner-h);
}

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

a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--forest);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: calc(var(--banner-h) + 0.5rem);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244, 247, 243, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(244, 247, 243, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(12, 36, 28, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-link img {
  height: 3.15rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--amber);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white) !important;
  font-weight: 700;
}

.nav__cta:hover {
  background: var(--forest-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--forest);
  border-radius: 1px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--banner-h) + var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__cta {
    justify-content: center;
    margin-top: 0.75rem;
    border: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
}

.btn--amber:hover {
  background: var(--amber-bright);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}

.btn--forest:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--banner-h) - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 36, 28, 0.88) 0%, rgba(12, 36, 28, 0.72) 28%, rgba(12, 36, 28, 0.35) 52%, rgba(12, 36, 28, 0.15) 72%),
    linear-gradient(180deg, rgba(12, 36, 28, 0.35) 0%, transparent 40%, rgba(12, 36, 28, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) 0;
  max-width: 38rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem));
}

.hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(12, 36, 28, 0.45);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero__brand span {
  display: block;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-top: 0.15em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(1rem);
  animation: riseIn 0.9s var(--ease) 0.35s forwards;
}

.hero .cta-row {
  opacity: 0;
  transform: translateY(1rem);
  animation: riseIn 0.9s var(--ease) 0.5s forwards;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--sage {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(90, 143, 110, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201, 120, 46, 0.08), transparent),
    var(--sage-soft);
}

.section--forest {
  background:
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
}

.section__label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.section--forest .section__label {
  color: var(--amber-bright);
}

.section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section__lede {
  margin: 0 0 2.5rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--forest .section__lede {
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Services —— */
.services {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(even) {
  direction: rtl;
}

.service:nth-child(even) > * {
  direction: ltr;
}

.service__media {
  overflow: hidden;
  border-radius: 0.25rem;
  aspect-ratio: 4 / 3;
  background: var(--sage);
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service:hover .service__media img {
  transform: scale(1.04);
}

.service__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service__price {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--amber);
  letter-spacing: 0.01em;
}

.service__price strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest);
}

.service__copy {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

@media (max-width: 720px) {
  .service,
  .service:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* —— Why us —— */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.why-copy p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.why-copy p:last-of-type {
  margin-bottom: 0;
}

.trust-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 650;
}

.trust-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--amber-bright);
}

.why-photo {
  overflow: hidden;
  border-radius: 0.25rem;
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.25);
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-photo {
    max-width: 22rem;
    order: -1;
  }
}

/* —— How it works —— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.contact-item__label {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--amber);
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.35rem;
}

.socials a {
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
}

.socials a:hover {
  color: var(--amber);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--meadow);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--meadow);
  min-height: 1.4em;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: #9fd4b0;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__brand img {
  height: 2.4rem;
  width: auto;
  filter: brightness(1.05);
}

.site-footer__meta {
  margin: 0;
  max-width: 28rem;
  line-height: 1.5;
}
