/* Studios11 — Figma: Studios-11-website (vgFSmQBcLJVLHhZtt42LIL) */

:root {
  --brand: #60160b;
  --brand-soft: #8b3829;
  --glow-a: #b04e40;
  --glow-b: #913b2e;
  --glow-c: #c14e3d;
  --white: #ffffff;
  --max: 1440px;
  --font-ui: "Roboto", system-ui, sans-serif;
  --font-logo: "Jost", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--brand);
  background: var(--white);
  min-height: 100vh;
}

body.is-nav-open {
  overflow: hidden;
}

@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* —— Header —— */
.site-header {
  position: relative;
  z-index: 20;
  padding: 98px 115px 0;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    padding: 24px 5vw 0;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 16px max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  }

  .brand-text,
  .brand-num {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .brand-icon {
    width: clamp(36px, 10vw, 53px);
  }
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .header-shell {
    flex-wrap: wrap;
  }

  .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-figma {
    flex: 1 1 100%;
  }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand);
}

.brand-icon {
  width: 53px;
  height: auto;
  display: block;
}

.brand-text {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 35px;
  line-height: 1;
}

.brand-num {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 35px;
  letter-spacing: -0.095em;
  line-height: 1;
  margin-left: 4px;
}

.nav-figma-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28px 40px;
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-size: 30px;
  line-height: 22px;
}

.nav-figma-list a {
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

.nav-figma-list a:hover {
  opacity: 0.85;
}

.nav-figma-list a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--brand);
  border-radius: 10px;
  flex-shrink: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-soft);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-figma {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-nav-open .nav-figma {
    max-height: min(70vh, 420px);
    overflow-y: auto;
  }

  .nav-figma-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    line-height: 1.3;
  }

  .nav-figma-list li {
    border-bottom: 1px solid rgba(96, 22, 11, 0.12);
  }

  .nav-figma-list li:last-child {
    border-bottom: 0;
  }

  .nav-figma-list a {
    display: flex;
    align-items: center;
    padding: 14px 4px;
    min-height: 44px;
    white-space: normal;
  }

  .nav-figma-list a[aria-current="page"] {
    text-underline-offset: 4px;
  }
}

@media (min-width: 769px) {
  .nav-figma {
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-figma {
    transition: none;
  }

  .nav-toggle-bar {
    transition: none;
  }
}

.page-content {
  padding: 0;
}

/* —— Home hero —— */
.home-page {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: clamp(420px, 75vw, 640px);
  padding: 0 0 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  top: -120px;
  height: 120%;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3eceb 12%,
    #d4a59a 35%,
    #9a4a3c 62%,
    var(--brand) 88%
  );
  z-index: 0;
}

.hero-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-decor--a {
  left: -8%;
  top: 4%;
  width: 55%;
  max-width: 640px;
}

.hero-decor--b {
  left: -12%;
  top: -2%;
  width: 60%;
  max-width: 720px;
  opacity: 0.95;
}

.hero-wave {
  width: 100%;
  height: auto;
  display: block;
}

.hero-decor--lines {
  right: -6%;
  top: 18%;
  width: min(72%, 1110px);
  z-index: 2;
}

.hero-line-art {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-6.5deg);
  opacity: 0.95;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 12vw, 120px) max(16px, 5%) 0;
  max-width: 100%;
}

.hero-title {
  margin: 0 0 32px auto;
  max-width: 980px;
  font-size: clamp(2.25rem, 5.5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-align: right;
  color: var(--brand);
}

.hero-sub {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.35rem, 2.8vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--brand);
}

@media (max-width: 768px) {
  .hero-stage {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-gradient {
    top: -60px;
    height: 110%;
  }

  .hero-title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: clamp(1.1rem, 4.2vw, 1.5rem);
  }

  .hero-decor--a {
    left: -18%;
    width: 75%;
    opacity: 0.85;
  }

  .hero-decor--b {
    left: -22%;
    width: 82%;
    opacity: 0.75;
  }

  .hero-decor--lines {
    opacity: 0.28;
    right: -28%;
    top: 10%;
    width: min(88%, 1110px);
  }
}

@media (max-width: 480px) {
  .hero-decor--a,
  .hero-decor--b {
    opacity: 0.55;
  }

  .hero-decor--lines {
    opacity: 0.2;
  }

  .services-panel {
    margin-top: -24px;
  }
}

/* —— Services (home) —— */
.services-panel {
  position: relative;
  padding: 48px 0 100px;
  margin-top: -40px;
  background: linear-gradient(180deg, #60160b 0%, #4a1209 45%, #60160b 100%);
}

.services-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services-lines-v {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: min(1033px, 90%);
  height: auto;
  opacity: 0.9;
}

.services-lines-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 12%;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.services-inner {
  position: relative;
  z-index: 1;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 100px);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-copy {
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 3.2rem);
  line-height: 1.2;
  text-align: center;
  color: var(--white);
}

.service-copy p {
  margin: 0;
}

.service-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

.service-glow {
  position: absolute;
  border-radius: 35px;
  filter: blur(12px);
  opacity: 0.85;
  z-index: 0;
  inset: 8px;
}

.service-glow--a {
  background: var(--glow-a);
}

.service-glow--b {
  background: var(--glow-b);
}

.service-glow--c {
  background: var(--glow-c);
}

.service-img {
  position: relative;
  z-index: 1;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(96, 22, 11, 0.25);
}

.service-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .services-inner {
    padding: 0 max(16px, 5%);
  }

  .services-panel {
    padding: 32px 0 72px;
  }
}

@media (max-width: 480px) {
  .service-copy {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }

  .service-visual {
    max-width: min(100%, 360px);
  }
}

/* —— CTA —— */
.cta-section {
  text-align: center;
  padding: 24px 16px 64px;
  background: linear-gradient(180deg, #60160b 0%, #4a1209 45%, #60160b 100%);
}

/* Text label (git-button.svg export was shape-only — no typography) */
/* Figma git button: 466×112, “Get in Touch” Roboto ExtraBold ~55px, not italic */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: min(280px, 88vw);
  max-width: min(466px, 92vw);
  min-height: 112px;
  padding: 0 24px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.35rem, 5.5vw, 3.4375rem);
  letter-spacing: 0.1px;
  border-radius: 56px;
  background: linear-gradient(
    90deg,
    #c62d17 0%,
    #861605 58.65%,
    #861605 100%
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
}

.cta-button:hover {
  filter: brightness(1.08);
}

.cta-button:active {
  transform: scale(0.99);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.cta-button__label {
  display: block;
}

@media (max-width: 600px) {
  .cta-button {
    min-height: 56px;
    padding: 18px 28px;
  }
}

/* —— Footer —— */
.site-footer--figma {
  background: var(--brand);
  color: var(--white);
  padding: 56px 5% 32px;
  margin-top: 0;
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}

.footer-brand-link:hover {
  opacity: 0.92;
}

.footer-brand-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-logo .brand-text,
.footer-logo .brand-num {
  color: var(--white);
  font-size: 20px;
}

.footer-logo .brand-num {
  font-size: 20px;
  letter-spacing: -0.08em;
}

.footer-tagline {
  font-size: 25px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.24;
  max-width: 325px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.24;
}

.footer-heading-link {
  color: inherit;
  text-decoration: none;
}

.footer-heading-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-heading-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 25px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.24;
}

.footer-list li + li {
  margin-top: 4px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  text-align: center;
  margin: 48px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer--figma {
    padding: 40px max(16px, 5%) 28px;
  }

  .footer-tagline,
  .footer-heading,
  .footer-list {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }

  .footer-legal {
    margin-top: 32px;
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
}

/* —— Figma inner pages (About, Services, Contact) —— */
.page-figma {
  position: relative;
  min-height: min(100vh, 1200px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-figma {
    min-height: auto;
  }

  .page-figma-inner {
    padding: 24px max(16px, 5%) 56px;
  }

  .page-figma-title {
    margin-bottom: 16px;
  }

  .page-figma-intro,
  .page-figma-lead {
    margin-bottom: 32px;
  }
}

.page-figma-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-figma-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 80% at 50% 0%,
    #ffffff 0%,
    #e8d4cf 18%,
    #b87a6f 42%,
    #60160b 78%,
    #3d0e07 100%
  );
}

.page-figma-lines-v {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  width: min(1033px, 95%);
  height: auto;
  opacity: 0.55;
}

.page-figma-lines-h {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.45;
}

.page-figma-lines-h--a {
  top: 18%;
}

.page-figma-lines-h--b {
  top: 36%;
}

.page-figma-inner {
  position: relative;
  z-index: 1;
  padding: 32px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-figma-title {
  margin: 0 0 24px;
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--brand);
}

.page-figma-intro {
  margin: 0 0 48px;
  max-width: 1143px;
  font-size: clamp(1.25rem, 2.5vw, 3.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--brand);
}

.page-figma-lead {
  margin: 0 0 48px;
  max-width: 1143px;
  font-size: clamp(1.35rem, 2.8vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--brand);
}

/* About */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.about-frost-card {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  border-radius: 45px;
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.25);
}

.about-frost-card__icon {
  position: relative;
  width: 171px;
  height: 171px;
  margin: 0 auto 20px;
}

.about-frost-card__ring {
  position: absolute;
  inset: 0;
  width: 171px;
  height: 171px;
  object-fit: contain;
}

.about-frost-card__glyph {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 164px;
  height: 164px;
  object-fit: contain;
}

.about-frost-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
}

.about-frost-card p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.55rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--brand);
}

@media (max-width: 480px) {
  .about-frost-card {
    padding: 1.5rem 1.1rem 1.75rem;
    border-radius: 32px;
  }

  .about-frost-card__icon,
  .about-frost-card__ring {
    width: 140px;
    height: 140px;
  }

  .about-frost-card__glyph {
    width: 132px;
    height: 132px;
  }
}

/* Services page grid */
.page-figma-inner--services {
  padding-bottom: 120px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
  margin-top: 8px;
}

.svc-item {
  text-align: center;
}

.svc-item__icons {
  position: relative;
  width: 55px;
  height: 55px;
  margin: 0 auto 16px;
}

.svc-item__icons .svc-ring {
  position: absolute;
  inset: 0;
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.svc-item__icons .svc-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.svc-icon-single {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.svc-item h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.24;
}

.svc-item p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.45rem);
  font-weight: 300;
  line-height: 1.25;
}

.svc-item--top h3 {
  color: var(--brand);
}

.svc-item--top p {
  color: var(--brand);
}

.svc-item--bottom h3,
.svc-item--bottom p {
  color: #ffffff;
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
/*
 * Light→heavy red only in the upper band; below --contact-bg-split the bg is solid heavy red.
 * background-attachment: fixed keeps the backdrop pinned to the viewport (does not scroll with content).
 */
.page-figma--contact {
  --contact-bg-split: 66%;
}

.page-figma--contact .page-figma-radial {
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4efed 9%,
    #e8d0cb 22%,
    #d4a59a 34%,
    #b04e40 46%,
    #8b3829 56%,
    #60160b 62%,
    #4a1209 65%,
    #3d0e07 var(--contact-bg-split),
    #3d0e07 100%
  );
  background-attachment: fixed;
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  background-position: top center;
}

.page-figma--contact .contact-info-block {
  position: relative;
  z-index: 2;
  padding: 28px 24px 32px;
  border-radius: 32px;
  background: rgba(255, 252, 251, 0.94);
  box-shadow: 0 20px 56px rgba(61, 14, 7, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.contact-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 5% 80px;
}

/*
 * Contact left column: same maroon as logo (#60160b), not white.
 * High specificity + !important so CMS / remote-edit styles cannot force white on the light gradient.
 */
.page-figma.page-figma--contact .contact-split .contact-info-block .page-figma-title,
.page-figma.page-figma--contact .contact-split .contact-info-block h1.page-figma-title,
.page-figma.page-figma--contact .contact-split > h1.page-figma-title:first-of-type {
  margin-bottom: 40px;
  color: #60160b !important;
  -webkit-text-fill-color: #60160b !important;
  text-shadow: none !important;
}

.contact-info-block .page-figma-title {
  margin-bottom: 40px;
  color: #60160b;
  -webkit-text-fill-color: #60160b;
  text-shadow: none;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-figma.page-figma--contact .contact-info-list li,
.page-figma.page-figma--contact .contact-info-list li span {
  color: #60160b !important;
  -webkit-text-fill-color: #60160b !important;
  text-shadow: none !important;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Roboto Condensed", var(--font-ui), sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 2.8125rem);
  font-weight: 300;
  font-style: italic;
  color: #60160b;
  -webkit-text-fill-color: #60160b;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-shadow: none;
}

/* White/light PNG icons → same maroon as logo (assets were meant for dark footer) */
.page-figma--contact .contact-info-list img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(14%) sepia(42%) saturate(3200%) hue-rotate(332deg) brightness(0.55) contrast(1.05);
}

.contact-form-shell {
  width: 100%;
  max-width: 720px;
  justify-self: end;
}

.contact-form-figma {
  background: linear-gradient(180deg, #ffdad4 0%, #ffffff 18%);
  border-radius: 38px;
  padding: 36px 32px 40px;
  display: grid;
  gap: 8px;
  box-shadow: 0 16px 48px rgba(96, 22, 11, 0.12);
}

.contact-form-figma__label {
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 2vw, 1.5625rem);
  font-weight: 300;
  font-style: italic;
  color: #60160b !important;
  -webkit-text-fill-color: #60160b !important;
  margin-top: 8px;
  line-height: 1.2;
}

.contact-form-figma__field {
  width: 100%;
  border: 1px solid #60160b;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  background: #ffffff;
  color: #60160b !important;
  -webkit-text-fill-color: #60160b !important;
}

.contact-form-figma__field::placeholder {
  color: rgba(96, 22, 11, 0.42);
}

.contact-form-figma__field:focus {
  outline: 2px solid var(--brand-soft);
  outline-offset: 1px;
}

.contact-form-figma__field--area {
  min-height: 160px;
  resize: vertical;
}

.contact-form-figma__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.contact-submit {
  width: 160px;
  height: 59px;
  border: 0;
  border-radius: 25px;
  background: var(--brand);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease;
}

.contact-submit:hover {
  filter: brightness(1.1);
}

.contact-submit img {
  display: block;
}

.contact-result {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--brand-soft);
  text-align: center;
}

@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 16px max(16px, 5%) 56px;
  }

  .contact-form-shell {
    justify-self: stretch;
    max-width: none;
  }

  .contact-info-block .page-figma-title {
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .contact-form-figma {
    padding: 28px 18px 32px;
    border-radius: 28px;
  }

  .contact-form-figma__label {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }

  .contact-info-list li {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .contact-submit {
    width: min(160px, 100%);
    min-height: 48px;
  }
}

input,
textarea,
button {
  font: inherit;
}

/* Blank / simple inner */
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 0 4rem;
}

.page-hero h1 {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--brand);
  margin: 0 0 12px;
}

.page-hero .lead {
  font-size: 1.2rem;
  color: var(--brand-soft);
  margin: 0;
  max-width: 50ch;
}
/* ew-site-design */
:root {
  --ew-color-primary: #0d6efd;
  --ew-color-secondary: #6c757d;
  --ew-color-accent: #198754;
  --ew-nav-bg: #f8f9fa;
  --ew-nav-text: #212529;
  --ew-link-color: #0d6efd;
  --ew-link-hover: #0a58ca;
  --ew-heading-color: #212529;
  --ew-footer-bg: #212529;
  --ew-footer-text: #ffffff;
  --ew-footer-link: #ffffff;
}
.text-ew-primary{color:var(--ew-color-primary)!important}.bg-ew-primary{background-color:var(--ew-color-primary)!important}.border-ew-primary{border-color:var(--ew-color-primary)!important}.text-ew-secondary{color:var(--ew-color-secondary)!important}.bg-ew-secondary{background-color:var(--ew-color-secondary)!important}.border-ew-secondary{border-color:var(--ew-color-secondary)!important}.text-ew-accent{color:var(--ew-color-accent)!important}.bg-ew-accent{background-color:var(--ew-color-accent)!important}.border-ew-accent{border-color:var(--ew-color-accent)!important}hr{border-top:solid 0.25px #0d6efd;opacity:.25;}#ewSiteFooter{background-color:var(--ew-footer-bg);color:var(--ew-footer-text);}#ewSiteFooter a,#ewSiteFooter .nav-link{color:var(--ew-footer-link);}#ewSiteFooter .ew-footer-bottom{border-top:1px solid color-mix(in srgb, var(--ew-footer-text) 18%, transparent);}#ewSiteFooter .ew-footer-nav{gap:.25rem 1rem;flex-wrap:wrap;}
#ewMainNav { background-color: var(--ew-nav-bg) !important; }
#ewMainNav .navbar-brand,#ewMainNav .nav-link { color: var(--ew-nav-text) !important; }
#ewMainNav .navbar-toggler { border-color: color-mix(in srgb, var(--ew-nav-text) 35%, transparent); }
/* /ew-site-design */
/* ew-page-styles:home */
/* /ew-page-styles:home */
/* ew-page-styles:about */
/* /ew-page-styles:about */
/* ew-page-styles:contact */
/* /ew-page-styles:contact */
/* ew-page-styles:services */
/* /ew-page-styles:services */