:root {
  --bg: #0d1214;
  --bg-soft: #141d1f;
  --panel: rgba(20, 29, 31, 0.8);
  --foreground: #f3efe9;
  --muted: #d2d8d3;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f6b533;
  --accent-strong: #f29b2f;
  --accent-soft: #f8d97a;
  --teal: #3ad3d9;
  --teal-deep: #1ca7b5;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(58, 211, 217, 0.12), transparent 35%),
    linear-gradient(180deg, #0a0d10 0%, #11191b 100%);
  color: var(--foreground);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-spacing {
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-soft);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: 2.6rem;
  padding-bottom: 0.15rem;
  background: linear-gradient(120deg, #f9dd85 0%, #f3b342 30%, #f8d88f 50%, #4ad7df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(12, 16, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0.7rem 0.65rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--foreground);
  margin: 5px 0;
  border-radius: 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 600px;
}

.lead {
  max-width: 42rem;
  font-size: 1.08rem;
  margin-top: 0.8rem;
  margin-bottom: 2.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #171919;
  box-shadow: 0 18px 36px rgba(246, 181, 51, 0.26);
  font-weight: 700;
}

.button.secondary {
  border-color: rgba(58, 211, 217, 0.5);
  background: rgba(58, 211, 217, 0.08);
  color: var(--foreground);
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.hero-stats strong {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--foreground);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 1rem;
  min-height: 620px;
}

.featured-card {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101617;
}

.featured-card img {
  height: 100%;
  object-fit: cover;
}

.card-large {
  transform: translateY(1.2rem);
}

.card-small {
  transform: translateY(-1.2rem);
}

.brand-badge {
  position: absolute;
  width: 150px;
  height: 150px;
  right: 8%;
  bottom: 5%;
  border-radius: 50%;
  background: rgba(14, 19, 21, 0.9);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-heading {
  margin-bottom: 2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.filter.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #071516;
  border-color: transparent;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 420px;
  background: #12181b;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 9, 10, 0.82) 100%);
  color: #fff;
}

.gallery-caption span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.32rem;
}

.gallery-caption h3 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.signature {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
}

.signature img {
  display: block;
  width: min(336px, 60%);
  height: auto;
  opacity: 0.9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-card {
  padding: 2rem 1.5rem;
  border-radius: 1.4rem;
  background: rgba(17, 23, 24, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.process-card span {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
}

.process-card h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #101618;
  color: #f7f2ed;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.site-footer .eyebrow {
  color: var(--accent-soft);
}

.site-footer h2 {
  color: #f7f2ed;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  font-size: 1rem;
}

.contact-details a {
  color: rgba(247, 242, 237, 0.9);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  color: rgba(247, 242, 237, 0.76);
}

.subtle-note {
  font-size: 0.9rem;
  color: rgba(247, 242, 237, 0.56);
  margin-top: 0.5rem;
}

.subtle-note a {
  color: rgba(247, 242, 237, 0.72);
  border-bottom: 1px solid rgba(247, 242, 237, 0.3);
  transition: color 200ms ease, border-color 200ms ease;
}

.subtle-note a:hover {
  color: rgba(247, 242, 237, 0.9);
  border-bottom-color: rgba(247, 242, 237, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

.gallery-item {
  cursor: pointer;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 12, 0.82);
  backdrop-filter: blur(8px);
}

.photo-modal-content {
  position: relative;
  width: min(92vw, 980px);
  max-height: 90vh;
  border-radius: 1.5rem;
  background: rgba(13, 18, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.photo-modal-content img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #0b1012;
}

.photo-modal-meta {
  padding: 1rem 1.4rem 1.3rem;
  background: linear-gradient(180deg, rgba(13, 18, 20, 0.2), rgba(13, 18, 20, 0.93));
}

.photo-modal-kicker {
  margin-bottom: 0.35rem;
}

.photo-modal-meta h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--foreground);
}

.photo-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 1.1rem;
  }

  .hero-visual {
    min-height: 420px;
  }

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

@media (max-width: 680px) {
  .section-spacing {
    padding: 4.5rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.75rem);
    width: min(220px, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    background: rgba(14, 19, 20, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .brand-text {
    font-size: 0.78rem;
  }

  .brand-text small {
    letter-spacing: 0.12em;
  }

  .hero-stats {
    gap: 1.2rem 2rem;
  }

  .gallery-item {
    min-height: 330px;
  }

  .brand-badge {
    width: 110px;
    height: 110px;
    right: 6%;
    bottom: 2%;
  }
}
