/* Faro Studios — landing page
   Palette taken from the source Figma design (Faro_landing_1):
   maroon #8B1B2B, near-black #111111 / #201E20, gold #BFA16F, cream #F4EFE6 */

:root {
  --maroon: #8B1B2B;
  --maroon-deep: #5E141F;
  --ink: #111111;
  --ink-soft: #1C1A1B;
  --card: #201E20;
  --gold: #BFA16F;
  --gold-light: #D8C39B;
  --cream: #F4EFE6;
  --cream-dim: #C9C2B6;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--cream);
}

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #241a0c;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(191,161,111,.28); }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon);
  box-shadow: 0 2px 0 rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--cream);
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-footer .logo-img { height: 46px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: .96rem;
}
.primary-nav a {
  text-decoration: none;
  color: var(--cream);
  opacity: .92;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, opacity .15s ease;
}
.primary-nav a:hover { opacity: 1; border-color: var(--gold-light); }
.primary-nav a.nav-cta {
  background: var(--gold);
  color: #241a0c;
  padding: 9px 20px;
  border-radius: 999px;
  border-bottom: none;
}
.primary-nav a.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: var(--ink);
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.01em;
}
.hero-sub {
  color: var(--cream-dim);
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 18px 0 28px;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(191,161,111,.35);
}

/* Services */
.services { padding: 68px 0 76px; background: var(--ink); }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--gold-light);
  margin-bottom: 30px;
}
.section-title--on-maroon { color: var(--gold-light); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card { }
.service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--maroon);
  aspect-ratio: 16/10;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  color: var(--maroon-light, #C24A5C);
  font-size: 1.15rem;
  margin: 18px 0 8px;
  letter-spacing: .01em;
}
.service-card p {
  color: var(--cream-dim);
  margin: 0;
  font-size: .98rem;
}

/* Portfolio */
.portfolio { background: var(--maroon); padding: 64px 0 76px; }
.portfolio .section-title { color: var(--gold-light); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* Why + CTA */
.why { background: var(--maroon); padding: 0 0 84px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 1.05rem;
}
.why-list li {
  padding-left: 26px;
  position: relative;
  color: var(--cream);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.cta-panel {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(191,161,111,.25);
  border-radius: 22px;
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel-mark {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 220px;
  height: 220px;
  opacity: .22;
  mix-blend-mode: screen;
}
.cta-panel-mark img { width: 100%; height: 100%; object-fit: contain; }
.cta-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
}
.cta-panel p {
  color: var(--cream-dim);
  margin: 14px 0 28px;
  position: relative;
}
.cta-panel .btn { position: relative; }

/* Footer */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(191,161,111,.18);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.logo-footer { color: var(--gold-light); }
.footer-year {
  color: var(--cream-dim);
  font-size: .88rem;
  margin: 0;
}

/* Responsive */
@media (min-width: 780px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

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

@media (max-width: 720px) {
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--maroon-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a.nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
