:root {
  color-scheme: light;
  --forest: #2f472f;
  --forest-dark: #1f3322;
  --forest-deep: #162616;
  --sage: #7f8f72;
  --sage-soft: #d9ddcf;
  --sage-pale: #eef0e8;
  --cream: #f6f2e8;
  --cream-2: #fbf8f0;
  --warm-white: #fffdf8;
  --stone: #a5a28f;
  --ink: #1f2b20;
  --muted: #6e7164;
  --line: #dedacd;
  --shadow: 0 22px 60px rgba(35, 44, 28, 0.13);
  --shadow-soft: 0 12px 34px rgba(31, 43, 32, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
  --container: min(1160px, calc(100% - 40px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--cream-2);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--forest-dark);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 44px 0;
}

.section[id],
.contact-strip[id] {
  scroll-margin-top: 94px;
}

.eyebrow {
  margin: 0 0 7px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.eyebrow.light {
  color: rgba(255, 253, 248, 0.76);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 17px;
  font-size: clamp(3.1rem, 7.3vw, 5.9rem);
  line-height: 0.92;
  color: var(--warm-white);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  color: var(--ink);
}

h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.editorial-summary {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--muted);
}

.editorial-text {
  color: var(--muted);
}

.editorial-text h3 {
  margin: 24px 0 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--forest-dark);
}

.editorial-text h3:first-child {
  margin-top: 0;
}

.editorial-text p {
  margin-bottom: 13px;
  line-height: 1.68;
}

.read-more {
  max-width: 650px;
  margin: 4px 0 22px;
}

.read-more-centered {
  max-width: 760px;
  margin: 18px auto 0;
}

.read-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(47, 71, 47, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.58);
  color: var(--forest-dark);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.read-more-toggle:hover,
body.is-keyboard-nav .read-more-toggle:focus {
  transform: translateY(-1px);
  border-color: rgba(47, 71, 47, 0.38);
  background: var(--warm-white);
  box-shadow: var(--shadow-soft);
}

.read-more-toggle:focus {
  outline: 0;
}

body.is-keyboard-nav .read-more-toggle:focus {
  outline: 2px solid rgba(47, 71, 47, 0.28);
  outline-offset: 3px;
}

.read-more-toggle svg,
.area-chevron {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease;
}

.read-more.is-open .read-more-toggle svg,
.area-item.is-open .area-chevron {
  transform: rotate(180deg);
}

.read-more-panel,
.area-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: height 0.42s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.28s ease, visibility 0s linear 0.42s;
}

.read-more.is-open .read-more-panel,
.area-item.is-open .area-panel {
  opacity: 1;
  visibility: visible;
  transition: height 0.42s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease, visibility 0s;
}

.read-more-inner {
  padding-top: 18px;
}

.section-heading.centered .read-more-inner {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: rgba(122, 139, 111, 0.94);
  color: var(--warm-white);
  box-shadow: 0 18px 38px rgba(10, 20, 12, 0.28);
}

.btn-primary:hover {
  background: var(--forest);
}

.btn-outline {
  border: 1px solid rgba(47, 71, 47, 0.45);
  color: var(--forest-dark);
  background: rgba(255, 253, 248, 0.45);
}

.btn-outline:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
  color: var(--warm-white);
}

.btn-solid {
  background: var(--forest);
  color: var(--warm-white);
  min-width: 178px;
  box-shadow: var(--shadow-soft);
}

.btn-solid:hover {
  background: var(--forest-dark);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  color: var(--warm-white);
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 12px 0;
  background: rgba(32, 48, 32, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(9, 18, 10, 0.16);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: currentColor;
  opacity: 0.88;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  opacity: 0.78;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.9;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(112, 132, 99, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 15px 35px rgba(11, 23, 12, 0.18);
  transition: background 0.24s ease, transform 0.24s ease;
}

.header-cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 11px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: var(--warm-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--warm-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 28%, rgba(245, 220, 146, 0.36), transparent 28%),
    linear-gradient(90deg, rgba(9, 19, 8, 0.76), rgba(20, 43, 18, 0.26) 45%, rgba(9, 19, 8, 0.62));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 12, 5, 0.34) 0%, rgba(15, 34, 13, 0.1) 40%, rgba(5, 12, 5, 0.62) 100%),
    rgba(22, 37, 18, 0.14);
}

.hero-content {
  width: min(880px, calc(100% - 42px));
  margin-top: 32px;
  text-align: center;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 27px;
  color: rgba(255, 253, 248, 0.93);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.72);
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 9px auto 0;
  background: currentColor;
  opacity: 0.6;
}

.about {
  background: var(--warm-white);
  padding-top: 32px;
  padding-bottom: 30px;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.55fr;
  align-items: center;
  gap: 56px;
}

.about-image {
  width: 80%;
  justify-self: center;
  aspect-ratio: 4 / 5;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  object-position: center;
}

.about-image img,
.approach-image img,
.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.about-decoration {
  justify-self: center;
  width: min(180px, 100%);
  opacity: 0.78;
}

.services {
  padding-top: 48px;
  padding-bottom: 54px;
  background: linear-gradient(180deg, var(--sage-pale) 0%, #f4f1e8 100%);
}

.section-heading.centered {
  text-align: center;
  margin-bottom: 34px;
}

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

.section-intro {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 0.96rem;
}

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

.service-card {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 26px 27px;
  border: 1px solid rgba(94, 105, 81, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 42px rgba(53, 58, 41, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 71, 47, 0.26);
  background: var(--warm-white);
  box-shadow: 0 24px 54px rgba(53, 58, 41, 0.12);
}

.icon-circle {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
}

.icon-circle svg,
.consult-icon svg,
.calendar-badge svg,
.contact-item svg,
.socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.service-card p {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 0;
  padding: 0 4px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.text-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.area-accordion {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.area-item {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(94, 105, 81, 0.16);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 42px rgba(53, 58, 41, 0.07);
  transition: border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.area-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.area-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.area-item:hover,
.area-item.is-open {
  border-color: rgba(47, 71, 47, 0.24);
  background: var(--warm-white);
  box-shadow: 0 22px 52px rgba(53, 58, 41, 0.1);
}

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

.area-title {
  margin: 0;
}

.area-toggle {
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.area-toggle:focus {
  outline: 0;
}

body.is-keyboard-nav .area-toggle:focus {
  outline: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px rgba(47, 71, 47, 0.18);
}

.area-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
  overflow: hidden;
}

.area-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.area-icon.area-icon--png {
  overflow: hidden;
  background: transparent;
}

.area-icon.area-icon--png img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.area-icon--png-head img {
  transform: scale(1.34);
}

.area-icon--png-cloud img {
  transform: scale(1.23);
}

.area-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.area-summary {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.48;
  color: var(--muted);
}

.area-chevron {
  justify-self: end;
  color: var(--forest);
}

.area-inner {
  padding: 0 24px 24px 100px;
}

.area-inner p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.62;
}

.approach {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #efe9dc;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.approach-image {
  height: 142px;
  overflow: hidden;
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.approach-copy p:not(.eyebrow) {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.approach-list {
  border-left: 1px solid rgba(47, 71, 47, 0.18);
  padding-left: 38px;
}

.approach-list ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.approach-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(47, 71, 47, 0.38);
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
}

.studio {
  padding-top: 24px;
  padding-bottom: 32px;
  background: var(--cream-2);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 48px;
}

.studio-copy h2 {
  max-width: 780px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 22px;
}

.consult-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.consult-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
}

.consult-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.consult-card p {
  margin-bottom: 0;
  font-size: 0.81rem;
  line-height: 1.42;
}

.studio-image {
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  justify-self: end;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.contact-strip {
  padding: 72px 0 76px;
  border-top: 1px solid rgba(47, 71, 47, 0.09);
  border-bottom: 1px solid rgba(47, 71, 47, 0.09);
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--sage-pale) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.contact-title {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: start;
}

.calendar-badge {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 71, 47, 0.2);
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
}

.calendar-badge svg {
  width: 34px;
  height: 34px;
}

.contact-title h2 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

.contact-title .editorial-summary {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-read-more {
  margin-top: 18px;
  margin-bottom: 0;
}

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

.contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid rgba(47, 71, 47, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.7);
  color: var(--forest-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(31, 43, 32, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 71, 47, 0.34);
  background: var(--warm-white);
  box-shadow: 0 18px 42px rgba(31, 43, 32, 0.11);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--forest);
}

.site-footer {
  padding: 40px 0 24px;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: rgba(255, 253, 248, 0.88);
}

.site-footer p,
.site-footer a,
.site-footer h3,
.site-footer span {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr 1.65fr;
  gap: 34px;
  align-items: start;
}

.footer-logo .brand-mark {
  color: rgba(255, 253, 248, 0.88);
}

.footer-logo .brand-text strong {
  font-size: 0.86rem;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
}

.footer-col a,
.footer-link {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  opacity: 0.85;
}

.policy-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-col a:hover,
.policy-trigger:hover {
  opacity: 1;
}

.footer-quote p {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.3;
  color: rgba(255, 253, 248, 0.9);
}

.footer-quote span {
  font-size: 0.82rem;
  opacity: 0.8;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a,
.socials span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background: rgba(255, 253, 248, 0.11);
  transform: translateY(-2px);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  position: relative;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
  opacity: 0.82;
}

.footer-bottom img {
  width: 170px;
  opacity: 0.3;
  filter: brightness(0) invert(1);
}

.mobile-sticky-cta {
  display: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 12, 0.58);
  backdrop-filter: blur(10px);
}

.policy-modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(47, 71, 47, 0.14);
  border-radius: 28px;
  background: var(--warm-white);
  box-shadow: 0 35px 90px rgba(8, 18, 9, 0.28);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.28s ease;
}

.policy-modal.is-open .policy-modal-card {
  transform: translateY(0) scale(1);
}

.policy-modal-content {
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: clamp(30px, 5vw, 46px);
  padding-right: clamp(30px, 5vw, 52px);
}

.policy-modal-content h2 {
  margin-bottom: 18px;
  padding-right: 42px;
}

.policy-modal-content h3 {
  margin: 24px 0 8px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--forest-dark);
}

.policy-modal-content p,
.policy-modal-content li {
  font-size: 0.93rem;
  line-height: 1.68;
}

.policy-modal-content p {
  margin-bottom: 13px;
}

.policy-modal-content ul {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
  padding-left: 20px;
  color: var(--muted);
}

.policy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 71, 47, 0.14);
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest-dark);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.policy-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 71, 47, 0.32);
  background: var(--warm-white);
}

.policy-modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 34px, 1160px);
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 0.77rem;
  }

  .header-cta {
    padding-inline: 18px;
  }

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

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

  .area-accordion {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .area-item {
    grid-column: span 2;
  }

  .area-item:nth-child(4) {
    grid-column: span 2;
  }

  .area-item:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .area-toggle {
    min-height: 118px;
    padding: 22px;
  }

  .area-inner {
    padding-right: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.75rem;
    letter-spacing: 0.23em;
  }

  .brand-text small {
    font-size: 0.55rem;
    letter-spacing: 0.34em;
  }

  .nav-toggle {
    display: block;
    z-index: 102;
  }

  .primary-nav {
    position: fixed;
    top: 73px;
    left: 16px;
    right: 16px;
    width: auto;
    justify-self: stretch;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 253, 248, 0.13);
    border-radius: 22px;
    background: rgba(32, 48, 32, 0.96);
    box-shadow: 0 22px 60px rgba(8, 18, 9, 0.28);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

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

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: rgba(255, 253, 248, 0.08);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 0 76px;
    background-position: 58% center;
  }

  .hero-content {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .about-grid,
  .approach-grid,
  .studio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 24px;
  }

  .about-image {
    width: min(80%, 384px);
  }

  .about-decoration {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 130px;
    opacity: 0.45;
  }

  .approach-grid {
    gap: 24px;
  }

  .approach-image {
    order: -1;
    height: 225px;
  }

  .approach-list {
    border-left: 0;
    padding-left: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(47, 71, 47, 0.16);
  }

  .studio-grid {
    align-items: start;
    gap: 26px;
  }

  .consult-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .area-accordion {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .area-item {
    grid-column: span 2;
  }

  .area-item:nth-child(4) {
    grid-column: span 2;
  }

  .area-item:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .studio-image {
    width: min(72%, 340px);
    justify-self: center;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-items {
    max-width: 720px;
  }

  .footer-grid {
    gap: 26px;
  }

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

  .footer-bottom img {
    align-self: flex-end;
    width: 132px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 520px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding: 38px 0;
  }

  .section[id],
  .contact-strip[id] {
    scroll-margin-top: 82px;
  }

  .header-inner {
    width: min(100% - 24px, 520px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text strong {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .brand-text small {
    font-size: 0.5rem;
    letter-spacing: 0.26em;
  }

  .hero {
    min-height: 100svh;
    padding: 106px 0 84px;
    place-items: end center;
  }

  .hero-media img {
    object-position: center;
  }

  .hero::before {
    background:
      radial-gradient(circle at 62% 25%, rgba(245, 220, 146, 0.28), transparent 28%),
      linear-gradient(180deg, rgba(9, 19, 8, 0.52), rgba(18, 42, 17, 0.24) 37%, rgba(9, 19, 8, 0.82));
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    text-align: left;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 14vw, 3.55rem);
    line-height: 0.9;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-bottom: 22px;
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .scroll-hint {
    display: none;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .about,
  .approach,
  .studio {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .services {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .about-image,
  .approach-image,
  .studio-image {
    border-radius: 20px;
  }

  .about-image {
    width: min(80%, 384px);
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .read-more {
    max-width: none;
  }

  .read-more-toggle {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
  }

  .read-more-inner {
    padding-top: 16px;
  }

  .editorial-text h3 {
    margin-top: 22px;
  }

  .service-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "icon title"
      "icon text"
      "icon link";
    column-gap: 16px;
    align-items: start;
    text-align: left;
    padding: 22px;
    border-radius: 18px;
  }

  .service-card .icon-circle {
    grid-area: icon;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .service-card .icon-circle svg {
    width: 25px;
    height: 25px;
  }

  .service-card h3 {
    grid-area: title;
    margin-bottom: 7px;
    font-size: 1.2rem;
  }

  .service-card p {
    grid-area: text;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .service-card .text-link {
    grid-area: link;
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .area-accordion {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-item,
  .area-item:nth-child(4),
  .area-item:nth-child(5) {
    grid-column: auto;
  }

  .area-item:hover {
    transform: none;
  }

  .area-toggle {
    min-height: 118px;
    grid-template-columns: 50px minmax(0, 1fr) 20px;
    gap: 14px;
    padding: 20px;
  }

  .area-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .area-icon svg,
  .area-icon img {
    width: 34px;
    height: 34px;
  }

  .area-name {
    font-size: 1.15rem;
  }

  .area-summary {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .area-inner {
    padding: 0 20px 22px;
  }

  .area-inner p {
    font-size: 0.9rem;
  }

  .approach-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .approach-list ul {
    gap: 12px;
  }

  .consult-card {
    grid-template-columns: 48px 1fr;
    padding: 14px;
    border: 1px solid rgba(47, 71, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.7);
  }

  .contact-strip {
    padding: 46px 0 98px;
  }

  .contact-title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar-badge {
    width: 60px;
    height: 60px;
  }

  .calendar-badge svg {
    width: 28px;
    height: 28px;
  }

  .contact-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-item {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(238, 240, 232, 0.6);
    font-size: 0.78rem;
  }

  .contact-grid .btn-solid {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  }

  .footer-col {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  }

  .footer-col h3 {
    margin-bottom: 10px;
  }

  .socials a {
    width: 38px;
    height: 38px;
  }

  .policy-modal {
    padding: 14px;
  }

  .policy-modal-card {
    max-height: calc(100svh - 28px);
    border-radius: 22px;
  }

  .policy-modal-content {
    max-height: calc(100svh - 28px);
    padding: 28px 22px;
  }

  .policy-modal-content h2 {
    padding-right: 38px;
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .policy-modal-content p,
  .policy-modal-content li {
    font-size: 0.9rem;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--forest-dark);
    color: var(--warm-white);
    box-shadow: 0 16px 44px rgba(8, 18, 9, 0.28);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
}

@media (max-width: 380px) {
  .brand-text strong {
    max-width: 155px;
  }

  h1 {
    font-size: 2.88rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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