:root {
  --pink: #f7c9d4;
  --pink-dark: #d98da1;
  --pink-deep: #efb5c4;
  --brown: #5a3828;
  --brown-dark: #3f2519;
  --brown-soft: #8a6552;
  --cream: #fff8f1;
  --cream-dark: #f3e4d6;
  --white: #ffffff;
  --text: #332118;
  --muted: #72594b;
  --shadow: 0 18px 45px rgba(90, 56, 40, 0.14);
  --shadow-soft: 0 12px 28px rgba(90, 56, 40, 0.08);
  --radius: 28px;
}

/* Global reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  width: 100%;
  display: block;
}

.container {
  width: min(92%, 1120px);
  margin: 0 auto;
}

/* Accessibility */

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 100;
  background: var(--brown);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 56, 40, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  margin-top: 2px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--brown-soft));
  box-shadow: 0 10px 22px rgba(217, 141, 161, 0.35);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--brown);
  font-weight: 750;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--pink-dark);
}

/* Typography */

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--brown);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 201, 212, 0.65);
  color: var(--brown);
  font-weight: 850;
  font-size: 0.9rem;
}

/* Shared hover treatment */

.hover-box,
.card,
.trust-item,
.area-chip {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.hover-box:hover,
.card:hover,
.trust-item:hover {
  transform: translateY(-5px);
  background: #fff4f7;
  border-color: rgba(217, 141, 161, 0.35);
  box-shadow: 0 18px 38px rgba(90, 56, 40, 0.14);
}

/* Buttons */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font: inherit;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button.primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(90, 56, 40, 0.24);
}

.button.primary:hover {
  background: var(--brown-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--brown);
  border: 1px solid rgba(90, 56, 40, 0.12);
}

.full-button {
  width: 100%;
  margin-top: 4px;
}

/* Hero */

.hero {
  padding: 80px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-image-card {
  position: relative;
  padding: 16px;
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--pink);
  z-index: -1;
}

/*
  This image file has black space baked into the bottom.
  These settings zoom the image slightly and crop from the top,
  so the black bottom does not show.
*/
.hero-image-card img {
  position: absolute;
  top: 16px;
  left: 50%;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  max-width: none;
  object-fit: cover;
  object-position: center 34%;
  transform: translateX(-50%) scale(1.22);
  transform-origin: center top;
  border-radius: 26px;
}

/* Sections */

.section {
  padding: 72px 0;
}

.services-section {
  padding-top: 36px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Services */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(90, 56, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.card.featured {
  background: linear-gradient(180deg, #ffffff, #fff0f4);
  border-color: rgba(217, 141, 161, 0.36);
}

.card.overnight {
  background: linear-gradient(180deg, #ffffff, #f5eadf);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--pink);
  font-size: 1.5rem;
  transition: background 0.2s ease;
}

.card:hover .card-icon {
  background: var(--pink-deep);
}

.price {
  margin: 14px 0 16px;
  color: var(--brown);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* Areas section */

.areas-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 212, 0.28), transparent 36%),
    linear-gradient(180deg, #fff8f1 0%, #fdf1f4 100%);
  overflow: hidden;
}

.areas-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(247, 201, 212, 0.28);
  filter: blur(6px);
}

.areas-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.areas-content {
  padding: 6px 0;
}

.areas-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 26px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  border: 1px solid rgba(90, 56, 40, 0.1);
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(90, 56, 40, 0.06);
}

.area-chip:hover {
  background: var(--pink);
  border-color: rgba(217, 141, 161, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(90, 56, 40, 0.12);
}

.areas-highlight {
  align-self: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(90, 56, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.areas-highlight-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 201, 212, 0.55);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 850;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-pill:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}

.areas-highlight p {
  color: var(--muted);
  margin-bottom: 18px;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
}

.areas-list li:last-child {
  margin-bottom: 0;
}

.areas-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--pink-dark);
  font-weight: 900;
}

/* About */

.about-section {
  background: linear-gradient(
    180deg,
    rgba(247, 201, 212, 0.25),
    rgba(255, 248, 241, 0)
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 54px;
  align-items: stretch;
}

.about-image {
  display: flex;
  height: 100%;
  padding: 14px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.about-copy {
  padding: clamp(32px, 5vw, 52px);
  border-radius: 36px;
  background: var(--white);
  border: 1px solid rgba(90, 56, 40, 0.08);
  box-shadow: 0 10px 30px rgba(90, 56, 40, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 16px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Trust strip */

.trust-section {
  padding-top: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(90, 56, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.trust-item:hover strong {
  color: var(--brown-dark);
}

.trust-item span {
  color: var(--muted);
}

/* Contact */

.contact-section {
  background: var(--brown);
  color: var(--white);
}

.contact-section .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section p {
  opacity: 0.86;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hidden {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--brown);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(90, 56, 40, 0.18);
  border-radius: 15px;
  padding: 13px 14px;
  background: var(--cream);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(247, 201, 212, 0.75);
  border-color: var(--pink-dark);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */

footer {
  padding: 26px 0;
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.site-credit {
  width: 100%;
  font-size: 0.86rem;
  opacity: 0.75;
}

/* Thank you page */

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--cream);
  padding: 40px 0;
}

.thank-you-card {
  max-width: 700px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 26px;
}

/* Responsive */

@media (max-width: 1050px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 44px;
  }

  .areas-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 380px 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding: 56px 0 28px;
  }

  .hero-image-card {
    max-width: 560px;
  }

  .about-image {
    max-width: 430px;
  }

  .about-image img {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(90%, 1120px);
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 58px 0;
  }

  .services-section {
    padding-top: 30px;
  }

  .cards,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .about-image {
    border-radius: 28px;
  }

  .hero-image-card img,
  .about-image img {
    border-radius: 22px;
  }

  .hero-image-card img {
    transform: translateX(-50%) scale(1.28);
    object-position: center 32%;
  }

  .about-image img {
    min-height: 380px;
  }

  .area-tags {
    gap: 10px;
  }

  .area-chip {
    width: 100%;
  }

  .areas-highlight {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-credit {
    width: auto;
  }
}