:root {
  --dark: #17120d;
  --dark-2: #24180f;
  --brown: #6f4320;
  --brown-light: #8b5a2b;
  --gold: #d6aa63;
  --cream: #f7efe2;
  --cream-2: #fffaf0;
  --text: #2b2118;
  --muted: #6d5c4b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background:
    linear-gradient(135deg, rgba(23,18,13,0.98), rgba(50,31,18,0.98)),
    radial-gradient(circle at top left, rgba(214,170,99,0.22), transparent 35%);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 170, 99, 0.28);
}

.header-inner {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 5px;
  border: 2px solid var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  padding: 9px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 16px !important;
}

.nav-youtube {
  background: rgba(214, 170, 99, 0.15);
  border: 1px solid rgba(214, 170, 99, 0.35);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(rgba(23, 18, 13, 0.78), rgba(23, 18, 13, 0.88)),
    url("images/work1.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,170,99,0.28), transparent 26%),
    radial-gradient(circle at 80% 50%, rgba(139,90,43,0.25), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 32px));
  padding: 90px 0 130px;
}

.hero-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 0 auto 26px;
  background: rgba(247, 239, 226, 0.95);
  border-radius: 50%;
  padding: 14px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -1px;
  color: var(--dark);
}

h3 {
  font-size: 1.45rem;
  color: var(--dark);
}

.hero-text {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(247, 239, 226, 0.92);
}

.hero-buttons,
.button-row,
.center-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn.primary {
  background: var(--gold);
  color: var(--dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.story-preview .btn.secondary,
.about-copy .btn.secondary,
.gallery-preview .btn.secondary {
  background: var(--dark);
  color: var(--cream);
  border: none;
}

.btn.youtube,
.youtube-link {
  background: #8b2d22;
  color: var(--white);
}

.section {
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 48px;
  align-items: center;
}

.two-column p {
  font-size: 1.08rem;
  color: var(--muted);
}

.feature-card,
.service-card,
.contact-box,
.gallery-card {
  background: var(--cream-2);
  border: 1px solid rgba(111, 67, 32, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(61, 39, 23, 0.1);
}

.feature-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,250,240,0.96), rgba(247,239,226,0.94)),
    radial-gradient(circle at top right, rgba(214,170,99,0.2), transparent 36%);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  font-family: Arial, Helvetica, sans-serif;
}

.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(111, 67, 32, 0.1);
  font-weight: 700;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--brown-light);
  font-weight: 900;
}

.services-section,
.values-section {
  background:
    linear-gradient(180deg, var(--cream), #efe0c9);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.story-preview {
  background:
    linear-gradient(135deg, rgba(23,18,13,0.96), rgba(55,34,18,0.96)),
    radial-gradient(circle at top right, rgba(214,170,99,0.22), transparent 30%);
  color: var(--cream);
}

.story-preview h2,
.story-preview h3 {
  color: var(--cream);
}

.story-preview p {
  color: rgba(247, 239, 226, 0.86);
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid rgba(214, 170, 99, 0.45);
  background: var(--dark);
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.preview-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid var(--cream-2);
  box-shadow: 0 12px 28px rgba(61, 39, 23, 0.14);
}

.contact-section {
  background:
    linear-gradient(135deg, var(--brown), var(--dark-2));
  color: var(--cream);
}

.contact-box {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255,250,240,0.08), rgba(255,255,255,0.04));
  border-color: rgba(214, 170, 99, 0.28);
}

.contact-box h2 {
  color: var(--cream);
}

.contact-box p {
  color: rgba(247, 239, 226, 0.86);
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.contact-link,
.youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  white-space: nowrap;
}

.contact-link {
  background: var(--gold);
  color: var(--dark);
}

.youtube-link {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(23,18,13,0.95), rgba(69,42,22,0.95)),
    radial-gradient(circle at top left, rgba(214,170,99,0.28), transparent 32%);
  color: var(--cream);
  padding: 96px 0 74px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1.18rem;
  color: rgba(247, 239, 226, 0.88);
}

.page-buttons {
  margin-top: 28px;
}

.about-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.about-photo img {
  height: 640px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy .button-row {
  justify-content: flex-start;
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  padding: 10px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 36px 0;
  border-top: 1px solid rgba(214, 170, 99, 0.24);
}

.footer-inner {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  border: 2px solid var(--gold);
  margin-bottom: 8px;
}

.footer-inner p {
  margin: 0;
  color: rgba(247, 239, 226, 0.84);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 950px) {
  .header-inner {
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column,
  .about-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 0.86rem;
    padding: 8px 9px;
  }

  .nav-cta,
  .nav-youtube {
    padding: 8px 12px !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0 110px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero-buttons,
  .button-row,
  .center-button {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .preview-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-card,
  .contact-box {
    padding: 24px;
  }

  .image-frame img,
  .about-photo img {
    height: auto;
    max-height: none;
  }

  .preview-grid img {
    height: auto;
  }

  .gallery-card img {
    height: auto;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-link,
  .youtube-link {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 58px;
  }
}
.gallery-category {
  margin-bottom: 86px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category-heading {
  padding: 34px 24px;
  margin-bottom: 34px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,250,240,0.94), rgba(247,239,226,0.96)),
    radial-gradient(circle at top right, rgba(214,170,99,0.22), transparent 35%);
  border: 1px solid rgba(111, 67, 32, 0.14);
  box-shadow: 0 12px 30px rgba(61, 39, 23, 0.08);
}

.completed-category {
  padding-top: 20px;
  border-top: 2px solid rgba(111, 67, 32, 0.14);
}

.gallery-category-heading h2 {
  margin-bottom: 12px;
}

.gallery-category-heading p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .gallery-category {
    margin-bottom: 62px;
  }

  .gallery-category-heading {
    padding: 26px 18px;
    margin-bottom: 26px;
  }
}
.lightbox-img {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.lightbox-img:hover {
  transform: scale(1.015);
  filter: brightness(0.92);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.active {
  display: flex;
}

.lightbox-main-image {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  background: #111;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 100000;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.95);
  color: #17120d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.lightbox-close:hover {
  background: #d6aa63;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100000;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  color: #17120d;
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.lightbox-arrow:hover {
  background: #d6aa63;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 700px) {
  .lightbox {
    padding: 72px 16px;
  }

  .lightbox-main-image {
    max-height: 78vh;
    border-radius: 10px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 28px;
    background: rgba(255, 250, 240, 0.88);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.certificate-section {
  background:
    linear-gradient(135deg, rgba(23,18,13,0.96), rgba(55,34,18,0.96)),
    radial-gradient(circle at top right, rgba(214,170,99,0.22), transparent 34%);
  color: var(--cream);
}

.certificate-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.certificate-copy h2 {
  color: var(--cream);
}

.certificate-copy p {
  color: rgba(247, 239, 226, 0.86);
  font-size: 1.08rem;
}

.certificate-frame {
  background: var(--cream-2);
  padding: 14px;
  border-radius: 20px;
  border: 3px solid rgba(214, 170, 99, 0.55);
  box-shadow: var(--shadow);
}

.certificate-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 850px) {
  .certificate-layout {
    grid-template-columns: 1fr;
  }
}