:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #e8f4f8;
  --surface-2: #d9ecf1;
  --text: #2d4a56;
  --muted: #6b8a92;
  --accent: #7ebd95;
  --accent-strong: #9ccfb0;
  --border: rgba(126, 189, 149, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(126, 189, 149, 0.08), transparent 35%),
              radial-gradient(circle at left, rgba(94, 164, 191, 0.06), transparent 22%),
              var(--bg);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner,
.about-inner,
.contact-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.header-inner {
  grid-template-columns: 1fr auto;
}

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

.logo {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  padding: 0.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 5rem 0 6rem;
  background: linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32)), url('./Photos\ for\ site/IMG_4722.jpeg') center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.hero-copy {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.03;
  margin: 0 0 1rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #111;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 600px;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.gallery-grid,
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

.gallery-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-image.portrait,
.gallery-image.wedding,
.gallery-image.lifestyle {
  background: var(--surface-2);
}

.gallery-copy {
  padding: 1.75rem;
}

.gallery-copy h3 {
  margin: 0 0 0.75rem;
}

.gallery-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  background: linear-gradient(180deg, rgba(126, 189, 149, 0.05), rgba(94, 164, 191, 0.03));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.carousel {
  position: relative;
  overflow: visible;
  width: min(1040px, 100%);
  margin: 0 auto;
  border-radius: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 1in;
  transition: transform 0.4s ease;
  padding: 0;
}
.carousel-slide {
  flex: 0 0 52.5%;
  display: grid;
  place-items: center;
  min-height: 520px;
  background: transparent;
  opacity: 0.35;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  filter: brightness(0.75);
}

.carousel-slide:not(.current-slide) {
  opacity: 0.35;
  filter: brightness(0.7) saturate(0.9);
}

.carousel-slide.current-slide {
  opacity: 1;
  transform: scale(1.3333);
  filter: none;
  z-index: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (max-width: 900px) {
  .carousel-track {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .carousel-track {
    padding: 0 1rem;
  }

  .carousel-slide {
    flex: 0 0 90%;
  }
}

.carousel-button:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-button--prev {
  left: 1rem;
}

.carousel-button--next {
  right: 1rem;
}

.carousel-indicators {
  display: none;
}

.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(126, 189, 149, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-indicator.active {
  background: var(--accent);
  transform: scale(1.1);
}

.page-intro {
  color: var(--muted);
  max-width: 640px;
  margin-top: 0.75rem;
  line-height: 1.8;
}

.gallery-page-actions {
  margin-top: 1.5rem;
}

.about-inner {
  grid-template-columns: 1.2fr 0.8fr;
}

.about-copy h2 {
  margin-top: 0;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.about-copy ul {
  padding-left: 1.2rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.about-copy li {
  margin-bottom: 0.75rem;
}

.about-image {
  min-height: 320px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #7ebd95 0%, #5ea4bf 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 540px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(126, 189, 149, 0.2);
  background: rgba(126, 189, 149, 0.05);
  color: var(--text);
  padding: 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(126, 189, 149, 0.5);
  outline-offset: 2px;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

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

  .about-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .gallery-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}
