@charset "UTF-8";
@layer theme, base, components, utilities;
/* Theme variables */
@layer theme {
  :root,
  :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
/* Base reset and primitives */
@layer base {
  *,
  :after,
  :before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
/* Utilities */
@layer utilities {
  .static {
    position: static;
  }
  .container {
    width: 100%;
  }
  @media (width >= 40rem) {
    .container {
      max-width: 40rem;
    }
  }
  @media (width >= 48rem) {
    .container {
      max-width: 48rem;
    }
  }
  @media (width >= 64rem) {
    .container {
      max-width: 64rem;
    }
  }
  @media (width >= 80rem) {
    .container {
      max-width: 80rem;
    }
  }
  @media (width >= 96rem) {
    .container {
      max-width: 96rem;
    }
  }
  .contents {
    display: contents;
  }
  .grid {
    display: grid;
  }
  .capitalize {
    text-transform: capitalize;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .uppercase {
    text-transform: uppercase;
  }
}
.Active-Page {
  color: #e05cf1;
  text-decoration-line: underline;
}

/* Header component styles (restored from vendor.css) */
.site-header {
  position: relative;
  z-index: 100;
  background: #18181b;
  color: #fff;
  padding: 1rem;
}

.site-header__inner {
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-weight: 800;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
}

.site-header__brand:hover {
  box-shadow: 0 10px 24px #5a1563;
}

.site-header__inner img {
  max-width: 3rem;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.site-header__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.14s ease, text-decoration-color 0.14s ease;
}

.site-header__link:hover {
  color: #d1d5db;
  text-decoration: underline;
}

.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 16rem;
  background: #27272a;
  transform: translate(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.mobile-drawer--open {
  transform: translate(0);
}

.mobile-drawer__close {
  align-self: flex-start;
  font-size: 2rem;
  line-height: 1;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 1.25rem;
}

.mobile-drawer__link {
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.14s ease, background-color 0.14s ease, transform 0.14s ease;
}

.mobile-drawer__link:hover {
  color: #d1d5db;
  text-decoration: underline;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: 10;
}

@media (min-width: 768px) {
  .site-header__brand {
    font-size: 1.875rem;
  }
  .site-header__nav {
    display: flex;
  }
  .site-header__menu-btn,
  .mobile-drawer {
    display: none;
  }
}
/* Reviews component styles moved to page partials to avoid duplicates
	See scss/pages/home/_home.scss for the full rules used on the homepage.
*/
/* Footer component styles */
.footer {
  background: #18181b;
  color: #fff;
  padding: 2rem 0 4rem;
}

.footer__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__column {
  margin-left: 1.5rem;
  margin-top: 3rem;
}

.footer__title {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
}

.footer__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  text-decoration: underline;
}

.footer__table {
  color: #d1d5db;
  border-collapse: collapse;
}

.footer__table td {
  padding: 0.25rem 0;
  vertical-align: top;
}

.footer__table td:last-child {
  padding-left: 2rem;
}

.footer__contact p {
  color: #d1d5db;
  margin: 0.2rem 0;
  line-height: 1.6;
}

.footer__spaced {
  margin-top: 1.5rem;
}

.footer__button {
  margin-top: 1rem;
  background: #6f1b7a;
  color: #fff;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

.footer__button:hover {
  transform: translateY(-3px);
  background: #5a1563;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2509803922);
}

.footer__button:active {
  transform: translateY(1px);
}

.socials {
  margin-right: 10px;
  max-width: 2rem;
  z-index: 10;
  margin-top: 10px;
}

.socials:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #ffffff;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__column {
    margin-left: 1rem;
  }
  .footer__contact {
    margin-left: 0;
  }
  .footer__button {
    font-size: 1.25rem;
    padding: 0.9rem 2rem;
  }
}
/* Hero component (moved to page partials to avoid duplicate definitions)
	Page-specific hero styles live in scss/pages/home/_home.scss
*/
/* dev-watch-test: add a tiny rule that will appear in compiled CSS */
.watch-dev-test {
  display: none;
}

/* Home page styles adapted from dist */
/* Hero section container */
.hero {
  position: relative;
  height: 30vh;
}

/* Parallax background layer */
.hero__parallax {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: brightness(60%);
  transform: translateZ(0);
  will-change: transform;
}

/* Hero overlay container */
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero content container */
.hero__content {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}

/* Hero headline styles */
.hero__headline {
  font-weight: 800;
  line-height: 1.05;
  padding: 0 1.5rem;
  font-size: 2.25rem;
}

/* Introduction section container */
.intro {
  width: 91.6667%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Introduction headline moved from hero overlay */
.intro__headline {
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  font-size: 2.25rem;
}

/* Introduction title */
.intro__title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-size: 1.875rem;
}

/* Introduction rule styling */
.intro__rule {
  width: 83.3333%;
  border: 0;
  border-top: 4px solid #000;
  margin-bottom: 1.5rem;
}

/* Call to action section title */
.intro__cta-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Call to action descriptive text */
.intro__text {
  font-size: 1.3125rem;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.45;
  max-width: 60rem;
  z-index: 1000;
}

/* Services section container */
.services {
  background: #18181b;
  color: #fff;
  padding: 3rem 0;
}

/* Inner container for services section */
.services__inner {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: 72rem;
}

/* Grid layout for services items */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Left column in services section */
.services__left {
  margin-left: 0.5rem;
}

/* Services section title */
.services__title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

/* Services descriptive text */
.services__description {
  width: 100%;
  font-size: 1.3125rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* Buttons container in services section */
.services__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Right column in services section */
.services__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Services list container */
.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual service item */
.services__item {
  display: flex;
  align-items: center;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Custom bullet for service items */
.services__bullet {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
}

/* Highlighted text style in services list */
.services__highlight {
  color: gold;
}

/* Reviews section container */
.reviews {
  width: 83.3333%;
  margin: 0 auto;
  padding: 3rem 0;
  color: #000;
  position: relative;
}

/* Reviews section title */
.reviews__title {
  width: 100%;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
}

/* Individual review card container */
.review-card {
  background: #f3e3fc;
  border: 2px solid #000;
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
  display: none;
  flex-direction: column;
}

/* Show the active slide */
.review-card.is-active {
  display: flex;
}

@keyframes slide-in-right {
  from {
    transform: translateX(2.5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  from {
    transform: translateX(-2.5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Slider list wrapper — anchors the arrow buttons */
.reviews__list {
  position: relative;
  margin: 0 3rem;
}

.reviews__list--next .review-card.is-active {
  animation: slide-in-right 0.35s ease;
}

.reviews__list--prev .review-card.is-active {
  animation: slide-in-left 0.35s ease;
}

/* Slider controls */
.reviews__controls {
  position: static;
}

.reviews__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6f1b7a;
  color: #fff;
  border: 0;
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
  z-index: 10;
}

.reviews__control--prev {
  left: -3rem;
}

.reviews__control--next {
  right: -3rem;
}

.reviews__control:hover {
  transform: translateY(-50%) translateX(0) scale(1.05);
  background: #5a1563;
}

/* Quote icon in review card */
.review-card__quote {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
}

/* Review card body content */
.review-card__body {
  margin-top: 3rem;
  line-height: 1.15;
}

/* Review text content */
.review-card__text {
  margin-bottom: 1rem;
}

/* Star rating */
.review-card__stars {
  color: #fbbf24; /* amber-400 */
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: 0.25rem 0 0.75rem;
}

/* Muted text style for reviewer info */
.review-card__muted {
  color: #374151;
}

/* List of bullets in review card */
.review-card__bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

/* Footer of review card */
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Reviewer name styling */
.review-card__reviewer {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: right;
}

/* Button base */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: #6f1b7a;
  color: #fff;
  border-color: #6f1b7a;
}

.btn--primary:hover {
  background: #5a1563;
  border-color: #5a1563;
}

/* Responsive design adjustments for larger screens */
@media (min-width: 768px) {
  .btn--primary.btn--wide {
    width: 20rem;
  }
  .hero__content {
    margin-bottom: 2.5rem;
  }
  .hero__headline {
    font-size: 6rem;
    padding: 0 6rem;
    line-height: 1.05;
  }
  .intro {
    width: 50%;
  }
  .intro__title {
    font-size: 2.5rem;
  }
  .intro__headline {
    font-size: 3rem;
  }
  .intro__rule {
    width: 100%;
  }
  .intro__cta-title {
    font-size: 1.875rem;
  }
  .btn--wide {
    width: 91.6667%;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services__left {
    margin-left: 6rem;
  }
  .services__right {
    margin-left: 4rem;
  }
  .services__title {
    font-size: 3.75rem;
  }
  .services__description {
    width: 75%;
  }
  .services__buttons {
    width: 40%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .reviews {
    width: 66.6667%;
  }
  .reviews__title {
    width: 50%;
    font-size: 2.25rem;
  }
}
/* Services page styles adapted from dist */
/* Hero section container */
.services-hero {
  position: relative;
}

/* Hero image styles */
.services-hero__img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
}

/* Hero title styles */
.services-hero__title {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #18181b;
}

/* Intro paragraph styles */
.services-intro {
  width: auto;
  max-width: 72rem;
  padding-right: 1.5rem;
  margin: 2.5rem auto 4rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Services grid container */
.services-grid {
  width: auto;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Styles for grid image and text blocks */
.services-grid__image,
.services-grid__text {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1803921569);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

/* Hover effect for grid image and text blocks */
.services-grid__image:hover,
.services-grid__text:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2196078431);
}

/* Specific padding for grid image blocks */
.services-grid__image {
  padding: 0;
}

/* Specific padding and margin for grid text blocks */
.services-grid__text {
  padding: 1rem;
  margin-bottom: 2.5rem;
}

/* Grid image styling */
.services-grid__img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
}

/* Taller grid image styling */
.services-grid__img--tall {
  height: 20rem;
}

/* Services block container */
.services-block {
  text-align: left;
}

/* Services block number styling */
.services-block__number {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
}

/* Services block heading styling */
.services-block__heading {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Services block descriptive copy styling */
.services-block__copy {
  margin-top: 0.5rem;
  line-height: 1.6;
  font-size: 1.125rem;
}

/* Estimate section container */
.estimate {
  position: relative;
  margin-top: 3rem;
}

/* Background image in estimate section */
.estimate__bg {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  filter: brightness(50%);
  display: block;
}

/* Card container for estimate section */
.estimate__card {
  position: absolute;
  inset: 0;
  width: 91.6667%;
  height: 50%;
  margin: 8rem auto 0;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  background: rgba(24, 24, 27, 0.9019607843);
}

/* Estimate section title */
.estimate__title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}

/* Estimate descriptive text */
.estimate__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
  max-width: 42rem;
}

/* Estimate call-to-action button */
.estimate__button {
  margin-top: 2rem;
  background: #6f1b7a;
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

/* Estimate button hover effect */
.estimate__button:hover {
  transform: translateY(-3px);
  background: #5a1563;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Estimate button active effect */
.estimate__button:active {
  transform: translateY(1px);
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .services-hero__title {
    font-size: 4.5rem;
    left: 6rem;
    bottom: 6rem;
  }
  .services-intro {
    width: 75%;
    font-size: 1.875rem;
    margin-top: 8rem;
    margin-left: auto;
  }
  .services-grid {
    width: 75%;
    grid-template-columns: 1fr 1fr;
  }
  .services-block__number {
    margin-top: 2rem;
    font-size: 3.75rem;
  }
  .services-block__heading {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .services-grid__img--tall {
    height: 83.3333%;
  }
  .estimate__card {
    width: 41.6667%;
    height: 66.6667%;
    margin-top: 6rem;
  }
  .estimate__title {
    font-size: 3.75rem;
  }
  .estimate__text {
    font-size: 1.5rem;
  }
  .estimate__button {
    padding: 1rem 2.5rem;
  }
}
/* Projects page styles - cleaned
   Mobile: single column
   Desktop (>=768px): two columns
   Each before/after image is its own card column. Single images span both columns.
*/
.projects-hero {
  position: relative;
}

.projects-hero__img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
}

.projects-hero__title {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(24, 24, 27, 0.7490196078);
}

/* Tabs */
.projects-tabs {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.projects-tabs__nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #eee;
}

.projects-tabs__tab {
  background: transparent;
  border: 0;
  padding: 0.5rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.projects-tabs__tab[aria-selected=true] {
  background: #6f1b7a;
  color: #fff;
  border-radius: 6px;
}

.projects-tabs__panel {
  padding: 1rem 0;
}

/* Grid container - each card is its own grid item */
.projects__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

/* Apply sizing to every image in projects to keep consistent visuals */
.projects img {
  max-height: 400px;
  width: 100%;
  object-fit: scale-down;
}

/* Card - now direct grid item */
.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 0.25rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
}

.card .pair__img {
  display: block;
  margin: 0;
}

.pair__item {
  margin: 0;
  padding: 0;
}

.card .pair__caption {
  padding: 0.25rem 0.5rem;
  text-align: center;
  color: #555;
  font-weight: 700;
  font-style: italic;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
}

/* Single images span both columns on desktop */
.single {
  display: block;
}

.single__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.projects__album-title {
  grid-column: 1/-1;
  font-size: 1.1rem;
  font-weight: 700;
  color: #6f1b7a;
  margin: 0.5rem 0 0.25rem;
}

.projects__rule {
  grid-column: 1/-1;
  border: 0;
  border-top: 1px solid #e6e6e6;
  margin: 0.5rem 0;
}

/* Gallery grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 0;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: zoom-in;
  background: #f0f0f0;
  aspect-ratio: 1;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.12);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 1.5rem 0.75rem 0.6rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__empty {
  color: #999;
  font-style: italic;
  padding: 2rem 0;
}

/* Lightbox modal */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  z-index: 11000;
  padding: 1rem;
}

.image-modal.is-open {
  display: flex;
}

.image-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.image-modal__caption {
  color: #e5e5e5;
  font-size: 0.9rem;
  text-align: center;
}

.image-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.image-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Desktop layout: four columns for before/after pairs, preserves image clarity */
@media (min-width: 768px) {
  .projects-hero__title {
    font-size: 4.5rem;
    left: 6rem;
    bottom: 6rem;
  }
  .projects {
    padding: 1rem 0 2rem 0;
  }
  .projects__block {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-auto-flow: dense;
    position: relative;
  }
  .projects__block::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
  }
  .card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
  }
  .card .pair__img {
    width: 100%;
  }
  .single {
    grid-column: span 4;
  }
  .projects__rule {
    grid-column: 1/-1;
  }
}
/* Contact page styles adapted from dist */
/* Hero section container */
.contact-hero {
  position: relative;
}

/* Hero image styles */
.contact-hero__img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
}

/* Hero title styles */
.contact-hero__title {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 2.25rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #18181b;
}

/* Main page container */
.contact-page {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
}

/* Page headline styles */
.contact-page__headline {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0 0 2.5rem;
  line-height: 1.2;
  max-width: 42rem;
}

/* Grid layout for the page content */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Form field container */
.field {
  margin-bottom: 1rem;
}

/* Labels for form fields */
.field__label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.35rem;
}

/* Input fields styling */
.field__input {
  width: 100%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease, transform 0.14s ease;
}

/* Input hover effect */
.field__input:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 113, 207, 0.6509803922);
  box-shadow: 0 0 0 4px rgba(182, 113, 207, 0.1215686275);
  background: #fff;
}

/* Input focus effect */
.field__input:focus {
  border-color: rgba(111, 27, 122, 0.6509803922);
  box-shadow: 0 0 0 4px rgba(111, 27, 122, 0.1490196078);
  background: #fff;
}

/* Placeholder text styling */
.field__input::placeholder {
  color: #6b7280;
  transition: color 0.14s ease;
}

/* Textarea styling */
.field__textarea {
  min-height: 9rem;
  resize: vertical;
}

/* Error message styling */
.field__error {
  margin-top: 0.35rem;
  color: #ef4444;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Container for form actions */
.contact-form__actions {
  text-align: center;
  margin: 0.5rem 0 1rem;
}

/* Submit button styling */
.contact-form__submit {
  background: #6f1b7a;
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

/* Submit button hover effect */
.contact-form__submit:hover {
  transform: translateY(-3px);
  background: #5a1563;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1803921569);
}

/* Submit button active effect */
.contact-form__submit:active {
  transform: translateY(1px);
}

/* Toast overlay container */
.toast-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: 9999;
}

/* Toast notification styling */
.toast {
  max-width: 22rem;
  width: 100%;
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: 0.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2509803922);
  color: #111;
  background: #fff;
  font-weight: 700;
}

/* Toast success variant */
.toast--success {
  background: #76e8b7;
}

/* Toast error variant */
.toast--error {
  background: #ff6b6b;
}

/* Divider line styling */
.contact-divider {
  border: 0;
  border-top: 4px solid #000;
  width: 100%;
  margin: 1.5rem auto;
}

/* Contact information container */
.contact-info {
  padding-left: 0.5rem;
  font-size: 1.125rem;
}

/* Contact information title */
.contact-info__title {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
}

/* Contact information line styling */
.contact-info__line {
  margin: 0 0 0.5rem;
}

/* Contact information block spacing */
.contact-info__block {
  margin-top: 1.5rem;
}

/* Contact information subtitle styling */
.contact-info__subtitle {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  text-decoration: underline;
}

/* Contact information table styling */
.contact-info__table {
  width: 100%;
  border-collapse: collapse;
  color: #27272a;
}

/* Contact information table cell styling */
.contact-info__table td {
  padding: 0.25rem 0;
  vertical-align: top;
}

/* Contact visit link/color style */
.contact-info__visit {
  color: #27272a;
}

/* Contact visit title styling */
.contact-info__visit-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  text-decoration: underline;
}

/* Contact break line styling */
.contact-break {
  border: 0;
  border-top: 4px solid #000;
  width: 83.3333%;
  margin: 4rem auto;
}

/* Contact map container */
.contact-map {
  margin: 3rem auto;
  width: 90%;
  height: 250px;
  text-align: center;
}

/* Contact map iframe styling */
.contact-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .contact-hero__title {
    font-size: 4.5rem;
    left: 6rem;
    bottom: 6rem;
  }
  .contact-page {
    margin-top: 6rem;
  }
  .contact-page__headline {
    font-size: 3rem;
    width: 50%;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-divider {
    display: none;
  }
  .contact-form__actions {
    margin: 2rem 0;
  }
  .contact-info {
    padding-left: 4rem;
  }
  .contact-break {
    width: 83.3333%;
    margin: 6rem auto;
  }
  .contact-map {
    width: 50%;
    height: 400px;
  }
}

/*# sourceMappingURL=styles.css.map */
