/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0D0D0D;
  --dark2:   #161616;
  --dark3:   #1f1f1f;
  --amber:   #C85A00;
  --amber-l: #E06000;
  --light:   #F7F5F2;
  --warm:    #EDEBE6;
  --text-d:  #D8D4CC;
  --muted:   #666;
  --white:   #fff;
  --radius:  3px;
  --shadow:  0 2px 16px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--white); }

.nav-cta a {
  background: var(--amber) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.1rem !important;
}

.nav-cta a:hover { background: var(--amber-l) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.38);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.3) 50%,
    rgba(13,13,13,0.1) 100%
  );
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
}

.btn-amber:hover {
  background: var(--amber-l);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark3);
  transform: translateY(-1px);
}

/* ===== FACTS STRIP ===== */
.facts {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.facts-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.06);
}

.fact {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.fact:last-child { border-right: none; }

.fact-n {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fact-n span { color: var(--amber); }

.fact-l {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 2rem; }
.section-dark { background: var(--dark); color: var(--text-d); }
.section-light { background: var(--light); }
.section-warm { background: var(--warm); }

.container { max-width: 1200px; margin: 0 auto; }

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.section-sub.on-dark { color: rgba(255,255,255,0.45); }

.header { margin-bottom: 3.5rem; }
.header.center { text-align: center; }
.header.center .section-sub { margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: background 0.15s;
}

.service-card:last-child { border-right: none; }
.service-card:hover { background: #fefefe; }

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.about-photo {
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.85);
}

.about-content {
  background: var(--dark2);
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.about-quote em {
  color: var(--amber);
  font-style: normal;
}

.about-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 380px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.about-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.g-item {
  overflow: hidden;
  position: relative;
  background: var(--dark3);
}

.g-item:first-child {
  grid-row: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.75);
  transition: filter 0.4s, transform 0.5s;
}

.g-item:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.03);
}

.g-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.g-item:hover .g-label { opacity: 1; }

/* ===== CTA ===== */
.cta {
  background: var(--amber);
  padding: 4.5rem 2rem;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta p {
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.contact-info {
  background: var(--dark);
  padding: 4rem 3rem;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.contact-item {
  margin-bottom: 1.75rem;
}

.contact-item-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--white); }

.contact-map { min-height: 400px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; filter: grayscale(40%) contrast(1.05); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-left strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.6); }

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}

.footer-credit a { color: var(--amber); opacity: 0.7; }
.footer-credit a:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .g-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.25rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero { height: 100svh; }
  .hero-inner { padding: 0 1.25rem 3.5rem; }
  .facts-inner { grid-template-columns: 1fr 1fr; }
  .fact { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo { height: 280px; }
  .about-content { padding: 2.5rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 3px; }
  .g-item { height: 220px; }
  .g-item:first-child { height: 260px; }
}
