﻿:root {
  --bg: #ece9e2;
  --bg-alt: #f7f5f0;
  --surface: #ffffff;
  --ink: #1b2028;
  --ink-soft: #5f6672;
  --charcoal: #151a22;
  --charcoal-2: #202734;
  --line: #d1cbc0;
  --accent: #8e7552;
  --accent-soft: #b59b74;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --shadow-soft: 0 14px 28px rgba(21, 26, 34, 0.14);
  --shadow-strong: 0 26px 54px rgba(15, 20, 30, 0.35);
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(170deg, rgba(142, 117, 82, 0.08), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(21, 26, 34, 0.08), transparent 32%),
    var(--bg);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.top-strip {
  background: #10151d;
  color: #dce2eb;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(181, 155, 116, 0.28);
}

.strip-grid {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.strip-grid div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.strip-grid a:hover,
.strip-grid a:focus-visible {
  color: #fff;
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 243, 237, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(155deg, #a28a67, #745f43);
}

.brand strong,
.brand small {
  display: block;
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  font-size: 1.16rem;
  line-height: 1;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.1;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #313846;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: #fff;
  background: var(--charcoal);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-dark {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 10px 20px rgba(21, 26, 34, 0.25);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #0b0f15;
}

.btn-light {
  color: var(--charcoal);
  background: #ece7df;
  border: 1px solid #cbc2b5;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #e2dbce;
}

.hero {
  padding: 4.2rem 0 5.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.kicker-light {
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  margin-top: 1.2rem;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: grayscale(0.3) saturate(0.8) contrast(1.03);
}

.hero-media figcaption {
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.section {
  padding: 5.2rem 0;
  scroll-margin-top: 7rem;
}

.block-dark {
  background:
    linear-gradient(160deg, rgba(12, 15, 22, 0.96), rgba(25, 32, 43, 0.94)),
    radial-gradient(circle at 20% 10%, rgba(181, 155, 116, 0.13), transparent 45%);
  color: #e8edf6;
}

.block-dark h2,
.block-dark h3 {
  color: #f8fbff;
}

.block-dark p {
  color: #c7d2df;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.pillars {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.pillars li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(181, 155, 116, 0.38);
  border-radius: var(--radius-lg);
  padding: 1.05rem;
}

.pillars p {
  margin-top: 0.35rem;
}

.section-head {
  margin-bottom: 1.6rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.expertise-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.expertise-card span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.expertise-card p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
}
.collab-note {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(142, 117, 82, 0.08);
  color: var(--ink);
  line-height: 1.55;
}

.collab-note .focus {
  display: inline-block;
  padding: 0.05rem 0.28rem;
  border-radius: 6px;
  background: rgba(142, 117, 82, 0.12);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.96rem;
}
.block-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.9));
  border-block: 1px solid var(--line);
}

.process {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.process li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  background: var(--charcoal-2);
}

.process p {
  margin-top: 0.4rem;
  color: var(--ink-soft);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-copy p {
  color: var(--ink-soft);
}

.contact-data {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.contact-data a {
  color: var(--charcoal);
  font-weight: 600;
}

.contact-data a:hover,
.contact-data a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.82rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.95rem;
  color: #4f5663;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8c0b3;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 0.7rem 0.82rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(142, 117, 82, 0.25);
  border-color: var(--accent);
}

button {
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover,
button:focus-visible {
  background: #0b0f15;
  outline: none;
}

.map-section {
  padding-top: 2.4rem;
}

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(58vh, 500px);
  border: 0;
  filter: grayscale(0.5) contrast(1.05);
}

.site-footer {
  margin-top: 4rem;
  background: #0f141c;
  color: #ced8e7;
  border-top: 1px solid rgba(181, 155, 116, 0.3);
}

.footer-grid {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: 1fr;
  }

  .contact-shell,
  .two-col,
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.85rem 0;
    min-height: auto;
  }

  .main-nav {
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
    scroll-margin-top: 9rem;
  }

  .strip-grid {
    min-height: 42px;
    flex-direction: column;
    justify-content: center;
    padding: 0.3rem 0;
  }
}

@media (max-width: 640px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    min-height: auto;
    text-align: center;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  h1 {
    font-size: clamp(2rem, 9.4vw, 2.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .main-nav a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}














