:root {
  --color-bg: #f8f7f4;
  --color-surface: #ffffff;
  --color-surface-alt: #f0eeea;
  --color-primary: #c9a227;
  --color-primary-dark: #9a7b1a;
  --color-primary-soft: #f5eed8;
  --color-accent: #b8bcc4;
  --color-black: #0a0a0a;
  --color-black-soft: #1a1a1a;
  --color-text: #111111;
  --color-muted: #6b7280;
  --color-border: #d8d4cc;
  --color-danger: #b91c1c;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-soft: 0 18px 45px rgba(10, 10, 10, 0.14);
  --shadow-subtle: 0 10px 30px rgba(10, 10, 10, 0.08);

  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f5f0e6 0, #f8f7f4 40%, #ffffff 100%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a227, #9a7b1a);
  color: #0a0a0a;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.35);
}

.logo-mark.small {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-image-small {
  height: 52px;
  width: auto;
  display: block;
}

.hero-logo {
  width: min(340px, 85vw);
  height: auto;
  display: block;
  margin-bottom: 0.9rem;
}

.hero-logo-placeholder {
  width: 170px;
  height: 60px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--color-accent);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.9rem;
  color: #c0c0c0;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
  background: rgba(201, 162, 39, 0.12);
  text-decoration: none;
  color: #e8d5a3;
}

.site-nav a.active {
  color: var(--color-primary);
  background: rgba(201, 162, 39, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #c9a227, #9a7b1a);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, opacity 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(10, 10, 10, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.08);
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: var(--color-black);
  border-color: rgba(184, 188, 196, 0.5);
  box-shadow: var(--shadow-subtle);
}

.btn-outline-light {
  background: transparent;
  color: #e8d5a3;
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(201, 162, 39, 0.12);
  color: #f5eed8;
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  box-shadow: none;
}

.site-header .btn-small {
  background: linear-gradient(135deg, #c9a227, #9a7b1a);
  border-color: rgba(201, 162, 39, 0.35);
  color: #0a0a0a;
  letter-spacing: 0.12em;
}

.site-header .btn-small:hover,
.site-header .btn-small:focus {
  background: linear-gradient(135deg, #e8d5a3, #c9a227);
  color: #0a0a0a;
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0.35rem 0 0.45rem;
  color: var(--color-text);
}

.hero-logo-placeholder {
  width: 170px;
  height: 60px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.lead {
  font-size: 1.02rem;
  color: var(--color-muted);
  max-width: 34rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.3rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.meta-heading {
  display: block;
  font-weight: 600;
  color: var(--color-text);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  background: radial-gradient(circle at top left, #ffffff 0, #faf9f6 45%, #f0eeea 100%);
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.45rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, 0.18);
  max-width: 340px;
}

.hero-panel-card h2 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
}

.hero-panel-card p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background-color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(201, 162, 39, 0.65);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.28);
  background-color: #fff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form-message {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: var(--color-danger);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(to bottom right, #faf9f6 0%, #f0eeea 55%, #f8f7f4 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 1.3rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(201, 162, 39, 0.14);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.highlight-box {
  background: radial-gradient(circle at top left, #1a1a1a 0, #0a0a0a 70%);
  color: #e5e7eb;
  border-radius: 20px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.highlight-box h3 {
  margin-top: 0;
}

.highlight-box p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.highlight-box .small {
  font-size: 0.8rem;
  opacity: 0.85;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 2px solid #c9a227;
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.5rem;
  width: 0.3rem;
  height: 0.5rem;
  border-right: 2px solid #c9a227;
  border-bottom: 2px solid #c9a227;
  transform: rotate(40deg);
}

.project-grid .project-card {
  padding: 0;
  overflow: hidden;
}

.project-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.project-image-1 {
  background-image: linear-gradient(to bottom right, #1f2937, #4b5563);
}

.project-image-2 {
  background-image: linear-gradient(to bottom right, #111827, #1f2937);
}

.project-image-3 {
  background-image: linear-gradient(to bottom right, #0a0a0a, #3d3d3d);
}

.project-image-4 {
  background-image: linear-gradient(to bottom right, #1a1a1a, #c9a227);
}

.project-image-5 {
  background-image: linear-gradient(to bottom right, #2d2d2d, #9a7b1a);
}

.project-image-6 {
  background-image: linear-gradient(to bottom right, #1e293b, #0f172a);
}

.project-content {
  padding: 1rem 1rem 1rem;
}

.project-content h2,
.project-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.project-content p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.project-content p.small {
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.section-cta {
  margin-top: 1.8rem;
  text-align: center;
}

.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip-inner h2 {
  margin: 0 0 0.2rem;
}

.cta-strip-inner p {
  margin: 0;
  color: var(--color-muted);
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section-alt#cta-strip {
  background: radial-gradient(circle at left, #1a1a1a 0, #0a0a0a 55%, #000000 100%);
  color: #e5e7eb;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.section-alt#cta-strip p {
  color: #c0c0c0;
}

.site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  padding: 0.75rem 0 0.9rem;
  background: #0a0a0a;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}

.footer-name {
  margin: 0;
  font-weight: 600;
}

.footer-tagline {
  margin: 0;
  font-size: 0.8rem;
  color: #b8bcc4;
}

.footer-parent {
  margin: 0.05rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.76rem;
  color: #9ca3af;
}

.page {
  padding-top: 1rem;
}

.page-hero {
  padding: 2.4rem 0 1.4rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-hero h1 {
  margin: 0.5rem 0 0.6rem;
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
}

.page-hero .lead {
  max-width: 40rem;
}

.service-grid .card {
  min-height: 260px;
}

.breadcrumb {
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: var(--color-border);
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
}

.bullet-list {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-layout {
  align-items: flex-start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.3rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 0.2rem;
}

.contact-sidebar {
  display: grid;
  gap: 1.1rem;
}

.contact-panel {
  background: rgba(10, 10, 10, 0.95);
  color: #e5e7eb;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  font-size: 0.9rem;
}

.contact-panel a {
  color: #e5e7eb;
  text-decoration: underline;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(248, 247, 244, 0.9);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  color: #4b5563;
}

.filter-btn.active {
  background: #0a0a0a;
  border-color: #c9a227;
  color: #e8d5a3;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  width: 36px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(26, 26, 26, 0.95);
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 60%;
  background: #e8d5a3;
  border-radius: 999px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
    padding-inline: 0.25rem;
  }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-tagline {
    display: none;
  }

  .logo-image-small {
    height: 44px;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.3rem 1rem;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    color: #d1d5db;
  }

  .site-nav a:hover {
    color: #e8d5a3;
  }

  .site-nav a.active {
    color: var(--color-primary);
  }

  .site-nav .btn-small {
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo {
    width: min(280px, 78vw);
    margin-inline: auto;
  }

  .hero-copy h1 {
    font-size: clamp(1.05rem, 3.5vw, 1.2rem);
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy .lead {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-meta {
    text-align: center;
  }

  .hero-panel {
    justify-content: stretch;
  }

  .hero-panel-card {
    max-width: 100%;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-strip-inner {
    align-items: flex-start;
  }

  .cta-strip-actions {
    width: 100%;
  }

  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .field-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-links {
    width: 100%;
  }

  .footer-meta {
    width: 100%;
  }

  .page-hero {
    padding-top: 1.8rem;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }
}

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

