:root {
  --navy: #1a2029;
  --navy-2: #232a36;
  --charcoal: #1c1f24;
  --brick: #a3421d;
  --brick-dark: #8a3618;
  --cream: #f7f3ec;
  --cream-2: #efe9dd;
  --text-dark: #1f2430;
  --text-muted: #5c6270;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(20, 20, 20, 0.12);
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-head);
  color: var(--brick);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-title.center { text-align: center; margin-bottom: 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brick); color: var(--white); }
.btn-primary:hover { background: var(--brick-dark); box-shadow: 0 8px 20px rgba(163, 66, 29, 0.35); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 0.75rem; }

/* Top bar */
#top-bar {
  background: var(--navy);
  color: #cfd4dd;
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 38px;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cfd4dd;
  text-decoration: none;
}
.top-bar-item svg { color: var(--brick); flex-shrink: 0; }
.top-bar-badge {
  margin-left: auto;
  color: #f0b199;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 20px;
}
.lang-btn {
  background: none;
  border: 1px solid #3a4150;
  color: #9aa0ac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
}
.lang-btn:hover { color: #fff; border-color: var(--brick); }
.lang-btn.active { background: var(--brick); border-color: var(--brick); color: #fff; }

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.brand img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brick);
  text-transform: uppercase;
}
#main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
#main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
#main-nav a:hover { color: var(--brick); }
.header-cta { flex-shrink: 0; white-space: nowrap; }

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
#hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,24,32,0.92) 20%, rgba(20,24,32,0.55) 65%, rgba(20,24,32,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}
.hero-content .eyebrow { color: #f0a780; }
#hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  color: #e4e6ea;
  font-size: 1.05rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.hero-actions .btn-outline { border-color: var(--white); color: var(--white); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--navy); }

/* Services */
#services { padding: 96px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.18);
}
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--brick);
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.92rem; margin-bottom: 0; }
.service-card-cta {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: #c7cbd3; }
.service-card-cta .btn { align-self: flex-start; }

/* Gallery */
#gallery { padding: 96px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  text-align: left;
}

/* About */
#about { padding: 96px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-points li {
  padding-left: 28px;
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--brick);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.owner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  max-width: 420px;
}
.owner-card strong { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); }
.owner-card span { color: var(--text-muted); font-size: 0.85rem; }

/* Contact */
#contact { padding: 96px 0; background: var(--navy); color: var(--white); }
#contact .eyebrow { color: #f0a780; }
#contact .section-title { color: var(--white); }
#contact p { color: #c7cbd3; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-detail svg { color: var(--brick); flex-shrink: 0; }
.contact-detail a { color: var(--white); text-decoration: none; }
.contact-detail a:hover { color: #f0a780; }
.services-list {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9aa0ac;
  line-height: 1.8;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid #d9dbe0;
  border-radius: 6px;
  color: var(--text-dark);
  background: var(--cream);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brick);
}
.contact-form .btn { margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.hidden-field { display: none; }
.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-status-success { background: #e5f5ea; color: #1f7a3f; }
.form-status-error { background: #fbeaea; color: #a3311d; }

/* Footer */
#site-footer { background: var(--charcoal); color: #9aa0ac; padding: 48px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 4px;
}
.footer-brand strong { display: block; color: var(--white); font-family: var(--font-head); letter-spacing: 0.03em; }
.footer-brand span { font-size: 0.78rem; color: var(--brick); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-tagline { max-width: 720px; font-size: 0.82rem; color: #7a808c; margin: 0; }
.footer-legal { font-size: 0.78rem; margin: 0; color: #6b707b; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox:not([hidden]) { display: flex; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 900px; }
.lightbox img { max-height: 80vh; border-radius: 8px; margin: 0 auto; }
.lightbox figcaption {
  color: var(--white);
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 760px) {
  .top-bar-badge { display: none; }
  #main-nav { display: none; }
  #nav-toggle { display: flex; }
  .header-cta { display: none; }
  .header-inner { height: 68px; }
  .brand img { height: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  #hero { min-height: 560px; }

  body.nav-open #main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
}
