html {
  --font-headline-family: "Roboto", "Segoe UI", sans-serif;
  --font-body-family: "Roboto", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body-family);
  letter-spacing: -0.01em;
}

.font-headline,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline-family);
  letter-spacing: -0.03em;
}

.font-body,
.font-label,
button,
input,
select,
textarea {
  font-family: var(--font-body-family);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="textarea"],
textarea {
  padding-left: 10px;
  padding-right: 10px;
}

.font-label {
  letter-spacing: 0.18em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3rem) !important;
}

h2 {
  font-size: clamp(2rem, 4vw, 2rem) !important;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.25rem) !important;
}

a,
button {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.architectural-grid {
  background-image: radial-gradient(circle, #d8c2b8 1px, transparent 1px);
  background-size: 40px 40px;
}

.btn-terracotta {
  background-color: #e3996d;
  color: #fff;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-terracotta:visited,
.btn-terracotta:hover {
  color: #fff;
}

.btn-terracotta:hover {
  background-color: #d18357;
  transform: translateY(-1px);
}

.curated-border {
  border-left: 1px solid #e3996d;
  padding-left: 2rem;
}

.hero-copy-panel {
  background: rgba(255, 255, 255, 0.8) !important;
}

.strategy-letter {
  opacity: 1;
  color: rgba(227, 153, 109, 0.35);
  text-shadow: 0 10px 28px rgba(227, 153, 109, 0.16);
  transform: translateX(-0.02em);
  transition:
    color 220ms ease,
    transform 220ms ease,
    text-shadow 220ms ease,
    opacity 220ms ease;
}

.group:hover .strategy-letter {
  color: rgba(227, 153, 109, 0.72);
  text-shadow: 0 16px 36px rgba(227, 153, 109, 0.24);
  transform: translateX(0);
}

.strategy-value-card {
  position: relative;
  overflow: hidden;
}

.strategy-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 52%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.strategy-value-card:hover::before {
  opacity: 1;
}

.strategy-letter-value {
  color: rgba(255, 255, 255, 0.42);
  text-shadow: none;
}

.strategy-value-card:hover .strategy-letter-value {
  color: #fff;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.28);
  transform: translateY(-2px) scale(1.04);
}

[data-purpose="hero-image"] {
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
  transition: transform 100ms linear;
}

.company-logo-box img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

.contact-form-status {
  display: none;
  min-height: 1.5rem;
  margin: 0;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: #f4f1ef;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-status.is-success {
  display: block;
  background: #ecfdf3;
  color: #15803d;
}

.contact-form-status.is-error {
  display: block;
  background: #fef2f2;
  color: #dc2626;
}

.social-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 30px 0;
}

.social-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #3a302b;
  background: #ffffff;
  border: 1px solid rgba(58, 48, 43, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 12px 28px rgba(58, 48, 43, 0.08);
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-link svg {
  position: relative;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
}

.social-link:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px) rotate(-3deg);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link-twitter::before {
  background: linear-gradient(135deg, #111827, #000000);
}

.social-link-instagram::before {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.social-link-linkedin::before {
  background: linear-gradient(135deg, #0a66c2, #004182);
}
