@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

:root {
  --bg: #eee6dc;
  --paper: #fffaf2;
  --text: #171717;
  --muted: rgba(23, 23, 23, 0.65);
  --gold: #a27a42;
  --line: rgba(23, 23, 23, 0.12);
  --soft: #e3d7c8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 35%),
    linear-gradient(135deg, #f6efe6, var(--bg));
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(238, 230, 220, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 80px);
  padding: 70px 6vw 80px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-text h2 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.94;
  letter-spacing: -4px;
  font-weight: 400;
}

.hero-text p:not(.eyebrow),
.section-heading p,
.contact-text p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--text);
  color: var(--paper);
}

.btn.primary:hover {
  background: var(--gold);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.38);
}

.btn.secondary:hover {
  background: var(--paper);
}

.hero-photo {
  position: relative;
  padding: 14px;
  background: var(--paper);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.16),
    0 8px 22px rgba(0,0,0,0.08);
  transform: rotate(1.2deg);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.32), transparent 55%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
}

.intro-strip {
  margin: 0 6vw;
  padding: 28px;
  background: rgba(255,250,242,0.65);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.intro-strip div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intro-strip strong {
  font-size: 20px;
  font-weight: 500;
}

.intro-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 110px 6vw;
}

.section-heading {
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255,250,242,0.72);
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 290px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.service-card h3 {
  margin: 28px 0 16px;
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -1px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card.highlight {
  background: var(--text);
  color: var(--paper);
}

.service-card.highlight p {
  color: rgba(255,250,242,0.72);
}

.work-section {
  background: rgba(255,250,242,0.36);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: var(--paper);
  text-decoration: none;
  background: #111;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: brightness(0.72);
  transition: 0.8s ease;
}

.work-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.work-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 60%);
}

.work-card h3 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 400;
}

.work-card p {
  margin: 0;
  color: rgba(255,250,242,0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.1),
    0 6px 20px rgba(0,0,0,0.05);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(23, 23, 23, 0.74);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

.checkbox-group {
  margin: 24px 0;
  padding: 22px;
  background: rgba(238,230,220,0.55);
  border: 1px solid var(--line);
}

.checkbox-group p {
  margin: 0 0 16px;
  font-weight: 600;
}

.checkbox-group label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.checkbox-group input {
  width: auto;
}

.form-btn {
  width: 100%;
  border: none;
}

.footer {
  padding: 42px 6vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 680px;
  }

  .services-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 22px;
  }

  .nav {
    position: fixed;
    top: 73px;
    left: 22px;
    right: 22px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    flex-direction: column;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 56px 22px 60px;
    gap: 38px;
  }

  .hero h1,
  .section-heading h2,
  .contact-text h2 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .hero-text p:not(.eyebrow),
  .section-heading p,
  .contact-text p {
    font-size: 17px;
  }

  .hero-photo {
    transform: none;
  }

  .hero-photo img {
    height: 390px;
  }

  .intro-strip {
    margin: 0 22px;
  }

  .section {
    padding: 76px 22px;
  }

  .services-grid,
  .work-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .work-card,
  .work-card img {
    min-height: 320px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer {
    padding: 34px 22px;
    flex-direction: column;
    gap: 12px;
  }
}
.work-card {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: .3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;

  object-fit: contain;

  box-shadow:
    0 30px 80px rgba(0,0,0,.4);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;

  color: white;
  font-size: 50px;
  cursor: pointer;

  line-height: 1;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;

  object-fit: contain;

  transition: transform .15s ease;

  cursor: grab;

  user-select: none;
  -webkit-user-drag: none;
}
.zoom-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;

  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 25px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: 0.25s ease;
}

.work-card:hover .zoom-icon {
  background: rgba(255,250,242,0.92);
  color: #171717;
  transform: scale(1.08);
}

@media (max-width: 720px) {
  .zoom-icon {
    width: 42px;
    height: 42px;
    top: 16px;
    right: 16px;
    font-size: 22px;
    background: rgba(0,0,0,0.46);
  }
}
.lightbox img {
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
  transition: transform 0.15s ease;
}
.video-card {
  position: relative;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.play-button{
  position:absolute;
  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  width:80px;
  height:80px;

  border-radius:50%;
  background:rgba(255,255,255,.9);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;
  color:#171717;

  z-index:5;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 10000;
}

.video-lightbox.active {
  display: flex;
}

.video-wrapper {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: 25px;
  right: 35px;

  background: none;
  border: none;

  color: white;
  font-size: 50px;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;

  border-radius: 50%;

  background: rgba(255,255,255,.92);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  z-index: 5;
}
.gallery-page {
  padding: 80px 6vw 40px;
}

.gallery-hero {
  margin-bottom: 55px;
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 400;
}

.gallery-section {
  margin-bottom: 90px;
}

.gallery-section h2 {
  margin: 0 0 34px;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -2px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: pointer;
  background: #111;
  filter: brightness(0.94);
  transition: 0.25s ease;
}

.photo-grid img:hover {
  filter: brightness(1);
  transform: scale(1.025);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #111;
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: 0.3s ease;
}

.video-item:hover img {
  filter: brightness(0.92);
  transform: scale(1.04);
}

.gallery-footer {
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: rgba(255,250,242,0.45);
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
}

.gallery-footer div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-footer a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-footer a:hover {
  background: var(--text);
  color: var(--paper);
}

@media (max-width: 950px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .gallery-page {
    padding: 58px 22px 30px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-footer {
    padding: 34px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}