/* FCBS v8 — stricter construction focus */
:root {
  --red: #c70018;
  --red-ink: #e10600;
  --off: #f7f6f4;
  --ink: #0a0b0c;
  --muted: #5f6167;
  --line: #e6e3df;
  --shadow: 0 20px 34px rgba(0, 0, 0, 0.07), 0 4px 10px rgba(0, 0, 0, 0.05);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  color: var(--ink);
  background: var(--off);
  line-height: 1.6;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 26px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 246, 244, 0.9);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 96px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand-strong {
  font-weight: 800;
}
.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.site-nav .btn.small {
  padding: 8px 14px;
  border-radius: 14px;
}
.site-nav .btn-primary {
  color: #fff !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
}
.btn-ghost:hover {
  background: #fff;
}

/* HERO */
.hero-gradient {
  background: radial-gradient(
      60% 60% at 10% 20%,
      rgba(255, 244, 245, 0.9),
      rgba(255, 244, 245, 0.4) 40%,
      transparent 70%
    ),
    linear-gradient(180deg, #fff4f5 0%, #faf7f6 50%, #f7f6f4 100%);
}
.hero-inner {
  padding: 80px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #1f1f1f;
  margin: 0 0 20px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 14px;
}
.pill i {
  color: var(--red);
}
.hero-art img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* FRAMES */
.frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

/* SECTIONS */
.section-pad {
  padding: 88px 0;
}
.section-header {
  margin-bottom: 16px;
}
.section-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  border: 1px solid #ffd6da;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 26px;
}
.card h3 {
  margin: 8px 0 6px;
}
.card p {
  margin: 0 0 10px;
}
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

/* ABOUT */
.about-grid {
  align-items: stretch;
}
.about-media.equal {
  display: flex;
}
.about-media.equal .photo {
  flex: 1;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
}
.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
}
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px dashed #ffe0e3;
  border-radius: 14px;
  padding: 14px;
  background: #fff7f8;
}
.feat i {
  color: var(--red);
  font-size: 28px;
  min-width: 28px;
  line-height: 1;
}
.feat strong {
  font-weight: 800;
}

/* MESSAGE FROM CEO */
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: center;
}
.ceo-text p {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--muted);
}
.ceo-signature {
  margin-top: 8px;
}
.ceo-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ceo-photo img {
  width: 100%;
  max-width: 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* VALUES */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  border: 1px solid #ffd6da;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 28px;
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.shot {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  font-weight: 700;
}

/* CONTACT */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-box i {
  font-size: 26px;
  color: var(--red);
}
.contact-box .label {
  display: block;
  color: var(--muted);
  font-weight: 700;
}
.contact-box a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.contact-box a:hover {
  color: var(--red);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff5f6;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
}
.site-footer a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .ceo-grid {
    grid-template-columns: 1fr;
  }
  .ceo-photo img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-media.equal .photo {
    min-height: 260px;
  }
}
@media (max-width: 820px) {
  .site-nav {
    display: none;
  }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    position: absolute;
    right: 26px;
    top: 108px;
    padding: 14px;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-toggle {
    display: block;
  }
  .brand img {
    width: 84px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Focus ring */
a:focus,
button:focus {
  outline: 2px solid #ffccd1;
  outline-offset: 2px;
}
