:root {
  --forest: #2d706c;
  --forest-dark: #2c1b10;
  --sage: #7f7b43;
  --mint: #d9e5df;
  --cream: #f7efe3;
  --sand: #dfc49b;
  --peach: #c6571c;
  --gold: #d79a19;
  --ink: #2b190f;
  --muted: #665d52;
  --white: #fffaf1;
  --line: rgba(73, 48, 30, 0.19);
  --shadow: 0 24px 70px rgba(71, 42, 24, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--forest-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  border-bottom: 1px solid rgba(49, 89, 75, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid rgba(44, 27, 16, 0.78);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(44, 27, 16, 0.1);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--forest);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(49, 89, 75, 0.18);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--forest-dark);
  box-shadow: 0 14px 30px rgba(31, 64, 53, 0.24);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 86px;
}

.hero::before {
  position: absolute;
  top: -340px;
  left: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(49, 89, 75, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--peach);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(37px, 4.8vw, 58px);
  line-height: 1.03;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 550;
  line-height: 1.15;
}

.hero-intro {
  max-width: 585px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 31px;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 2px var(--peach);
}

.hero-art {
  position: relative;
  min-height: 535px;
}

.logo-stage {
  position: absolute;
  inset: 0 0 25px 35px;
  display: grid;
  place-items: center;
}

.logo-stage::before,
.logo-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.logo-stage::before {
  inset: 4%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 250, 241, 0.92) 0 4%, transparent 4.5%),
    linear-gradient(145deg, #e6ca9d 0%, #d8b87e 100%);
  box-shadow: var(--shadow);
}

.logo-stage::after {
  inset: -12px;
  border: 1px solid rgba(44, 27, 16, 0.12);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 93%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(44, 27, 16, 0.22);
}

.paint-stroke {
  position: absolute;
  z-index: 3;
  width: 98px;
  height: 18px;
  border-radius: 70% 18% 55% 25%;
  transform: rotate(-16deg);
}

.stroke-one {
  top: 50px;
  right: -5px;
  background: var(--peach);
}

.stroke-two {
  bottom: 65px;
  left: -12px;
  background: var(--forest);
  transform: rotate(13deg);
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1fr 0.72fr;
  margin-bottom: 49px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  background: rgba(255, 254, 250, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: 0 18px 50px rgba(49, 89, 75, 0.1);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--forest);
  color: var(--white);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.featured .service-number {
  color: #afc3b8;
}

.service-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  font-size: 22px;
}

.featured .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.service-card h3 {
  min-height: 2.3em;
  margin-bottom: 15px;
}

.service-card p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured p {
  color: #dce9e2;
}

.quote-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 18px;
  padding: 27px 31px;
  background: #eadbc6;
  border-radius: 20px;
}

.quote-note strong,
.quote-note span {
  display: block;
}

.quote-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.quote-note span,
.quote-note p {
  color: var(--muted);
  font-size: 13px;
}

.quote-note p {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.82fr 1.18fr;
}

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

.steps li {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  padding: 0 0 31px;
}

.steps li + li {
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.steps > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.steps h3 {
  margin: 1px 0 8px;
  font-size: 21px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
  grid-template-columns: 0.92fr 1.08fr;
}

.about-panel {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 52px;
  background: var(--sand);
  border-radius: 34px;
}

.about-panel::before {
  position: absolute;
  inset: 27px;
  border: 1px solid rgba(49, 89, 75, 0.18);
  border-radius: 26px;
  content: "";
}

.about-word {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 104px);
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.about-seal {
  position: absolute;
  right: -32px;
  bottom: 48px;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  align-content: center;
  padding: 20px;
  color: var(--white);
  background: var(--peach);
  border: 8px solid var(--cream);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}

.about-seal span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-seal strong {
  max-width: 90px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.about-copy {
  max-width: 520px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.signature {
  margin-top: 28px;
  color: var(--peach);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 35px;
  transform: rotate(-4deg);
  transform-origin: left;
}

.faq {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 0;
  right: 8px;
  color: var(--peach);
  content: "+";
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 0 0 80px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 1.12fr 0.88fr;
  padding: clamp(44px, 7vw, 82px);
  color: var(--white);
  background: var(--forest);
  border-radius: 36px;
}

.contact-card::before {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-card .eyebrow {
  color: #efb29c;
}

.contact-card h2 {
  max-width: 640px;
  margin-bottom: 16px;
}

.contact-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: #dce8e2;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 20px;
}

.button-light {
  color: var(--forest-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--forest-dark);
  background: var(--sand);
}

.email-link {
  color: #e5eee9;
  font-size: 13px;
  overflow-wrap: anywhere;
}

footer {
  padding: 31px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid p:last-child {
  text-align: right;
}

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

.footer-brand strong {
  font-size: 18px;
}

.footer-brand small {
  font-size: 8px;
}

@media (max-width: 900px) {
  nav,
  .site-header .button-small {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .section-heading,
  .process-grid,
  .about-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
    max-width: 570px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .process-grid,
  .faq-grid {
    gap: 35px;
  }

  .about-panel {
    width: min(600px, calc(100% - 30px));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand strong {
    font-size: 19px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-art {
    min-height: 410px;
  }

  .logo-stage {
    inset: 0 10px 20px 15px;
  }

  .paint-stroke {
    width: 70px;
    height: 13px;
  }

  .section {
    padding: 82px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .quote-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-note p {
    text-align: left;
  }

  .about-panel {
    min-height: 450px;
    padding: 38px;
  }

  .about-seal {
    right: -25px;
    width: 130px;
    height: 130px;
  }

  .contact {
    padding-bottom: 40px;
  }

  .contact-card {
    gap: 35px;
    border-radius: 26px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-grid p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
