:root {
  --bg: #fafafa;
  --text: #111111;
  --accent: #9ca3af;
  --card: #ffffff;
  --border: #eaeaea;
  --muted: #5f6368;
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.04);
  --shadow-strong: 0 14px 36px rgba(17, 17, 17, 0.09);
  --radius-lg: 1.25rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(156, 163, 175, 0.16), transparent 38%),
    radial-gradient(circle at 90% 15%, rgba(17, 17, 17, 0.04), transparent 30%),
    var(--bg);
  line-height: 1.6;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

main {
  padding-top: 6.8rem;
  padding-bottom: 3rem;
}

body.home-page main {
  padding-top: 0;
}

body.home-page .hero {
  padding-top: 0;
  margin-top: 0;
}

section {
  padding-block: 3.2rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1120px, calc(100% - 1rem));
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.6rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: rgba(250, 250, 250, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-pill.scrolled {
  padding: 0.45rem 0.78rem;
  box-shadow: var(--shadow-strong);
  border-color: rgba(17, 17, 17, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 2.9rem;
  height: 2.1rem;
  overflow: hidden;
  border-radius: 999px;
}

.brand img {
  display: block;
  height: 2.1rem;
  width: auto;
  object-fit: contain;
  transform: scale(1.42);
  transform-origin: center;
  filter: drop-shadow(0 1px 2px rgba(17, 17, 17, 0.15));
}

.nav-pill.scrolled .brand img {
  height: 1.9rem;
  transform: scale(1.42);
}

.nav-pill.scrolled .brand {
  height: 1.9rem;
}

.nav-toggle {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  width: 2.4rem;
  height: 2.4rem;
  color: var(--text);
}

.nav-toggle-line {
  width: 1rem;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  width: 1rem;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--text);
}

.nav-toggle-line::before {
  top: -0.34rem;
}

.nav-toggle-line::after {
  top: 0.34rem;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
}

.nav-menu.open {
  max-height: 75vh;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: #333333;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #111111;
  color: #ffffff;
}

.nav-actions {
  padding: 0 0.65rem 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #111111;
  color: #ffffff;
}

.btn-primary:hover {
  background: #222222;
}

.btn-ghost {
  border-color: var(--border);
  background: #ffffff;
  color: #111111;
}

.btn-ghost:hover {
  border-color: #cfd3da;
}

.btn-chip {
  border-color: var(--border);
  background: #ffffff;
  color: #111111;
  padding: 0.62rem 0.95rem;
  font-size: 0.9rem;
}

.btn-small {
  width: 100%;
}

.section-head {
  max-width: 720px;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  color: var(--muted);
}

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

.hero {
  padding-top: 0;
  padding-bottom: 1.6rem;
}

.hero-media-wrap {
  position: relative;
  min-height: clamp(540px, 84vh, 840px);
  overflow: clip;
  background: #111111;
  display: grid;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-mobile {
  display: block;
}

.hero-video-desktop {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.22)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.35) 52%, rgba(17, 17, 17, 0.64));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: clamp(6rem, 14vh, 8.2rem);
  padding-bottom: clamp(3rem, 10vh, 6.2rem);
  display: grid;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.85);
}

.hero .btn-primary {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero .btn-primary:hover {
  background: #f1f1f1;
}

.hero .btn-ghost,
.hero .btn-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(6px);
}

.hero .btn-ghost:hover,
.hero .btn-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-actions,
.cta-actions,
.social-bar,
.quick-actions,
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.quick-actions {
  margin-top: 0.45rem;
}

.quick-actions .btn {
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 130px;
}

.trust-chip {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: #3a3a3a;
}

.hero .trust-chip {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.grid-4,
.grid-3,
.price-grid,
.portrait-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.price-grid,
.portrait-grid,
.contact-grid {
  grid-template-columns: 1fr;
}

.card,
.price-card,
.service-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.price-card h3,
.service-card h3,
.card h3,
.contact-card h3 {
  margin-bottom: 0.3rem;
}

.service-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #eceff3, #d6dbe3);
}

.service-body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  flex: 1;
}

.service-body .card-actions {
  margin-top: auto;
  padding-top: 0.8rem;
}

.photography-showcase,
.creative-showcase {
  margin: 0 0 1.4rem;
}

.creative-showcase .photo-carousel {
  border-color: #dde0e5;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.photo-carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 0.1rem);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.photo-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: clamp(250px, 40vw, 470px);
  object-fit: cover;
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.5);
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-control.prev {
  left: 0.7rem;
}

.carousel-control.next {
  right: 0.7rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.42);
}

.carousel-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #ffffff;
}

.price {
  font-weight: 700;
  margin: 0.45rem 0 0.8rem;
  font-size: 1.06rem;
}

.price-card ul,
.feature-list,
.simple-list,
.contact-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.36rem;
  color: #2d2d2d;
}

.card-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-bar a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.56rem 0.86rem;
  background: #ffffff;
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-bar a:hover {
  transform: translateY(-1px);
  border-color: #c9ced6;
}

.social-icons a {
  display: inline-flex;
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-color: #d6d9df;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.06);
}

.social-icons a img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  display: block;
}

.social-icons a:hover {
  transform: translateY(-2px);
  border-color: #b8bec8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #111111, #3f464f);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 4vw, 2rem);
  display: grid;
  gap: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.96);
}

.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8dbe0;
  border-radius: 0.7rem;
  background: #ffffff;
  padding: 0.7rem 0.8rem;
  color: #111111;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.2);
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.48rem 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: #111111;
  color: #ffffff;
}

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

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, #eceff3, #d6dbe3);
}

.portfolio-item figcaption {
  padding: 0.5rem 0.65rem 0.75rem;
  font-size: 0.86rem;
  color: #2f2f2f;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2.3rem;
  font-size: 0.9rem;
  color: #4e4e4e;
}

.footer-main {
  display: grid;
  gap: 1rem;
}

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

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #1f1f1f;
  font-size: 1rem;
}

.footer-brand .muted {
  margin-top: 0.12rem;
  font-size: 0.84rem;
}

.footer-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-details strong {
  color: #1f1f1f;
}

.footer-details a {
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: #ffffff;
  font-size: 0.83rem;
}

.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.05);
}

.footer-icons a img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom a {
  color: #1f1f1f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.back-to-top {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.55rem);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  main {
    padding-top: 7.2rem;
  }

  .hero-video-mobile {
    display: none;
  }

  .hero-video-desktop {
    display: block;
  }

  .hero-media-wrap {
    min-height: clamp(620px, 86vh, 920px);
  }

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

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

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

  .quick-actions .btn {
    flex: 1 1 calc(25% - 0.55rem);
  }

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

  .back-to-top {
    right: 1.3rem;
    bottom: 1.2rem;
  }

  .footer-main {
    gap: 1.15rem;
  }

  .footer-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 0.42rem 0.6rem;
  }

  .nav-actions {
    padding: 0;
  }

  .btn-small {
    width: auto;
    padding: 0.52rem 0.82rem;
    font-size: 0.86rem;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
