/* Georgia Web Co — Main landing */

:root {
  --ink: #111827;
  --navy: #0f1626;
  --navy-mid: #1a2438;
  --orange: #fd761a;
  --orange-dark: #b84a00;
  --muted: #5a6272;
  --line: #d5dbe5;
  --surface: #eef2f6;
  --paper: #f3f5f8;
  --paper-bright: #fafbfd;
  --container: 1200px;
  --header-height: 76px;
  --radius: 8px;
  --shadow-sm: 0 12px 32px rgba(15, 22, 38, 0.08);
  --shadow-md: 0 22px 48px rgba(15, 22, 38, 0.14);
  --ease: 180ms ease;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 100% -10%, rgba(253, 118, 26, 0.07), transparent 50%),
    radial-gradient(ellipse 70% 50% at -10% 40%, rgba(19, 27, 46, 0.05), transparent 45%),
    var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

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

h1,
h2,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

h2,
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
}

h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

main {
  padding-top: var(--header-height);
}

.section {
  padding: clamp(4.75rem, 9vw, 7rem) 0;
  position: relative;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.work-band {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(253, 118, 26, 0.06), transparent 55%),
    linear-gradient(180deg, #e9eef4 0%, var(--paper) 40%, var(--paper) 100%);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title-rule {
  width: 3.5rem;
  height: 3px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, var(--orange), #ffb074);
  border-radius: 2px;
}

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.tpl-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.tpl-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.tpl-grid .reveal:nth-child(4) { transition-delay: 180ms; }
.tpl-grid .reveal:nth-child(5) { transition-delay: 240ms; }
.tpl-grid .reveal:nth-child(6) { transition-delay: 300ms; }
.pillar-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.pillar-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.pillar-grid .reveal:nth-child(4) { transition-delay: 240ms; }

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(15, 22, 38, 0.08);
  background: rgba(243, 245, 248, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  height: 42px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.desktop-nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--navy);
  border-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-toggle {
  min-width: 2.75rem;
  min-height: 2.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--ease), color var(--ease);
}

.language-toggle:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.375rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
}

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

.btn-orange {
  background: var(--orange);
  color: #fff;
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-panel a {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 600;
}

.mobile-panel a:hover {
  color: var(--orange-dark);
}

.mobile-panel a[href^="services/"] {
  padding-left: 2rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--navy);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: kenBurns 32s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 22, 38, 0.42) 0%, rgba(15, 22, 38, 0.68) 48%, rgba(15, 22, 38, 0.94) 100%),
    linear-gradient(90deg, rgba(15, 22, 38, 0.62) 0%, rgba(15, 22, 38, 0.2) 48%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(253, 118, 26, 0.18), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color: #fff;
}

.hero-brand {
  height: clamp(3.5rem, 7vw, 4.75rem);
  width: auto;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.hero-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.125rem;
  color: #ffb074;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-locale .material-symbols-outlined {
  font-size: 1.125rem;
}

.hero h1 {
  max-width: 14ch;
  color: #fff;
}

.hero-content > p:not(.hero-locale) {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions .material-symbols-outlined {
  font-size: 1.125rem;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 36rem;
}

.hero-services a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.hero-services a:hover {
  color: #ffb074;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #ffb074;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-8px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Work (#work) */

#work .tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.tpl-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 22, 38, 0.08);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.tpl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 118, 26, 0.45);
  box-shadow: var(--shadow-md);
}

.tpl-preview-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}

.tpl-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.tpl-card:hover .tpl-preview-photo img {
  transform: scale(1.04);
}

.tpl-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.5rem;
}

.tpl-body h3 {
  font-size: 1.25rem;
}

.tpl-body p {
  flex: 1;
  color: var(--muted);
  font-size: 0.9375rem;
}

.tpl-meta {
  color: var(--orange-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tpl-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.tpl-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tpl-note a:hover {
  color: var(--orange-dark);
}

/* Craft — light band after dark Services (dark / light / dark / light) */

.craft-light {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(253, 118, 26, 0.06), transparent 55%),
    linear-gradient(180deg, #e9eef4 0%, var(--paper) 40%, var(--paper) 100%);
  border-block: 1px solid var(--line);
  color: var(--ink);
}

.craft-light .section-title,
.craft-light .craft-copy h3 {
  color: var(--navy);
}

.craft-light .eyebrow {
  color: var(--orange-dark);
}

.craft-light .title-rule {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.craft-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.craft-tab {
  min-height: 2.625rem;
  padding: 0 1.125rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-bright);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.craft-tab:hover {
  border-color: rgba(253, 118, 26, 0.55);
  color: var(--navy);
}

.craft-tab[aria-selected="true"],
.craft-tab.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.craft-stage {
  position: relative;
}

.craft-panel {
  display: none;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.craft-panel.is-active {
  display: grid;
  animation: craftIn 420ms ease;
}

@keyframes craftIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.craft-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--navy-mid);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.craft-frame::before {
  content: "";
  display: block;
  height: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 1.25rem 50%, #ff5f57 6px, transparent 6px),
    radial-gradient(circle at 2.375rem 50%, #febc2e 6px, transparent 6px),
    radial-gradient(circle at 3.5rem 50%, #28c840 6px, transparent 6px),
    rgba(255, 255, 255, 0.04);
}

.craft-frame img,
.craft-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  object-fit: cover;
}

.craft-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.craft-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.craft-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.craft-copy .btn {
  margin-top: 0.5rem;
}

/* Services / pillars — dark band after light Work (dark / light / dark) */

.services-band {
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(253, 118, 26, 0.12), transparent 55%),
    linear-gradient(180deg, #101826 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  border-block: none;
}

.services-band .section-title {
  color: #fff;
}

.services-band .eyebrow {
  color: #ffb074;
}

.services-band .title-rule {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.services-band .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 118, 26, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.pillar img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.pillar-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
}

.pillar h3 {
  color: #fff;
  font-size: 1.25rem;
}

.pillar p {
  flex: 1;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
}

.pillar-cta {
  align-self: flex-start;
  margin-top: 1.25rem;
  pointer-events: none;
}

.pillar-cta .material-symbols-outlined {
  font-size: 1.125rem;
}

/* Process */

.process-band {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(253, 118, 26, 0.12), transparent 55%),
    linear-gradient(180deg, #101826 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.75);
}

.process-band .section-title {
  color: #fff;
}

.process-band .eyebrow {
  color: #ffb074;
}

.process-band .title-rule {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  position: relative;
  padding: 1.75rem 0 0.5rem;
  border: 0;
  border-top: 3px solid var(--orange);
  border-radius: 0;
  background: transparent;
}

.process-num {
  display: block;
  margin-bottom: 1rem;
  color: rgba(253, 118, 26, 0.35);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.625rem;
  color: #fff;
  font-size: 1.25rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
}

/* Local */

.local {
  background:
    radial-gradient(ellipse 70% 60% at 100% 50%, rgba(253, 118, 26, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #e8edf4 100%);
}

.local-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.local-photo {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 22, 38, 0.08);
  box-shadow: var(--shadow-md);
}

.local-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.local-points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.local-points .section-title {
  text-align: left;
}

.local-points ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  width: 100%;
}

.local-points li {
  position: relative;
  padding-left: 1.375rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.local-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
}

/* FAQ */

.faq-band {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 22, 38, 0.04), transparent 55%),
    var(--surface);
  border-block: 1px solid var(--line);
}

.faq-list {
  max-width: 44rem;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 22, 38, 0.08);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: 0 8px 24px rgba(15, 22, 38, 0.04);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
}

.faq-button .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.375rem;
  color: var(--muted);
  transition: transform var(--ease);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-content p {
  margin: 0 1.375rem 1.125rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9375rem;
}

.faq-item.open .faq-content {
  max-height: 16rem;
}

.faq-item.open .faq-button .material-symbols-outlined {
  transform: rotate(180deg);
  color: var(--orange);
}

/* Contact */

.contact-band {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(253, 118, 26, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 176, 116, 0.08), transparent 45%),
    linear-gradient(160deg, #0c121f 0%, var(--navy) 55%, #151e32 100%);
  color: rgba(255, 255, 255, 0.78);
}

.contact-band .contact-title,
.contact-band h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-grid > div > p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.0625rem;
}

.contact-methods {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-methods a,
.contact-methods > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-methods span {
  color: #ffb074;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-methods strong,
.contact-methods a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.contact-methods a:hover {
  color: #ffb074;
}

.contact-form {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.field {
  display: grid;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.field label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.625rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  margin-top: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

#form-status {
  color: #ffb074;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */

.site-footer {
  padding: 4rem 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
}

.footer-grid > div > img,
.footer-grid .brand img {
  height: 2.25rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-grid > div > p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
}

.footer-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.625rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--ease);
}

.footer-nav a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Responsive */

@media (max-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #work .tpl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft-panel.is-active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions .btn-primary {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel.open {
    display: block;
  }

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

  .local-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .brand img {
    height: 34px;
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero h1 {
    max-width: none;
  }

  #work .tpl-grid,
  .pillar-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .craft-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .craft-tabs::-webkit-scrollbar {
    display: none;
  }

  .craft-tab {
    flex-shrink: 0;
  }

  .contact-form {
    padding: 1.25rem;
  }
}

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

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

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

  .hero-media img {
    animation: none;
    transform: scale(1.06);
  }

  .hero-scroll span {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
