:root {
  --ink: #16232e;
  --ink-dark: #0d161d;
  --steel: #b5651d;
  --steel-light: #d98a4f;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --line: #e0dcd1;
  --text: #1c2b36;
  --text-muted: #5b6670;
  --radius: 3px;
  --max-width: 1120px;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }

.mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

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

/* Header */
.site-header {
  background: #fff;
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand span.mono {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-transform: uppercase;
  margin-top: 2px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, monospace;
}

.lang-switch a {
  color: var(--text-muted);
  padding: 3px 7px;
  border-radius: 2px;
  text-decoration: none;
}

.lang-switch a.active {
  color: #fff;
  background: var(--ink);
}

.lang-switch a:hover:not(.active) {
  color: var(--ink);
}

/* Hero */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 76px 0 84px;
  position: relative;
  border-bottom: 3px solid var(--steel);
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--steel-light);
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 0 0 20px;
  max-width: 760px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 0 30px;
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 52px 0 46px;
  border-bottom: 3px solid var(--steel);
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--steel-light);
  margin: 0 0 10px;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--steel);
  color: #fff;
}
.btn-primary:hover { background: var(--steel-light); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: #fff; text-decoration: none; }

/* Sections */
section.block { padding: 64px 0; }
section.block.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { margin-bottom: 36px; max-width: 640px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--steel);
  margin: 0 0 10px;
}
.section-head h2 {
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-head p { color: var(--text-muted); margin: 0; }

/* Services / highlights grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  padding: 32px;
}

.service-card .num {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 700;
}

.service-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin: 8px 0 12px;
}

.service-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Gallery */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-tabs button {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 999px;
  cursor: pointer;
}

.filter-tabs button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(13,22,29,0.85));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.gallery-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 40px 0;
  text-align: center;
}

/* About / facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .facts-grid { grid-template-columns: 1fr; } }

.fact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.fact-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 1.1rem; }
.fact-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 760px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }
.photo-strip .ph {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item { margin-bottom: 24px; }
.contact-item .label {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-item a, .contact-item .value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  font-family: inherit;
  cursor: pointer;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}
.blog-card:hover { text-decoration: none; border-color: var(--steel); }
.blog-card-img { aspect-ratio: 16/10; background: var(--line); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 18px 20px; }
.blog-card-date {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
  font-weight: 700;
  margin: 0 0 8px;
}
.blog-card h3 { margin: 0; color: var(--ink); font-size: 1.05rem; }

.blog-post-cover {
  margin: 20px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--line);
}
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post-body { max-width: 720px; color: var(--text); font-size: 1rem; }
.blog-post-body p { margin: 0 0 16px; }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 28px 0 20px;
  font-size: 0.85rem;
}
footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site-footer a { color: rgba(255,255,255,0.75); }
footer.site-footer .footer-links a { margin-left: 16px; }
footer.site-footer .footer-links a:first-child { margin-left: 0; }
footer.site-footer .credit {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 18px;
  padding-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
footer.site-footer .credit a { color: rgba(255,255,255,0.6); }

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  z-index: 50;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}
.cookie-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-bar p { margin: 0; font-size: 0.85rem; max-width: 720px; }
.cookie-bar a { color: var(--steel-light); }
.cookie-bar .btn { flex-shrink: 0; }

/* Legal pages */
.legal-content { max-width: 760px; }
.legal-content h2 { color: var(--ink); font-size: 1.2rem; margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.95rem; }
.legal-content ul { padding-left: 20px; }
