:root {
  --bg: #f8f6f3;
  --bg-soft: #f3f0eb;
  --panel: #ffffff;
  --panel-warm: #eee9e2;
  --ink: #403a34;
  --muted: #756d65;
  --line: #ded7ce;
  --line-strong: #ccc1b4;
  --accent: #ab9178;
  --accent-strong: #806c5b;
  --accent-soft: #e9e0d5;
  --success: #657164;
  --shadow-soft: 0 14px 30px rgba(83, 69, 56, 0.1);
  --shadow: 0 20px 48px rgba(70, 57, 46, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: none;
}

body::before {
  background: none;
}

body::after {
  background: none;
}

::selection {
  background: rgba(199, 181, 158, 0.42);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.015em;
}

header,
main,
.footer {
  width: min(1220px, 92vw);
  margin-inline: auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 0;
  padding: 9px 24px;
  border: 1px solid #ebe5dd;
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: padding 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out), border-radius 280ms var(--ease-out);
}

.top-bar.is-scrolled {
  padding-block: 10px;
  border-radius: 0;
  box-shadow: none;
}

.header-logo {
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 78px);
  border-radius: 10px;
  overflow: hidden;
}

.header-logo img {
  width: 100%;
  height: auto;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fefcf9;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.brand-name {
  font-size: clamp(1.2rem, 2.2vw, 1.52rem);
  font-weight: 700;
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 0;
  border-bottom: none;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.nav a:hover {
  color: var(--ink);
  opacity: 1;
}

.nav a.active {
  color: var(--ink);
}

main {
  padding-bottom: 40px;
  display: grid;
  gap: clamp(18px, 2.4vw, 32px);
}

main section {
  margin: 0;
  scroll-margin-top: 104px;
}

.follow-links {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.8vw, 19px) clamp(20px, 3.2vw, 34px);
  border: 1px solid #e4d9cb;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(110deg, #fdfcf9 0%, #f2ede5 55%, #eae0d3 100%);
  box-shadow: 0 12px 28px rgba(100, 78, 57, 0.08);
}

.follow-links::after {
  content: "";
  position: absolute;
  top: -132px;
  right: -34px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(170, 140, 107, 0.24);
  border-radius: 50%;
  box-shadow: -28px 30px 0 -1px rgba(255, 255, 255, 0.42), -54px 58px 0 -1px rgba(214, 197, 176, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-cover,
.portfolio-showcase {
  position: relative;
}

.hero-cover {
  padding-top: 0;
  margin-block: 0;
}

.cover-page-frame {
  width: min(1220px, 100%);
  margin-inline: auto;
  margin-block: 0;
}

.cover-page-frame img {
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.portfolio-showcase {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
}

.design-layout {
  width: min(1220px, 100%);
  margin-inline: auto;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.design-layout img {
  width: 100%;
  height: auto;
}

.pillars,
.process,
.form-section {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.pillars::before,
.process::before,
.form-section::before {
  content: none;
}

.pillars h2,
.process h2,
.cta h2,
.form-copy h2 {
  font-size: clamp(2rem, 4vw, 2.95rem);
  margin-bottom: 8px;
}

.pillars h2,
.form-copy h2 {
  margin-bottom: 0;
}

.section-head {
  max-width: 520px;
  display: grid;
  gap: 12px;
}

.form-section .section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-band {
  position: relative;
  background: #ffffff;
  padding: clamp(28px, 4.5vw, 60px) clamp(16px, 3vw, 44px);
  overflow: hidden;
}

.pillars.section-band {
  padding-inline: 0;
}

.services-image {
  margin: 0;
}

.services-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-cta {
  display: flex;
  justify-content: center;
  padding-inline: clamp(16px, 3vw, 44px);
}

.pricing-packages {
  padding-inline: 0;
  display: grid;
  gap: clamp(16px, 2.6vw, 28px);
}

.pricing-packages .section-head {
  padding-inline: clamp(16px, 3vw, 44px);
}

.pricing-image {
  margin: 0;
}

.pricing-image img {
  width: 100%;
  height: auto;
  display: block;
}


.lede {
  max-width: 980px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.pillars .grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: service;
}

.pillars {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.pillars#services {
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: clamp(18px, 3vw, 32px);
}

.pillars .section-head {
  grid-column: 1;
}

.pillars .grid {
  grid-column: 2;
}

.pillars .pricing-inline {
  grid-column: 1 / -1;
  margin-top: clamp(18px, 3vw, 32px);
}

.pillars article,
.price-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: none;
}

.pillars article:hover {
  transform: none;
}

.pillars .grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  grid-template-rows: auto auto;
  column-gap: 28px;
  row-gap: 10px;
  align-items: start;
  counter-increment: service;
  position: relative;
}

.pillars .grid article::before {
  content: counter(service, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1;
  font-size: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: rgba(0, 0, 0, 0.18);
}

.pillars .grid article h3 {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 600;
  margin: 0;
}

.pillars .grid article p,
.pillars .grid article ul {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.pillars .grid article ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.pillars .grid article ul li {
  position: relative;
  padding-left: 14px;
}

.pillars .grid article ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}

.pillars h3,
.pricing-inline h3,
.process h3,
.cta h2,
.form-copy h2 {
  font-weight: 700;
}

.pillars h3,
.pricing-inline h3,
.process h3,
.price-card h4 {
  margin-bottom: 6px;
}

.pricing-inline {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 14px;
}

.pricing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0;
}

.pricing-grid .price-card {
  height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
}

.pricing-grid .price-card h4 {
  margin-bottom: 2px;
}

.pricing-grid .price-card .price-range {
  padding-bottom: 6px;
  border-bottom: none;
}

.price-range {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.add-ons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.add-ons .price-card {
  height: 100%;
}

.add-ons-card ul,
.local-card ul {
  padding-left: 1.1rem;
}

.add-ons li + li {
  margin-top: 5px;
}

.local-card {
  margin-top: 0;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
}

.local-card .price-range {
  padding-bottom: 6px;
  border-bottom: none;
}

.card-note {
  grid-column: 1 / -1;
  font-size: 0.94rem;
  padding: 10px 0 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.process {
  background: transparent;
}

.process-header p {
  font-size: 1.02rem;
}

.steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.steps li:hover {
  transform: translateY(-3px);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 0;
  font-size: 1.16rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent-strong);
  border: none;
  background: transparent;
}

.cta {
  margin-block: clamp(1.4rem, 3vw, 2.4rem);
}

.cta-inner {
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.button {
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), filter 220ms var(--ease-out), background 220ms var(--ease-out);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ad937a, #7d6857);
  box-shadow: 0 10px 22px rgba(100, 77, 59, 0.25);
}

.button.primary::after {
  content: "→";
  font-size: 1.15em;
  line-height: 0;
  transition: transform 220ms var(--ease-out);
}

.button.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 15px 28px rgba(100, 77, 59, 0.32);
}

.button.primary:hover::after {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0);
}

.form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  background: transparent;
  align-items: start;
}

.form-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.form-copy p {
  font-size: 1.02rem;
  max-width: 36ch;
}

.form-highlights li + li {
  margin-top: 4px;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "field-name field-email"
    "field-phone field-text"
    "field-design field-goals"
    "field-size field-goals"
    "field-budget field-goals"
    "field-goal-date field-photos"
    "button button"
    "footnote footnote"
    "success success";
  column-gap: 28px;
  row-gap: 18px;
  padding: clamp(24px, 3.2vw, 40px);
  border: 1px solid rgba(112, 112, 112, 0.22);
  border-radius: 28px;
  background: #e1e1e1;
  box-shadow: none;
}

.intake-form label {
  display: grid;
  gap: 8px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #2f2f2f;
  font-family: "Cormorant Garamond", Georgia, serif;
  padding: 0;
  background: none;
  border-radius: 0;
}

.intake-form label.checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #353735;
  align-self: center;
}

.intake-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #111111;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid rgba(121, 121, 121, 0.6);
  border-radius: 16px;
  padding: 12px 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  background: #ffffff;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  min-height: 46px;
}

.intake-form textarea {
  resize: vertical;
  min-height: 210px;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: rgba(90, 90, 90, 0.7);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(160, 160, 160, 0.2);
}

.intake-form .full,
.intake-form button,
.intake-form .form-footnote,
.intake-form .form-success {
  grid-column: 1 / -1;
}

.intake-form button {
  justify-self: start;
  padding: 10px 16px;
  font-size: 0.9rem;
  grid-area: button;
}

.intake-form .button.primary {
  background: #6f6f6f;
  box-shadow: none;
  border-radius: 18px;
  letter-spacing: 0.02em;
}

.intake-form .button.primary:hover {
  transform: translateY(-1px);
  filter: none;
  box-shadow: none;
}

.intake-form button[disabled] {
  cursor: wait;
  opacity: 0.85;
}

.form-footnote {
  font-size: 0.82rem;
  color: var(--muted);
  grid-area: footnote;
}

.form-success {
  color: var(--success);
  font-weight: 600;
  grid-area: success;
}

.intake-form .field-name {
  grid-area: field-name;
}

.intake-form .field-email {
  grid-area: field-email;
}

.intake-form .field-phone {
  grid-area: field-phone;
}

.intake-form .field-text-ok {
  grid-area: field-text;
}

.intake-form .field-design-space {
  grid-area: field-design;
}

.intake-form .field-space-size {
  grid-area: field-size;
}

.intake-form .field-budget {
  grid-area: field-budget;
}

.intake-form .field-goals {
  grid-area: field-goals;
}

.intake-form .field-goal-date {
  grid-area: field-goal-date;
}

.intake-form .field-photos {
  grid-area: field-photos;
}

.intake-form .field-goals textarea {
  min-height: 220px;
}

.footer {
  margin-top: 0;
  margin-bottom: 24px;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 3vw, 30px);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border: none;
  background: #f5f1eb;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: var(--muted);
}

.footer-heading {
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-list {
  display: grid;
  gap: 7px;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  letter-spacing: 0.01em;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
  transition: color 180ms var(--ease-out);
}

.social-list {
  display: grid;
  gap: 7px;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  letter-spacing: 0.01em;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(161, 133, 103, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #5b4d40;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 11px rgba(105, 80, 56, 0.06);
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.social-icons .linktree-link {
  border-color: #8d7259;
  background: linear-gradient(135deg, #aa9076, #7d6755);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(100, 77, 59, 0.22);
}

.contact-list .icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
  opacity: 0.85;
  margin-top: 2px;
}

.social-icons .icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  opacity: 0.9;
}

.contact-list a:hover,
.social-icons a:hover {
  color: var(--accent-strong);
}

.social-icons a:hover {
  border-color: #b49778;
  background: #fffdf9;
  box-shadow: 0 7px 15px rgba(105, 80, 56, 0.12);
  transform: translateY(-1px);
}

.social-icons .linktree-link:hover {
  border-color: #755d49;
  background: linear-gradient(135deg, #a48a70, #705a49);
  color: #ffffff;
}

.social-icons a:focus-visible {
  outline: 2px solid rgba(128, 108, 91, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 920px) {
  header,
  main,
  .footer {
    width: min(94vw, 1220px);
  }

  .top-bar {
    padding: 12px 14px;
  }

  .follow-links {
    align-items: center;
  }

  .follow-links::after {
    top: -150px;
    right: -98px;
  }

  .social-icons {
    gap: 6px;
  }

  .social-icons a {
    min-height: 34px;
    gap: 5px;
    padding: 8px;
    font-size: 0.75rem;
  }

  .social-icons .icon {
    width: 15px;
    height: 15px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .pillars .grid,
  .pricing-grid,
  .add-ons,
  .form-section {
    grid-template-columns: 1fr;
  }

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

  .pillars .grid article {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .pillars .grid article::before {
    grid-column: 1;
    grid-row: 1;
  }

  .pillars .grid article h3 {
    grid-column: 1;
    grid-row: 2;
  }

  .pillars .grid article p,
  .pillars .grid article ul {
    grid-column: 1;
    grid-row: 3;
  }


  .intake-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "field-name"
      "field-email"
      "field-phone"
      "field-text"
      "field-design"
      "field-size"
      "field-budget"
      "field-goal-date"
      "field-goals"
      "field-photos"
      "button"
      "footnote"
      "success";
  }

  .steps li {
    grid-template-columns: 56px 1fr;
  }

  .step-num {
    width: 46px;
    height: 46px;
  }

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

@media (max-width: 640px) {
  body::before,
  body::after {
    width: 170px;
    height: 170px;
  }

  .top-bar {
    position: static;
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer {
    border-radius: 0 0 20px 20px;
  }

  .button.primary:hover {
    transform: none;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
