:root {
  --color-bg: #f4efe8;
  --color-panel: #f8f4ee;
  --color-panel-strong: #f1e8dc;
  --color-ink: #1f1712;
  --color-copy: #51453d;
  --color-border: rgba(72, 52, 37, 0.14);
  --color-accent: #caa46b;
  --color-accent-soft: rgba(202, 164, 107, 0.18);
  --color-white: #fffdf9;
  --color-shadow: rgba(32, 20, 12, 0.15);
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --heading-letter-spacing: 0.08em;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --radius-sm: 1rem;
  --radius-md: 1.75rem;
  --radius-lg: 2.5rem;
  --container: min(100% - 2rem, 1420px);
  --narrow: min(100% - 2rem, 840px);
  --about-column-max: 920px;
  --about-heading-max: 100%;
  --about-copy-max: 78ch;
  --about-story-gap: clamp(2.5rem, 4vw, 3.25rem);
  --about-section-gap: clamp(3rem, 4.5vw, 4rem);
  --about-heading-gap: clamp(1.75rem, 3vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: #fff;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.98;
}

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

.narrow-shell {
  width: var(--narrow);
}

.about-story {
  display: grid;
  gap: var(--about-story-gap);
  width: 100%;
  max-width: var(--about-column-max);
  margin-inline: auto;
}

.page-about .page-hero__content {
  width: var(--container);
}

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

.skip-link:focus {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  z-index: 1000;
  background: var(--color-ink);
  color: var(--color-white);
}

.site-main {
  flex: 1 0 auto;
  padding-bottom: 0;
}

.site-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 5.75rem;
}

.site-header__brand {
  min-width: 0;
}

.custom-logo-link,
.site-title {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.custom-logo {
  max-height: 4rem;
  width: auto;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.has-overlay-header .site-header {
  position: sticky;
  inset: auto;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
}

.has-overlay-header .site-header .site-title,
.has-overlay-header .site-header .menu a,
.has-overlay-header .site-header .nav-toggle {
  color: var(--color-ink);
}

.nav-toggle {
  display: inline-flex;
  flex: 0 0 3rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(31, 23, 18, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 20px 50px rgba(17, 10, 7, 0.08);
}

.site-nav.is-open {
  display: block;
}

.menu,
.footer-menu,
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li > a,
.footer-menu a {
  display: block;
  padding: 0.72rem 0;
  font-family: var(--font-display);
  /* font-size: 0.98rem; */
  font-size: 1.0rem;
  /* font-weight: 500; */
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.menu > li > a:hover,
.menu > li > a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--color-accent);
}

.has-overlay-header .site-header .menu > li > a:hover,
.has-overlay-header .site-header .menu > li > a:focus-visible {
  color: var(--color-accent);
}

.button-primary,
.button-outline-light,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.button-primary,
.wp-block-button__link {
  background: var(--color-ink);
  color: var(--color-white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--color-white);
  background: transparent;
}

/* hero_image_brightness */
.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: #241913;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  filter: brightness(112%);
}


.home-hero {
  min-height: calc(100vh - 5.75rem);
  min-height: calc(100svh - 5.75rem);
}

.home-hero__veil,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

/* .home-hero__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 100%);
} */

.home-hero__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.03) 100%);
}

/* new-hero-image-for-division-pages */
.page-hero {
  /* min-height: 34rem; */
  min-height: clamp(34rem, 50vw, 45rem);
  /* min-height: clamp(34rem, 55vw, 60rem); */
}

/* .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 10, 7, 0.72) 0%, rgba(17, 10, 7, 0.3) 58%, rgba(17, 10, 7, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
} */

/* .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 10, 7, 0.45) 0%, rgba(17, 10, 7, 0.16) 58%, rgba(17, 10, 7, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
} */

/* * ************************* */
.page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 10, 7, 0.18) 0%, rgba(17, 10, 7, 0.06) 58%, rgba(17, 10, 7, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.06));
}

/* .page-hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(17, 10, 7, 0.12) 0%,
      rgba(17, 10, 7, 0.04) 58%,
      rgba(17, 10, 7, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.05)
    );
} */
/* *********************************** */

.home-hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(100vh - 5.75rem);
  min-height: calc(100svh - 5.75rem);
  padding-bottom: 3.25rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  color: var(--color-white);
  border-radius: 999px;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.instagram-link svg {
  width: 2rem;
  height: 2rem;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--color-accent);
  background-color: rgba(255, 250, 244, 0.12);
  transform: translateY(-1px);
}

.instagram-link:focus-visible {
  outline: 2px solid rgba(255, 250, 244, 0.85);
  outline-offset: 3px;
}

.home-hero__statement {
  width: min(100%, 68rem);
  text-align: center;
}

.home-hero__heading {
  max-width: 12ch;
  margin: 0 auto 1rem;
  color: var(--color-white);
  font-size: clamp(3rem, 8vw, 6.4rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.home-hero__subheading {
  max-width: 40rem;
  margin: 0 auto 1rem;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.home-hero__copy {
  margin: 0 auto;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.95vw, 1.7rem);
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.home-hero__social {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.home-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 34rem;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  font-weight: 600;
  text-shadow: 0 2px 3px rgba(17, 10, 7, 0.68), 0 10px 28px rgba(17, 10, 7, 0.72);
}

.page-hero__copy {
  max-width: 34rem;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(17, 10, 7, 0.8);
}

.page-hero .eyebrow {
  color: #f1c982;
  text-shadow: 0 2px 8px rgba(17, 10, 7, 0.8);
}

.is-division-page .page-hero h1 {
  max-width: 100%;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-section {
  padding: var(--space-7) 0;
}

.page-section--editorial {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.page-template-template-division .site-main,
.page-template-template-division .page-section,
.page-template-template-division .process-section,
.page-template-template-division .feature-list-section,
.page-template-template-division .cta-band--page {
  background: #fff !important;
}

.page-section--top-start {
  padding-top: 2.5rem;
}

.home-statement,
.cta-band__inner,
.feature-list-layout,
.contact-layout {
  display: grid;
  gap: var(--space-5);
}

.home-statement__copy,
.section-heading h2,
.editorial-heading,
.contact-left__heading,
.contact-card__heading,
.process-card h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-copy,
.rich-copy,
.entry-content,
.editorial-lead,
.contact-left__subtitle,
.contact-form__field label,
.process-card p,
.division-card__copy,
.division-note p {
  color: var(--color-copy);
  line-height: 1.85;
  font-size: 1.25rem;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading--left {
  text-align: left;
}

.section-copy {
  max-width: 50rem;
  margin: 0;
}

.division-grid {
  display: grid;
  gap: 1.5rem;
}

.division-card {
  position: relative;
  overflow: hidden;
  min-height: 32rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 24px 56px rgba(30, 18, 11, 0.18);
}

.division-card__media,
.division-card__overlay {
  position: absolute;
  inset: 0;
}

.division-card__media {
  background-size: cover;
  background-position: center;
  transition: transform 360ms ease, filter 360ms ease;
}

.division-card__overlay {
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.06) 0%, rgba(8, 6, 5, 0.7) 80%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.division-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 2rem;
  color: var(--color-white);
}

.division-card__eyebrow {
  margin-bottom: 0.8rem;
  color: rgba(255, 245, 232, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.division-card__title {
  display: block;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  line-height: 0.98;
}

.division-card__copy {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 248, 241, 0.84);
}

.division-card__link {
  margin-top: 1.2rem;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.division-card:hover .division-card__media,
.division-card:focus-visible .division-card__media {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.editorial-layout,
.editorial-stack {
  display: grid;
  gap: 1.25rem;
}

.about-story {
  display: grid;
  gap: var(--about-story-gap);
}

.about-story__header {
  display: grid;
  gap: 1.25rem;
}

.about-story__heading {
  max-width: var(--about-heading-max);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  margin: 0;
}

.about-story__section {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--about-section-gap);
  width: 100%;
  max-width: var(--about-copy-max);
  margin-inline: auto;
}

.about-story__section:first-of-type {
  margin-top: 0;
}

.about-story__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(63, 43, 30, 0.12);
}

.about-story__copy {
  display: grid;
  gap: var(--about-heading-gap);
}

.about-story__title {
  width: 100%;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0;
  text-align: center;
}

.about-story .rich-copy {
  max-width: 100%;
  /* font-size: 1.15rem; */
  font-size: 1.25rem;
  line-height: 1.9;
}

.about-story .rich-copy p {
  margin: 0 0 0.75rem;
  text-align: justify;
}

.page-about .page-hero {
  min-height: clamp(18rem, 42vw, 27rem);
}

.page-about .site-main > .page-section--editorial:first-of-type {
  padding-top: clamp(4.75rem, 6vw, 6rem);
}

.editorial-heading {
  font-size: clamp(2.4rem, 3vw, 4.25rem);
}

/* ****************** */
/* .editorial-lead {
  max-width: 90rem;
  font-size: 1.08rem;
} */

.editorial-lead {
  max-width: 90rem;
  font-size: 1.3rem;
}

.entry-content > * + *,
.rich-copy > * + * {
  margin-top: 1.25rem;
}

.entry-content .drose-pattern-shell,
.drose-pattern-shell {
  margin-top: 0;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 32px rgba(63, 43, 30, 0.08);
}

.entry-content .drose-pattern-shell + .drose-pattern-shell,
.entry-content .drose-pattern-shell + .wp-block-group,
.entry-content .wp-block-group + .drose-pattern-shell {
  margin-top: 1.5rem;
}

.entry-content .drose-card-grid,
.drose-card-grid {
  gap: 1.25rem;
}

.entry-content .drose-card,
.drose-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 26rem;
}

.entry-content .drose-card .wp-block-cover__inner-container,
.drose-card .wp-block-cover__inner-container {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.75rem;
}

.entry-content .drose-testimonial-grid,
.drose-testimonial-grid {
  gap: 1.25rem;
}

.entry-content .drose-testimonial,
.drose-testimonial {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 32px rgba(63, 43, 30, 0.08);
}

.drose-testimonial__meta {
  margin-bottom: 0;
  color: var(--color-copy);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-content .drose-faq-stack .wp-block-details,
.drose-faq-stack .wp-block-details {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.entry-content .drose-faq-stack .wp-block-details + .wp-block-details,
.drose-faq-stack .wp-block-details + .wp-block-details {
  margin-top: 0.85rem;
}

.entry-content .drose-faq-stack summary,
.drose-faq-stack summary {
  cursor: pointer;
  font-weight: 600;
}

.entry-content .drose-gallery-grid,
.drose-gallery-grid {
  margin-top: 1.25rem;
}

.process-grid {
  display: grid;
  gap: 1.25rem;
}

.process-card,
.contact-card,
.contact-left,
.feature-list,
.division-note {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 32px rgba(63, 43, 30, 0.08);
}

.process-card {
  padding: 1.5rem;
}

.process-card__step {
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.process-card h3 {
  font-size: 2.1rem;
}

.feature-list-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 1.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-copy);
  line-height: 1.7;
  font-size: 1.25rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.division-note {
  padding: 1.3rem 1.5rem;
}

.division-note-text {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: left;
}

.division-note-text .site-shell {
  width: var(--container);
  padding: 2rem 2.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 32px rgba(63, 43, 30, 0.08);
}

.division-note-text p {
  margin: 0;
  color: var(--color-copy);
  font-size: 1.3rem;
  line-height: 1.7;
}

.cta-band {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.cta-band__inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(41, 28, 19, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(31, 23, 18, 0.96), rgba(56, 39, 29, 0.92));
  color: var(--color-white);
}

.cta-band__inner h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta-band--page .cta-band__inner {
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 12px 32px rgba(63, 43, 30, 0.08);
  color: var(--color-ink);
}

.cta-band--page .cta-band__inner h2 {
  color: var(--color-ink);
}

.cta-band--page .cta-actions .button-primary {
  background: var(--color-ink);
  color: var(--color-white);
}

.contact-section {
  width: var(--container);
}

.contact-page-details {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: clamp(28rem, 62vh, 44rem);
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  text-align: center;
}

.contact-page-details__eyebrow {
  margin-bottom: 1.5rem;
}

.contact-page-details__company {
  margin-bottom: 1rem;
  /* font-size: clamp(1.9rem, 2.2vw, 2rem); */
  font-size: 2.32rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-page-details__subtitle {
  max-width: 42rem;
  margin: 0 auto 1.25rem;
  color: var(--color-copy);
  /* font-size: clamp(1.3rem, 1.4vw, 1.35rem); */
  font-size: 1.25rem;
  line-height: 1.8;
}

.contact-page-details__list {
  display: grid;
  gap: 0.9rem;
  width: fit-content;
  max-width: min(100%, 28rem);
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-details__item {
  display: grid;
  grid-template-columns: 1.6rem max-content;
  align-items: center;
  column-gap: 0.9rem;
}

.contact-page-details__label {
  color: var(--color-ink);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.contact-page-details__value {
  color: var(--color-ink);
  font-size: clamp(1.125rem, 1.35vw, 1.35rem);
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}

.contact-page-details__value:hover,
.contact-page-details__value:focus-visible {
  color: var(--color-accent);
}

.contact-page-details__social {
  margin-top: 0.25rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.contact-page-details .instagram-link {
  color: var(--color-ink);
}

.contact-page-details .instagram-link:hover,
.contact-page-details .instagram-link:focus-visible {
  color: var(--color-accent);
  background-color: rgba(31, 23, 18, 0.06);
}

.contact-page-details .instagram-link:focus-visible {
  outline: 2px solid rgba(31, 23, 18, 0.22);
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

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

.contact-left,
.contact-card {
  padding: 2rem;
}

.contact-left__details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-detail {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.contact-detail__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-copy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail__value {
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(51, 36, 25, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 2px solid rgba(202, 164, 107, 0.35);
  outline-offset: 1px;
  border-color: rgba(202, 164, 107, 0.6);
}

.contact-form__submit {
  justify-self: start;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form__banner {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
}

.contact-form__banner--success {
  background: rgba(104, 142, 93, 0.12);
  color: #365130;
}

.contact-form__banner--error {
  background: rgba(175, 84, 84, 0.12);
  color: #7e2929;
}

.contact-form__error {
  min-height: 1rem;
  color: #8b3636;
  font-size: 0.82rem;
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem 0 2rem;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(60, 45, 35, 0.85);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .menu > li > a {
    padding: 0 1.45rem;
    font-size: 0.96rem;
    color: inherit;
  }

  .menu > li + li {
    position: relative;
  }

  .menu > li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1.75rem;
    background: rgba(31, 23, 18, 0.12);
    transform: translateY(-50%);
  }

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

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

  .process-grid .process-card:last-child:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 899px) {
  .home-hero,
  .home-hero__content {
    min-height: calc(100svh - 5.75rem);
  }

  .home-statement,
  .feature-list-layout,
  .contact-layout,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-self: start;
  }

  .about-story {
    gap: 3.25rem;
  }

  .about-story__heading {
    max-width: 100%;
  }

  .about-story .rich-copy {
    max-width: 100%;
  }
}

@media (max-width: 767px) {

  .site-header__inner {
    min-height: 4.8rem;
  }

  .site-title {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .home-hero,
  .home-hero__content {
    min-height: calc(100svh - 4.8rem);
    padding-bottom: 2rem;
  }

  .home-hero__social {
    margin-top: 1.5rem;
  }

  .page-hero,
  .page-hero__content {
    min-height: 26rem;
  }

  .home-hero__heading {
    max-width: 100%;
    font-size: clamp(2.5rem, 11vw, 4.4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    max-width: 100%;
  }

  .about-story {
    gap: 2.75rem;
    max-width: 100%;
  }

  .about-story__heading {
    max-width: 100%;
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }

  .about-story__title {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
  }

  .about-story .rich-copy {
    font-size: 1.06rem;
    line-height: 1.85;
  }

  .page-section,
  .page-section--editorial {
    padding-top: 2.0rem;
    padding-bottom: 2.0rem;
  }

  .page-section--top-start {
    padding-top: 2rem;
  }

  .page-about .site-main > .page-section--editorial:first-of-type {
    padding-top: 4rem;
  }

  .division-card {
    min-height: 26rem;
  }

  .contact-left,
  .contact-card,
  .feature-list,
  .process-card {
    padding: 1.35rem;
  }

  .entry-content .drose-pattern-shell,
  .drose-pattern-shell {
    padding: 1.35rem;
  }
}
