:root {
  --bg-dark: #050505;
  --bg-panel: #111111;
  --text-main: #f5f2ec;
  --text-muted: #c3bfb7;
  --accent-wood: #d2b48c;
  --accent-steel: #7f7f7f;
  --accent-orange: #ff7a00;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1180px;
  --header-height: 70px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #222 0, #050505 40%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER / NAV */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.97), rgba(12, 12, 12, 0.94));
  border-bottom: 1px solid var(--border-soft);
}

.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.75));
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}

.brand-text span:first-child {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text span:last-child {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-muted);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.2s ease-out;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 255, 255, 0.05));
  color: var(--text-main);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 99px;
  background: #f7f7f7;
}

/* PAGE LAYOUT: LEFT LOGO + RIGHT CONTENT */

.page-shell {
  display: flex;
  max-width: calc(var(--max-width) + 420px);
  margin: 0 auto;
  padding-top: var(--header-height);
}

/* Left sticky logo column (desktop) */
.page-logo-col {
  display: none;
}

.page-logo-inner {
  width: 350px;
  padding: 14px 14px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #76441a 0, #3c1f0c 40%, #1a0d05 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.7);
}

.page-logo-inner img {
  width: 100%;
  height: auto;
}

.page-logo-caption {
  margin-top: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f8eee2;
}

.page-logo-name {
  display: block;
  font-weight: 600;
}

.page-logo-tag {
  display: block;
  opacity: 0.8;
}

/* Right content column */
.page-content {
  flex: 1;
  min-width: 0;
}

/* Sections */

.section {
  padding: 96px 0;
}

.hero {
  padding-top: 110px;
  padding-bottom: 110px;
}

/* HERO */

/* HERO IMAGE – keep everything perfectly framed */
.hero-slider,
.hero-slider img {
  width: 100%;
  height: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* This is the important part: crops tall images inside the hero frame */
.hero-slider img,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills the box and crops cleanly */
  object-position: center;
}

/* Give the hero image area a fixed ratio so all slides match */
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* change to taste (4 / 3, etc.) */
  overflow: hidden;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent-wood);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--accent-orange);
}

.hero-sub {
  max-width: 560px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  background: rgba(12, 12, 12, 0.7);
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ffb25c);
  color: #111;
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-main);
  background: rgba(5, 5, 5, 0.5);
}

.hero-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, #303030 0, #050505 45%, #000 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  isolation: isolate;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 10% 0%, #444 0, #111 40%, #000 100%);
}

.hero-image img,
.hero-image-label {
  transition: opacity 0.5s ease-out;
}

.hero-image.is-fading img,
.hero-image.is-fading .hero-image-label {
  opacity: 0;
}


.hero-image-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 5, 5, 0.8);
  color: var(--accent-wood);
}

.hero-stats {
  display: flex;
  gap: 22px;
  padding: 12px 18px 16px;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 3px;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

/* SECTION HEADERS */

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.section-heading h2 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 15px;
}

.section-heading p {
  max-width: 460px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
}

.about-panel {
  background: rgba(10, 10, 10, 0.96);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.about-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.about-panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.about-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  font-size: 12px;
}

.about-list span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.badge-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-orange);
}

.about-right {
  display: grid;
  gap: 16px;
}

.about-tile {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  background: rgba(12, 12, 12, 0.96);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.about-tile strong {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent-wood);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: rgba(10, 10, 10, 0.98);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card ul {
  list-style: none;
  font-size: 12px;
  color: var(--text-muted);
}

.service-card li::before {
  content: "• ";
  color: var(--accent-orange);
}

/* BEFORE / AFTER */

.ba-section {
  background: radial-gradient(circle at top, #181818 0, #020202 60%);
}

.ba-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.ba-block h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 6px;
}

.ba-block p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.ba-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #111;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.ba-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.15s linear;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5f2ec;
}

.ba-label-after {
  left: auto;
  right: 12px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.ba-slider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 60%;
  margin: 0 auto;
  z-index: 3;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* GALLERY IMAGES – cropped inside card */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 220px;          /* fixed height so every card matches */
  object-fit: cover;      /* centers and crops like a window */
  object-position: center;
  display: block;
}


.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px;
  font-size: 12px;
  pointer-events: none;
}

.gallery-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: #fdf9f0;
}

.gallery-caption {
  color: #e7ddcf;
  margin-top: 4px;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

/* GALLERY LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.show {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 18px;
  background: #111;
  padding: 14px 18px 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.9);
  z-index: 81;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  border-radius: 12px;
}

.lightbox-content p {
  margin-top: 10px;
  font-size: 13px;
  color: #f3e6d6;
}

.lightbox-close {
  position: absolute;
  top: 4px;
  right: 8px;
  border: none;
  background: transparent;
  color: #f5f2ec;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
}

.contact-panel {
  background: rgba(10, 10, 10, 0.96);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-panel h3 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-details {
  font-size: 13px;
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.contact-details a {
  color: var(--accent-orange);
}

form {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.8);
  color: var(--text-main);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 26px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-inner span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* RESPONSIVE */

@media (min-width: 1100px) {
  .page-logo-col {
    display: block;
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: flex-start;
    margin-left: 26px;
    margin-right: 26px;
  }

  .page-content {
    padding-right: 20px;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 1099px) {
  .page-shell {
    padding-top: var(--header-height);
  }
}

/* Tablet / Mobile */

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .ba-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 96px;
  }

  .hero-media {
    order: -1;
    margin-bottom: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shell {
    flex-direction: column;
  }

  .page-logo-col {
    display: none;
  }
}

/* Mobile nav & layout tweaks */

@media (max-width: 720px) {
  .nav-right {
    gap: 10px;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    padding: 16px 20px 22px;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-110%);
    transition: transform 0.25s ease-out;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
  }

  .ba-wrapper {
    aspect-ratio: 4 / 3;
  }
}
