:root {
  --bg-page: #f3fbf5;
  --bg-gallery: #f9f9f8;
  --bg-soft: #f3f5fa;
  --text-strong: #1a1a1a;
  --text-body: #6b7280;
  --text-dark-soft: #333333;
  --text-white: #ffffff;
  --line-soft: #f3f4f6;
  --pink: #fd5971;
  --pink-soft: #dc5acb;
  --shadow-card: 0 10px 20px rgba(89, 118, 159, 0.1);
  --shadow-hover: 0 20px 48px rgba(16, 24, 40, 0.12);
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container: 1200px;
  --transition: 380ms cubic-bezier(0.22, 1, 0.36, 1);
  --gradient-accent: linear-gradient(270deg, #fd5971 0%, #dc5acb 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-page);
  color: var(--text-strong);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #4b5563;
}

.site-nav a {
  position: relative;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient-accent);
  border-radius: 999px;
  transition: transform var(--transition);
}

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

.site-nav a.is-active {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-strong);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 990px;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f3 100%);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__media:hover img {
  transform: scale(1.06);
}

.hero__veil {
  background: linear-gradient(
    88.84deg,
    #ffffff 0.5%,
    rgba(255, 255, 255, 0.8) 19.69%,
    rgba(255, 255, 255, 0.5) 38.23%,
    rgba(255, 255, 255, 0) 55.66%
  );
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 990px;
}

.hero__copy {
  max-width: 660px;
  padding-top: 64px;
}

.hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero__copy p {
  margin-top: 24px;
  color: var(--text-strong);
  font-size: 20px;
  line-height: 24px;
  max-width: 580px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  background: var(--gradient-accent);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 90, 203, 0.28);
}

.section--gallery,
.gallery-section {
  padding: 160px 0;
  background: var(--bg-gallery);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 960px);
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.section-heading p {
  width: min(100%, 600px);
  color: var(--text-body);
  font-size: 20px;
  line-height: 24px;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--text-dark-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  gap: 40px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:not(.gallery-card--tall) {
  aspect-ratio: 1;
}

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

.image-swap__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-swap:hover .image-swap__hover {
  opacity: 1;
}

.gallery-card--tall {
  height: 850px;
}

.gallery-card__base,
.gallery-card__overlay,
.gallery-card__light {
  position: absolute;
  inset: 0;
}

.gallery-card__overlay img,
.gallery-card__light img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 850px;
  height: 850px;
  transform: translateX(-50%);
}

.gallery-card:hover .gallery-card__overlay img,
.gallery-card:focus-within .gallery-card__overlay img,
.gallery-card:hover .gallery-card__light img,
.gallery-card:focus-within .gallery-card__light img {
  transform: translateX(-50%) scale(1.04);
}

.gallery-card__light {
  mix-blend-mode: soft-light;
  opacity: 0.7;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.04);
}

.gallery-card img,
.gallery-card__overlay img,
.gallery-card__light img {
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.highlights {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.highlights__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, #fd5971 0%, #dc5acb 100%),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.95) 70.422%,
      #ffffff 100%
    );
}

.highlights__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.95) 70.422%,
    #ffffff 100%
  );
}

.highlights .container {
  position: relative;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.highlight-card {
  display: grid;
  grid-template-columns: 576px 333px;
  align-items: center;
  gap: 84px;
  padding: 12px;
  border-radius: var(--radius-xl);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
              background 380ms cubic-bezier(0.22, 1, 0.36, 1),
              border 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.5);
  border: 3px solid #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.highlight-card img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-card:hover img {
  transform: scale(1.06);
}

.highlight-card--featured {
  justify-content: space-between;
  grid-template-columns: 518px 576px;
}

.highlight-card--featured .highlight-card__copy {
  padding-left: 185px;
}

.highlight-card__copy h3 {
  color: var(--text-dark-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.highlight-card__copy p {
  margin-top: 12px;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.testimonials {
  padding: 160px 0;
  background: var(--bg-gallery);
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  gap: 40px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 294px;
  padding: 40px;
  background: #ffffff;
  border: 3px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: border 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  border-color: var(--pink);
}

.testimonial-card__quote {
  color: var(--text-dark-soft);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 26px;
}

.testimonial-card__person {
  display: inline-grid;
  grid-template-columns: 80px max-content;
  align-items: center;
  gap: 16px;
}

.testimonial-card__person img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-card__person strong {
  color: var(--text-dark-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.testimonial-card__mark {
  position: relative;
  align-self: flex-end;
  width: 42.667px;
  height: 32px;
}

.testimonial-card__mark-img,
.testimonial-card__mark-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 42.667px;
  height: 32px;
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card__mark-hover {
  opacity: 0;
}

.testimonial-card:hover .testimonial-card__mark-img {
  opacity: 0;
}

.testimonial-card:hover .testimonial-card__mark-hover {
  opacity: 1;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.testimonial-controls__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 380ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-controls__button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.testimonial-controls__button--muted {
  opacity: 0.3;
  pointer-events: none;
}

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.testimonial-carousel {
  overflow: hidden;
}

.contact-banner {
  position: relative;
  overflow: hidden;
}

.contact-banner__media,
.contact-banner__media img,
.contact-banner__overlay {
  position: absolute;
  inset: 0;
}

.contact-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.contact-banner__overlay {
  background: linear-gradient(
    143.71deg,
    #141c2b 16.173%,
    rgba(27, 39, 61, 0.804) 29.164%,
    rgba(63, 91, 143, 0) 82.295%
  );
}

.contact-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 54px;
  min-height: 920px;
  padding: 160px 0 318px;
}

.contact-banner__intro h2 {
  color: #ffffff;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.contact-banner__intro p {
  width: min(100%, 600px);
  margin-top: 16px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-item span {
  transition: color 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-item:hover span {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.contact-item img {
  flex: none;
}

.contact-item--start {
  align-items: flex-start;
}

.closing-note {
  padding: 160px 24px;
  background: var(--bg-gallery);
}

.closing-note .section-heading p {
  max-width: 800px;
}

.site-footer {
  padding: 0 24px 40px;
  background: var(--bg-soft);
}

.site-footer .container {
  border-top: 1px solid rgba(0, 0, 0, 0);
}

.site-footer p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-delay-1 { --reveal-delay: 100ms; }
.reveal-delay-2 { --reveal-delay: 200ms; }
.reveal-delay-3 { --reveal-delay: 300ms; }
.reveal-delay-4 { --reveal-delay: 400ms; }
.reveal-delay-5 { --reveal-delay: 500ms; }

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

.reveal-item--left {
  transform: translate3d(-44px, 24px, 0) scale(0.985);
}

.reveal-item--right {
  transform: translate3d(44px, 24px, 0) scale(0.985);
}

.reveal-item--contact {
  transform: translate3d(0, 60px, 0) scale(0.95);
  filter: blur(8px);
}

.reveal-item--contact.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-item--hero {
  transform: translate3d(0, 40px, 0) scale(0.98);
}

@media (max-width: 1024px) {
  .container,
  .site-header__inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero {
    min-height: 820px;
  }

  .hero__content {
    min-height: 820px;
  }

  .gallery-grid,
  .testimonial-grid,
  .highlight-card,
  .highlight-card--featured {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    justify-items: center;
  }

  .gallery-column {
    width: min(100%, 580px);
  }

  .highlight-card,
  .highlight-card--featured {
    gap: 32px;
  }

  .highlight-card--featured .highlight-card__copy {
    padding-left: 0;
    order: 2;
  }

  .highlight-card--featured img {
    order: 1;
  }

  .contact-banner__inner {
    padding: 120px 0 240px;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 16px;
    padding: 18px 16px 20px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 44px rgba(16, 24, 40, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    min-height: 720px;
    padding-top: 56px;
    align-items: flex-end;
  }

  .hero__copy {
    max-width: 100%;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(4px);
  }

  .hero__copy p,
  .section-heading p,
  .contact-banner__intro p {
    font-size: 16px;
  }

  .section--gallery,
  .gallery-section,
  .highlights,
  .testimonials,
  .closing-note {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .gallery-card--tall {
    height: auto;
    aspect-ratio: 580 / 850;
  }

  .gallery-card__overlay img,
  .gallery-card__light img {
    width: 146.55%;
    height: auto;
  }

  .contact-banner__inner {
    min-height: 760px;
    padding: 112px 0 160px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    min-height: 620px;
  }

  .hero__copy h1,
  .section-heading h2,
  .contact-banner__intro h2 {
    font-size: 2.5rem;
    line-height: 0.95;
  }

  .hero__button {
    margin-top: 36px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonial-card__person {
    grid-template-columns: 64px 1fr;
  }

  .testimonial-card__person img {
    width: 64px;
    height: 64px;
  }

  .testimonial-card__person strong {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-item {
    align-items: flex-start;
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .gallery-card,
  .gallery-card img,
  .hero__button,
  .hero__media img,
  .highlight-card,
  .highlight-card img,
  .testimonial-card,
  .testimonial-card__mark-img,
  .testimonial-card__mark-hover,
  .testimonial-controls__button,
  .contact-item span,
  .site-nav,
  .site-nav a::after,
  .nav-toggle span {
    transition: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
