
/* =========================================
   HOME PAGE
========================================= */

/* Scroll reveal animation */

.reveal-item {

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;

}

.reveal-active {

  opacity: 1;
  transform: translateY(0);

}

/* Button hover slide effect */

.btn-hover-slide {

  position: relative;
  overflow: hidden;

}

.btn-hover-slide::before {

  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;

}

.btn-hover-slide:hover::before {

  left: 0;

}

.btn-text-content {

  position: relative;
  z-index: 2;

}

/* Thin border utility */

/* =========================================
   ABOUT PAGE
========================================= */

/* About page reveal animation */

.fade-up-element {

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out,
    transform 0.6s ease-out;

}

.fade-up-element.is-visible {

  opacity: 1;
  transform: translateY(0);

}

/* Primary slide-fill button */

/* White slide-fill button */

/* =========================================
   SHARED FADE-UP ANIMATION
   SERVICES, GALLERY AND CONTACT PAGES
========================================= */

.fade-up {

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out,
    transform 0.6s ease-out;

}

.fade-up.visible {

  opacity: 1;
  transform: translateY(0);

}

/* =========================================
   SERVICES PAGE
========================================= */

/* =========================================
   GALLERY PAGE
========================================= */

/* Optional masonry grid utility */

/* Gallery card */

/* Gallery hover overlay */

/* =========================================
   CONTACT PAGE
========================================= */

/* Minimal form fields */

/* Contact submit button */

/* =========================================
   AANA PHOTOGRAPHY NAVBAR
========================================= */

:root {

  --photo-primary: #0d6b68;
  --photo-primary-dark: #075653;
  --photo-white: #ffffff;
  --photo-text-soft: rgba(255, 255, 255, 0.82);
  --photo-border: rgba(255, 255, 255, 0.14);

}

/* =========================================
   HEADER
========================================= */

.photo-header {

  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--photo-primary);

}

/* =========================================
   MAIN NAVBAR
========================================= */

.photo-navbar {

  width: 100%;
  background: var(--photo-primary);
  border-bottom: 1px solid var(--photo-border);

}

.photo-navbar-container {

  width: 100%;
  max-width: 1340px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

}

/* Brand */

/* =========================================
   DESKTOP NAVIGATION
========================================= */

.photo-desktop-nav {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;

}

.photo-nav-link {

  position: relative;
  padding: 28px 0 24px;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;

}

.photo-nav-link:hover,
.photo-nav-link.active {

  color: var(--photo-white);

}

.photo-nav-link::after {

  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--photo-white);
  transform: translateX(-50%);
  transition: width 0.3s ease;

}

.photo-nav-link:hover::after,
.photo-nav-link.active::after {

  width: 100%;

}

/* =========================================
   DESKTOP BOOKING BUTTON
========================================= */

.photo-book-button {

  flex-shrink: 0;
  min-width: 166px;
  min-height: 44px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--photo-white);
  background: transparent;
  color: var(--photo-white);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}

.photo-book-button:hover {

  background: var(--photo-white);
  color: var(--photo-primary);
  transform: translateY(-2px);

}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.photo-menu-button {

  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

}

.photo-menu-line {

  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--photo-white);
  border-radius: 999px;
  transition: transform 0.3s ease,
    opacity 0.3s ease;

}

.photo-menu-button.active .photo-menu-line:nth-child(1) {

  transform: translateY(7px) rotate(45deg);

}

.photo-menu-button.active .photo-menu-line:nth-child(2) {

  opacity: 0;

}

.photo-menu-button.active .photo-menu-line:nth-child(3) {

  transform: translateY(-7px) rotate(-45deg);

}

/* =========================================
   DESKTOP DIVISION BAR
========================================= */

.photo-division-bar {

  width: 100%;
  background: var(--photo-primary-dark);
  border-bottom: 1px solid var(--photo-border);

}

.photo-division-container {

  width: 100%;
  max-width: 1340px;
  min-height: 54px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;

}

.photo-division-link {

  position: relative;
  padding: 18px 0 17px;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease,
    transform 0.3s ease;

}

.photo-division-link::after {

  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 6px;
  height: 6px;
  background: var(--photo-white);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(5px) scale(0.4);
  transition: opacity 0.25s ease,
    transform 0.3s ease;

}

.photo-division-link:hover,
.photo-division-link.active {

  color: var(--photo-white);

}

.photo-division-link:hover {

  transform: translateY(-1px);

}

.photo-division-link:hover::after,
.photo-division-link.active::after {

  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);

}

/* =========================================
   MOBILE SIDE MENU
========================================= */

.photo-mobile-menu {

  position: fixed;
  top: 0;
  right: 0;
  z-index: 2001;
  width: min(320px, 92vw);
  height: 100dvh;
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  background: var(--photo-primary-dark);
  color: var(--photo-white);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform 0.35s ease,
    visibility 0.35s ease;

}

.photo-mobile-menu.active {

  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);

}

/* Mobile header */

.photo-mobile-menu-header {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

}

.photo-mobile-close {

  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--photo-white);
  cursor: pointer;
  transition: background-color 0.3s ease,
    border-color 0.3s ease;

}

.photo-mobile-close:hover {

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);

}

.photo-mobile-close .material-symbols-outlined {

  font-size: 21px;

}

/* Main mobile links */

.photo-mobile-main-links {

  display: flex;
  flex-direction: column;
  gap: 4px;

}

.photo-mobile-link {

  width: 100%;
  padding: 12px;
  display: block;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;

}

.photo-mobile-link:hover {

  padding-left: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--photo-white);

}

.photo-mobile-link.active {

  background: rgba(255, 255, 255, 0.12);
  color: var(--photo-white);

}

/* Divider */

.photo-mobile-divider {

  width: 100%;
  height: 1px;
  margin: 14px 0 12px;
  background: rgba(255, 255, 255, 0.11);

}

/* Mobile divisions */

.photo-mobile-division {

  display: flex;
  flex-direction: column;
  gap: 4px;

}

.photo-mobile-division-title {

  padding: 0 12px 6px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

.photo-mobile-division-link {

  position: relative;
  width: 100%;
  padding: 12px;
  display: block;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;

}

.photo-mobile-division-link:hover {

  padding-left: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--photo-white);

}

.photo-mobile-division-link.active {

  background: rgba(255, 255, 255, 0.12);
  color: var(--photo-white);

}

.photo-mobile-division-link.active::after {

  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  background: var(--photo-white);
  border-radius: 50%;
  transform: translateY(-50%);

}

/* Mobile booking button */

.photo-mobile-book-button {

  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--photo-white);
  border-radius: 999px;
  background: var(--photo-white);
  color: var(--photo-primary-dark);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}

.photo-mobile-book-button:hover {

  background: transparent;
  color: var(--photo-white);
  transform: translateY(-1px);

}

/* =========================================
   MOBILE OVERLAY
========================================= */

.photo-mobile-overlay {

  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease,
    visibility 0.3s ease;

}

.photo-mobile-overlay.active {

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .photo-navbar-container {

    padding: 0 24px;
    gap: 20px;

  }

  .photo-desktop-nav {

    gap: 22px;

  }

  .photo-book-button {

    min-width: 148px;
    padding: 12px 18px;

  }

}

@media (max-width: 900px) {

  .photo-navbar-container {

    min-height: 70px;
    padding: 0 20px;

  }

  .photo-desktop-nav,
  .photo-book-button,
  .photo-division-bar {

    display: none;

  }

  .photo-menu-button {

    display: block;

  }

}

@media (max-width: 480px) {

  .photo-navbar-container {

    min-height: 64px;
    padding: 0 16px;

  }

  .photo-mobile-menu {

    width: min(300px, 94vw);
    padding: 12px 10px 14px;

  }

}

@media (min-width: 901px) {

  .photo-mobile-menu,
  .photo-mobile-overlay {

    display: none;

  }

}

/* =========================================
   AANA PHOTOGRAPHY FOOTER
========================================= */

.photo-footer {

  width: 100%;
  background: var(--photo-primary-dark);
  color: var(--photo-white);
  border-top: 1px solid var(--photo-border);

}

/* =========================================
   MAIN FOOTER LAYOUT
========================================= */

.photo-footer-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 72px 32px 64px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
  gap: 64px;

}

/* =========================================
   BRAND COLUMN
========================================= */

.photo-footer-brand-column {

  padding-right: 20px;

}

.photo-footer-brand {

  display: inline-block;
  margin-bottom: 24px;
  color: var(--photo-white);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-decoration: none;

}

.photo-footer-description {

  max-width: 340px;
  margin: 0 0 30px;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;

}

/* =========================================
   SOCIAL ICONS
========================================= */

.photo-footer-socials {

  display: flex;
  align-items: center;
  gap: 12px;

}

.photo-footer-social-link {

  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--photo-white);
  text-decoration: none;
  transition: background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}

.photo-footer-social-link i {

  font-size: 16px;

}

.photo-footer-social-link:hover {

  background: var(--photo-white);
  border-color: var(--photo-white);
  color: var(--photo-primary-dark);
  transform: translateY(-3px);

}

/* =========================================
   FOOTER TITLES
========================================= */

.photo-footer-title {

  position: relative;
  margin: 0 0 34px;
  padding-bottom: 15px;
  color: var(--photo-white);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;

}

.photo-footer-title::after {

  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--photo-white);
  border-radius: 999px;

}

/* =========================================
   FOOTER LINKS
========================================= */

.photo-footer-links {

  margin: 0;
  padding: 0;
  list-style: none;

}

.photo-footer-links li {

  margin-bottom: 16px;

}

.photo-footer-links li:last-child {

  margin-bottom: 0;

}

.photo-footer-links a {

  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease,
    transform 0.3s ease;

}

.photo-footer-links a::before {

  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--photo-white);
  transition: width 0.3s ease,
    margin-right 0.3s ease;

}

.photo-footer-links a:hover {

  color: var(--photo-white);
  transform: translateX(3px);

}

.photo-footer-links a:hover::before {

  width: 14px;
  margin-right: 8px;

}

/* =========================================
   CONTACT INFORMATION
========================================= */

.photo-footer-contact-list {

  margin: 0 0 28px;
  padding: 0;
  list-style: none;

}

.photo-footer-contact-list li {

  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;

}

.photo-footer-contact-list li:last-child {

  margin-bottom: 0;

}

.photo-footer-contact-list .material-symbols-outlined {

  flex-shrink: 0;
  margin-top: 1px;
  color: var(--photo-white);
  font-size: 20px;
  font-variation-settings: "FILL" 0;

}

.photo-footer-contact-list a,
.photo-footer-contact-list p {

  margin: 0;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;

}

.photo-footer-contact-list a:hover {

  color: var(--photo-white);

}

/* =========================================
   FOOTER BOOKING BUTTON
========================================= */

.photo-footer-book-button {

  width: fit-content;
  min-height: 44px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--photo-white);
  background: var(--photo-white);
  color: var(--photo-primary-dark);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}

.photo-footer-book-button .material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.photo-footer-book-button:hover {

  background: transparent;
  color: var(--photo-white);
  transform: translateY(-2px);

}

.photo-footer-book-button:hover .material-symbols-outlined {

  transform: translateX(4px);

}

/* =========================================
   FOOTER BOTTOM
========================================= */

.photo-footer-bottom {

  width: 100%;
  border-top: 1px solid var(--photo-border);
  background: rgba(0, 0, 0, 0.08);

}

.photo-footer-bottom-container {

  width: 100%;
  max-width: 1340px;
  min-height: 74px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

}

.photo-footer-copyright {

  margin: 0;
  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;

}

.photo-footer-legal-links {

  display: flex;
  align-items: center;
  gap: 28px;

}

.photo-footer-legal-links a {

  color: var(--photo-text-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;

}

.photo-footer-legal-links a:hover {

  color: var(--photo-white);

}

/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .photo-footer-container {

    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 52px;
    padding: 64px 24px 56px;

  }

  .photo-footer-column:last-child {

    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;

  }

  .photo-footer-column:last-child .photo-footer-title {

    grid-column: 1 / -1;

  }

  .photo-footer-contact-list {

    margin-bottom: 0;

  }

  .photo-footer-book-button {

    align-self: start;

  }

  .photo-footer-bottom-container {

    padding: 20px 24px;

  }

}

@media (max-width: 800px) {

  .photo-footer-container {

    grid-template-columns: 1fr 1fr;
    gap: 48px 36px;

  }

  .photo-footer-brand-column {

    grid-column: 1 / -1;
    padding-right: 0;

  }

  .photo-footer-description {

    max-width: 520px;

  }

  .photo-footer-column:last-child {

    grid-column: 1 / -1;

  }

}

@media (max-width: 600px) {

  .photo-footer-container {

    padding: 52px 20px 44px;
    grid-template-columns: 1fr;
    gap: 42px;

  }

  .photo-footer-brand-column,
  .photo-footer-column:last-child {

    grid-column: auto;

  }

  .photo-footer-column:last-child {

    display: block;

  }

  .photo-footer-brand {

    font-size: 27px;

  }

  .photo-footer-description {

    max-width: 100%;
    font-size: 14px;

  }

  .photo-footer-title {

    margin-bottom: 28px;

  }

  .photo-footer-contact-list {

    margin-bottom: 26px;

  }

  .photo-footer-book-button {

    width: 100%;

  }

  .photo-footer-bottom-container {

    min-height: auto;
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

  }

  .photo-footer-legal-links {

    flex-wrap: wrap;
    gap: 12px 22px;

  }

}

/* =========================================
   PHOTOGRAPHY NAVBAR LOGO
========================================= */

.photo-brand {

  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;

}

.photo-logo {

  display: block;
  width: auto;
  height: 54px;
  max-width: 290px;
  object-fit: contain;
  transition: transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;

}

/* Logo hover effect */

.photo-brand:hover .photo-logo {

  transform: scale(1.03);
  filter: brightness(1.08);

}

/* =========================================
   MOBILE MENU LOGO
========================================= */

.photo-mobile-brand {

  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 52px);
  text-decoration: none;

}

.photo-mobile-logo {

  display: block;
  width: auto;
  height: 38px;
  max-width: 190px;
  object-fit: contain;
  transition: transform 0.3s ease,
    opacity 0.3s ease;

}

.photo-mobile-brand:hover .photo-mobile-logo {

  transform: scale(1.03);

}

@media (max-width: 1100px) {

  .photo-logo {

    height: 48px;
    max-width: 250px;

  }

}

@media (max-width: 900px) {

  .photo-logo {

    height: 44px;
    max-width: 220px;

  }

}

@media (max-width: 480px) {

  .photo-logo {

    height: 38px;
    max-width: 180px;

  }

  .photo-mobile-logo {

    height: 34px;
    max-width: 165px;

  }

}

/* =========================================
   WHY CHOOSE US / OUR APPROACH
========================================= */

.why-section {

  position: relative;
  overflow: hidden;
  padding: 150px 24px;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(13, 107, 104, 0.08),
      transparent 35%
    ),
    #f7f5f3;

}

.why-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   HEADING
========================================= */

.why-heading {

  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;

}

.why-eyebrow {

  display: inline-block;
  margin-bottom: 18px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;

}

.why-title {

  margin: 0 0 20px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;

}

.why-subtitle {

  max-width: 640px;
  margin: 0 auto;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;

}

/* =========================================
   GRID
========================================= */

.why-grid {

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;

}

/* =========================================
   CARD
========================================= */

.why-card {

  position: relative;
  min-height: 330px;
  padding: 36px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.88)
  );
  border: 1px solid rgba(13, 107, 104, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  overflow: hidden;
  transition: transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

}

.why-card::before {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 107, 104, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s ease;

}

.why-card:hover {

  transform: translateY(-10px);
  border-color: rgba(13, 107, 104, 0.25);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);

}

.why-card:hover::before {

  opacity: 1;

}

/* =========================================
   CARD NUMBER
========================================= */

.why-card-number {

  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(13, 107, 104, 0.15);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.4s ease,
    transform 0.4s ease;

}

.why-card:hover .why-card-number {

  color: rgba(13, 107, 104, 0.28);
  transform: translateY(-3px);

}

/* =========================================
   ICON
========================================= */

.why-icon-wrap {

  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.09);
  color: #0d6b68;
  transition: transform 0.4s ease,
    background-color 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;

}

.why-icon {

  font-size: 30px;
  font-variation-settings: "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;

}

.why-card:hover .why-icon-wrap {

  transform: translateY(-4px) rotate(-4deg) scale(1.06);
  background: #0d6b68;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 107, 104, 0.22);

}

/* =========================================
   TEXT
========================================= */

.why-card-title {

  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;

}

.why-card-text {

  position: relative;
  z-index: 2;
  margin: 0;
  color: #5a6361;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;

}

/* =========================================
   BOTTOM ACCENT LINE
========================================= */

.why-card-line {

  position: absolute;
  left: 30px;
  bottom: 24px;
  width: 42px;
  height: 2px;
  background: #0d6b68;
  transform-origin: left;
  transform: scaleX(0.45);
  transition: width 0.4s ease,
    transform 0.4s ease;

}

.why-card:hover .why-card-line {

  width: calc(100% - 60px);
  transform: scaleX(1);

}

/* =========================================
   ENTRANCE ANIMATION ENHANCEMENT
========================================= */

.why-card.reveal-item {

  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

}

.why-card.reveal-item.reveal-active {

  opacity: 1;
  transform: translateY(0) scale(1);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .why-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}

@media (max-width: 700px) {

  .why-section {

    padding: 100px 20px;

  }

  .why-heading {

    margin-bottom: 48px;

  }

  .why-grid {

    grid-template-columns: 1fr;
    gap: 18px;

  }

  .why-card {

    min-height: auto;
    padding: 30px 26px 38px;

  }

  .why-title {

    font-size: 34px;

  }

  .why-subtitle {

    font-size: 15px;

  }

  .why-card-title {

    font-size: 21px;

  }

  .why-card-line {

    left: 26px;
    bottom: 20px;

  }

  .why-card:hover .why-card-line {

    width: calc(100% - 52px);

  }

}

/* =========================================
   CURATED WORKS / PORTFOLIO
========================================= */

.portfolio-section {

  padding: 140px 24px;
  background: #fcf9f8;

}

.portfolio-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   HEADING
========================================= */

.portfolio-heading {

  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28, 27, 27, 0.12);

}

.portfolio-eyebrow {

  display: block;
  margin-bottom: 10px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.portfolio-title {

  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;

}

/* View All */

.portfolio-view-all {

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: #3e4948;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;

}

.portfolio-view-all::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #0d6b68;
  transition: width 0.3s ease;

}

.portfolio-view-all:hover {

  color: #0d6b68;

}

.portfolio-view-all:hover::after {

  width: 100%;

}

.portfolio-view-all .material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.portfolio-view-all:hover .material-symbols-outlined {

  transform: translate(3px, -3px);

}

/* =========================================
   GRID
========================================= */

.portfolio-grid {

  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 26px;

}

.portfolio-side {

  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 26px;

}

/* =========================================
   CARD
========================================= */

.portfolio-card {

  position: relative;
  overflow: hidden;
  background: #eae7e7;
  cursor: pointer;
  isolation: isolate;

}

.portfolio-card-large {

  min-height: 610px;

}

.portfolio-card-small {

  min-height: 292px;

}

.portfolio-image {

  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

}

/* =========================================
   CINEMATIC OVERLAY
========================================= */

.portfolio-overlay {

  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 25%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.72) 100%
  );
  opacity: 0.5;
  transition: opacity 0.5s ease;

}

/* =========================================
   CONTENT
========================================= */

.portfolio-content {

  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  max-width: 460px;
  color: #ffffff;
  transform: translateY(18px);
  transition: transform 0.5s ease;

}

.portfolio-content-small {

  left: 24px;
  right: 24px;
  bottom: 22px;

}

.portfolio-category {

  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.portfolio-content h3 {

  margin: 0 0 9px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;

}

.portfolio-content-small h3 {

  font-size: 22px;

}

.portfolio-content p {

  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease,
    transform 0.4s ease;

}

.portfolio-content-small p {

  font-size: 13px;

}

/* =========================================
   HOVER
========================================= */

.portfolio-card:hover .portfolio-image {

  transform: scale(1.055);
  filter: saturate(1.03);

}

.portfolio-card:hover .portfolio-overlay {

  opacity: 1;

}

.portfolio-card:hover .portfolio-content {

  transform: translateY(0);

}

.portfolio-card:hover .portfolio-content p {

  opacity: 1;
  transform: translateY(0);

}

/* =========================================
   SUBTLE BORDER EFFECT
========================================= */

.portfolio-card::after {

  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: inset 0.5s ease,
    border-color 0.5s ease;

}

.portfolio-card:hover::after {

  inset: 16px;
  border-color: rgba(255, 255, 255, 0.28);

}

/* =========================================
   MOBILE VIEW FULL GALLERY
========================================= */

.portfolio-mobile-button {

  display: none;
  margin-top: 32px;
  text-align: center;

}

.portfolio-mobile-button a {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(28, 27, 27, 0.22);
  color: #1c1b1b;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;

}

.portfolio-mobile-button a:hover {

  background: #0d6b68;
  border-color: #0d6b68;
  color: #ffffff;

}

.portfolio-mobile-button .material-symbols-outlined {

  font-size: 17px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .portfolio-grid {

    grid-template-columns: 1fr;

  }

  .portfolio-card-large {

    min-height: 540px;

  }

  .portfolio-side {

    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

  }

  .portfolio-card-small {

    min-height: 330px;

  }

}

@media (max-width: 700px) {

  .portfolio-section {

    padding: 100px 20px;

  }

  .portfolio-heading {

    margin-bottom: 36px;

  }

  .portfolio-view-all {

    display: none;

  }

  .portfolio-grid {

    gap: 18px;

  }

  .portfolio-card-large {

    min-height: 460px;

  }

  .portfolio-side {

    grid-template-columns: 1fr;
    gap: 18px;

  }

  .portfolio-card-small {

    min-height: 360px;

  }

  .portfolio-content {

    left: 22px;
    right: 22px;
    bottom: 22px;
    transform: translateY(0);

  }

  .portfolio-content h3 {

    font-size: 25px;

  }

  .portfolio-content p {

    opacity: 1;
    transform: none;

  }

  .portfolio-card::after {

    inset: 10px;
    border-color: rgba(255, 255, 255, 0.18);

  }

  .portfolio-mobile-button {

    display: block;

  }

}

/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-hero {

  position: relative;
  overflow: hidden;
  padding: 150px 24px 140px;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(13, 107, 104, 0.08),
      transparent 28%
    ),
    #fcf9f8;
  border-bottom: 1px solid rgba(28, 27, 27, 0.08);

}

.about-hero-inner {

  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   EYEBROW
========================================= */

.about-hero-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.about-hero-line {

  width: 42px;
  height: 1px;
  background: #0d6b68;
  transform-origin: left;
  animation: aboutLineReveal 1s ease forwards;

}

/* =========================================
   CONTENT
========================================= */

.about-hero-content {

  position: relative;
  z-index: 2;
  max-width: 940px;

}

.about-hero-title {

  margin: 0 0 34px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;

}

.about-hero-text {

  max-width: 720px;
  margin: 0;
  color: #53605e;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;

}

/* =========================================
   DECORATIVE NUMBER
========================================= */

.about-hero-number {

  position: absolute;
  top: 10px;
  right: 0;
  color: rgba(13, 107, 104, 0.07);
  font-family: "Playfair Display", serif;
  font-size: clamp(100px, 13vw, 190px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;

}

/* =========================================
   ANIMATION
========================================= */

@keyframes aboutLineReveal {

  from {

    width: 0;
    opacity: 0;

  }

  to {

    width: 42px;
    opacity: 1;

  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .about-hero {

    padding: 120px 24px 110px;

  }

  .about-hero-number {

    font-size: 120px;
    top: 20px;

  }

  .about-hero-content {

    max-width: 780px;

  }

}

@media (max-width: 600px) {

  .about-hero {

    padding: 90px 20px 80px;

  }

  .about-hero-eyebrow {

    margin-bottom: 26px;
    font-size: 10px;

  }

  .about-hero-title {

    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 26px;

  }

  .about-hero-text {

    font-size: 15px;
    line-height: 1.75;

  }

  .about-hero-number {

    top: 20px;
    right: -10px;
    font-size: 86px;

  }

}

/* =========================================
   ABOUT PAGE — OUR STORY
========================================= */

.story-section {

  position: relative;
  overflow: hidden;
  padding: 130px 24px 150px;
  background: #fcf9f8;

}

.story-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 90px;

}

/* =========================================
   LEFT CONTENT
========================================= */

.story-content {

  position: relative;
  z-index: 2;

}

.story-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.story-eyebrow-line {

  width: 38px;
  height: 1px;
  background: #0d6b68;

}

.story-title {

  max-width: 540px;
  margin: 0 0 34px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;

}

.story-copy {

  max-width: 560px;

}

.story-copy p {

  margin: 0 0 22px;
  color: #56605e;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;

}

.story-copy p:last-child {

  margin-bottom: 0;

}

/* =========================================
   STORY META
========================================= */

.story-meta {

  margin-top: 42px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(28, 27, 27, 0.12);

}

.story-meta-item {

  display: flex;
  flex-direction: column;
  gap: 5px;

}

.story-meta-number {

  color: #0d6b68;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;

}

.story-meta-label {

  color: #6d7573;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

.story-meta-divider {

  width: 1px;
  height: 42px;
  background: rgba(28, 27, 27, 0.12);

}

/* =========================================
   IMAGE AREA
========================================= */

.story-visual {

  position: relative;

}

.story-image-frame {

  position: relative;
  z-index: 2;
  min-height: 620px;
  overflow: hidden;
  background: #e5e2e1;

}

.story-image {

  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

}

.story-image-frame:hover .story-image {

  transform: scale(1.045);
  filter: saturate(1.03);

}

/* =========================================
   IMAGE OVERLAY
========================================= */

.story-image-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
  pointer-events: none;

}

/* =========================================
   IMAGE CAPTION
========================================= */

.story-image-caption {

  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;

}

.story-caption-index {

  color: rgba(255, 255, 255, 0.6);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1;

}

.story-caption-title {

  display: block;
  margin-bottom: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;

}

.story-caption-text {

  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;

}

/* =========================================
   DECORATIVE OFFSET FRAME
========================================= */

.story-frame-accent {

  position: absolute;
  top: 28px;
  right: -26px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(13, 107, 104, 0.22);
  z-index: 1;
  transition: transform 0.5s ease,
    border-color 0.5s ease;

}

.story-visual:hover .story-frame-accent {

  transform: translate(-6px, -6px);
  border-color: rgba(13, 107, 104, 0.45);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

  .story-container {

    grid-template-columns: 1fr 1fr;
    gap: 55px;

  }

  .story-image-frame,
  .story-image {

    min-height: 540px;

  }

}

@media (max-width: 800px) {

  .story-section {

    padding: 100px 24px 110px;

  }

  .story-container {

    grid-template-columns: 1fr;
    gap: 60px;

  }

  .story-content {

    max-width: 700px;

  }

  .story-visual {

    max-width: 720px;

  }

  .story-frame-accent {

    right: -15px;
    top: 18px;

  }

}

@media (max-width: 600px) {

  .story-section {

    padding: 80px 20px 90px;

  }

  .story-title {

    font-size: 38px;
    margin-bottom: 28px;

  }

  .story-copy p {

    font-size: 15px;
    line-height: 1.75;

  }

  .story-meta {

    gap: 20px;
    margin-top: 34px;

  }

  .story-meta-number {

    font-size: 19px;

  }

  .story-image-frame,
  .story-image {

    min-height: 430px;

  }

  .story-image-caption {

    left: 20px;
    right: 20px;
    bottom: 20px;

  }

  .story-frame-accent {

    display: none;

  }

}

/* =========================================
   VISION & MISSION
========================================= */

.vision-mission-section {

  position: relative;
  overflow: hidden;
  padding: 140px 24px;
  background: linear-gradient(180deg, #f6f3f2 0%, #fcf9f8 100%);
  border-top: 1px solid rgba(28, 27, 27, 0.06);
  border-bottom: 1px solid rgba(28, 27, 27, 0.06);

}

.vision-mission-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   SECTION HEADING
========================================= */

.vision-mission-heading {

  max-width: 720px;
  margin-bottom: 70px;

}

.vision-mission-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.vision-mission-line {

  width: 40px;
  height: 1px;
  background: #0d6b68;

}

.vision-mission-heading h2 {

  margin: 0 0 24px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;

}

.vision-mission-heading p {

  max-width: 600px;
  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;

}

/* =========================================
   GRID
========================================= */

.vision-mission-grid {

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;

}

/* =========================================
   CARD
========================================= */

.vm-card {

  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 42px 42px 46px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 107, 104, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.035);
  isolation: isolate;
  transition: transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;

}

.vm-card::before {

  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(13, 107, 104, 0.07),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.45s ease;

}

.vm-card:hover {

  transform: translateY(-8px);
  border-color: rgba(13, 107, 104, 0.27);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);

}

.vm-card:hover::before {

  opacity: 1;

}

/* =========================================
   LARGE BACKGROUND LETTER
========================================= */

.vm-bg-letter {

  position: absolute;
  top: 18px;
  right: 24px;
  z-index: -1;
  color: rgba(13, 107, 104, 0.055);
  font-family: "Playfair Display", serif;
  font-size: clamp(130px, 15vw, 210px);
  font-weight: 700;
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
  transition: color 0.45s ease,
    transform 0.6s ease;

}

.vm-card:hover .vm-bg-letter {

  color: rgba(13, 107, 104, 0.09);
  transform: translate(-5px, 5px) scale(1.03);

}

/* =========================================
   CARD TOP
========================================= */

.vm-card-top {

  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 46px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28, 27, 27, 0.12);

}

.vm-number {

  color: rgba(13, 107, 104, 0.55);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;

}

.vm-label {

  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

/* =========================================
   TEXT
========================================= */

.vm-title {

  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 0 26px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;

}

.vm-text {

  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;

}

/* =========================================
   BOTTOM ACCENT
========================================= */

.vm-bottom-line {

  position: absolute;
  left: 42px;
  bottom: 30px;
  width: 46px;
  height: 2px;
  background: #0d6b68;
  transition: width 0.45s ease;

}

.vm-card:hover .vm-bottom-line {

  width: calc(100% - 84px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .vision-mission-section {

    padding: 110px 24px;

  }

  .vision-mission-grid {

    grid-template-columns: 1fr;

  }

  .vm-card {

    min-height: auto;

  }

}

@media (max-width: 600px) {

  .vision-mission-section {

    padding: 85px 20px;

  }

  .vision-mission-heading {

    margin-bottom: 48px;

  }

  .vision-mission-heading h2 {

    font-size: 39px;

  }

  .vision-mission-heading p {

    font-size: 15px;

  }

  .vm-card {

    padding: 30px 26px 42px;

  }

  .vm-card-top {

    margin-bottom: 34px;

  }

  .vm-title {

    font-size: 28px;

  }

  .vm-text {

    font-size: 14px;
    line-height: 1.75;

  }

  .vm-bg-letter {

    top: 22px;
    right: 16px;
    font-size: 110px;

  }

  .vm-bottom-line {

    left: 26px;
    bottom: 22px;

  }

  .vm-card:hover .vm-bottom-line {

    width: calc(100% - 52px);

  }

}

/* =========================================
   PHOTOGRAPHER PROFILE
========================================= */

.photographer-section {

  position: relative;
  overflow: hidden;
  padding: 150px 24px;
  background: radial-gradient(
      circle at 10% 50%,
      rgba(13, 107, 104, 0.07),
      transparent 30%
    ),
    #fcf9f8;

}

.photographer-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 100px;

}

/* =========================================
   IMAGE SIDE
========================================= */

.photographer-visual {

  position: relative;
  max-width: 520px;

}

.photographer-image-wrap {

  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e5e2e1;

}

.photographer-image {

  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

}

.photographer-image-wrap:hover .photographer-image {

  transform: scale(1.045);
  filter: contrast(1.02) saturate(1.03);

}

/* =========================================
   IMAGE OVERLAY
========================================= */

.photographer-image-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.32) 100%
  );
  pointer-events: none;

}

/* =========================================
   EXPERIENCE BADGE
========================================= */

.photographer-badge {

  position: absolute;
  top: 28px;
  right: -28px;
  z-index: 3;
  width: 145px;
  min-height: 130px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0d6b68;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(13, 107, 104, 0.22);
  transition: transform 0.4s ease,
    box-shadow 0.4s ease;

}

.photographer-image-wrap:hover .photographer-badge {

  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(13, 107, 104, 0.28);

}

.photographer-badge-number {

  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;

}

.photographer-badge-text {

  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);

}

/* =========================================
   IMAGE CAPTION
========================================= */

.photographer-image-caption {

  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;

}

.photographer-image-caption span {

  color: rgba(255, 255, 255, 0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

/* =========================================
   OFFSET FRAME
========================================= */

.photographer-frame {

  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid rgba(13, 107, 104, 0.22);
  transition: transform 0.5s ease,
    border-color 0.5s ease;

}

.photographer-visual:hover .photographer-frame {

  transform: translate(6px, -6px);
  border-color: rgba(13, 107, 104, 0.45);

}

/* =========================================
   CONTENT
========================================= */

.photographer-content {

  max-width: 680px;

}

/* Eyebrow */

.photographer-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.photographer-eyebrow-line {

  width: 40px;
  height: 1px;
  background: #0d6b68;

}

/* Name */

.photographer-name {

  margin: 0 0 22px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;

}

/* Quote */

.photographer-quote {

  max-width: 560px;
  margin: 0;
  color: #68716f;
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;

}

/* Divider */

.photographer-divider {

  width: 100%;
  height: 1px;
  margin: 32px 0;
  background: rgba(28, 27, 27, 0.1);

}

/* =========================================
   COPY
========================================= */

.photographer-copy {

  max-width: 640px;

}

.photographer-copy p {

  margin: 0 0 20px;
  color: #56605e;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;

}

.photographer-copy p:last-child {

  margin-bottom: 0;

}

/* =========================================
   PORTFOLIO LINK
========================================= */

.photographer-portfolio-link {

  position: relative;
  width: fit-content;
  margin-top: 36px;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1c1b1b;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;

}

.photographer-portfolio-link::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #1c1b1b;
  transform-origin: left;
  transition: background-color 0.3s ease,
    transform 0.3s ease;

}

.photographer-portfolio-link:hover {

  color: #0d6b68;

}

.photographer-portfolio-link:hover::after {

  background: #0d6b68;
  transform: scaleX(0.65);

}

.photographer-portfolio-link .material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.photographer-portfolio-link:hover .material-symbols-outlined {

  transform: translateX(5px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

  .photographer-container {

    gap: 60px;
    grid-template-columns: minmax(0, 0.9fr)
        minmax(0, 1.1fr);

  }

  .photographer-badge {

    right: -15px;

  }

}

@media (max-width: 850px) {

  .photographer-section {

    padding: 110px 24px;

  }

  .photographer-container {

    grid-template-columns: 1fr;
    gap: 70px;

  }

  .photographer-visual {

    max-width: 600px;

  }

  .photographer-content {

    max-width: 720px;

  }

}

@media (max-width: 600px) {

  .photographer-section {

    padding: 85px 20px;

  }

  .photographer-container {

    gap: 55px;

  }

  .photographer-name {

    font-size: 43px;

  }

  .photographer-quote {

    font-size: 17px;

  }

  .photographer-copy p {

    font-size: 14px;
    line-height: 1.75;

  }

  .photographer-badge {

    top: 18px;
    right: 14px;
    width: 118px;
    min-height: 106px;
    padding: 16px;

  }

  .photographer-badge-number {

    font-size: 34px;

  }

  .photographer-badge-text {

    font-size: 8px;

  }

  .photographer-frame {

    display: none;

  }

  .photographer-image-caption {

    left: 18px;
    bottom: 18px;

  }

}

/* =========================================
   UNCOMPROMISING QUALITY
========================================= */

.equipment-section {

  position: relative;
  overflow: hidden;
  padding: 140px 24px;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(13, 107, 104, 0.06),
      transparent 32%
    ),
    #f6f3f2;

}

.equipment-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   HEADING
========================================= */

.equipment-heading {

  margin-bottom: 64px;

}

.equipment-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.equipment-eyebrow-line {

  width: 40px;
  height: 1px;
  background: #0d6b68;

}

.equipment-heading-row {

  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;

}

.equipment-heading-row h2 {

  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;

}

.equipment-heading-row p {

  max-width: 520px;
  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.75;

}

/* =========================================
   GRID
========================================= */

.equipment-grid {

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

}

/* =========================================
   CARD
========================================= */

.equipment-card {

  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 42px 34px 44px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 107, 104, 0.11);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;

}

/* soft background detail */

.equipment-card::before {

  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.045);
  transition: transform 0.6s ease,
    background-color 0.6s ease;

}

.equipment-card:hover {

  transform: translateY(-9px);
  border-color: rgba(13, 107, 104, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);

}

.equipment-card:hover::before {

  transform: scale(1.25);
  background: rgba(13, 107, 104, 0.075);

}

/* =========================================
   NUMBER
========================================= */

.equipment-number {

  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(13, 107, 104, 0.14);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.4s ease,
    transform 0.4s ease;

}

.equipment-card:hover .equipment-number {

  color: rgba(13, 107, 104, 0.28);
  transform: translateY(-3px);

}

/* =========================================
   ICON
========================================= */

.equipment-icon {

  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.08);
  color: #0d6b68;
  transition: background-color 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;

}

.equipment-icon .material-symbols-outlined {

  font-size: 30px;
  font-variation-settings: "FILL" 0,
    "wght" 400;

}

.equipment-card:hover .equipment-icon {

  background: #0d6b68;
  color: #ffffff;
  transform: translateY(-4px) rotate(-5deg);
  box-shadow: 0 12px 26px rgba(13, 107, 104, 0.22);

}

/* =========================================
   TITLE
========================================= */

.equipment-card h3 {

  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0 0 18px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;

}

/* =========================================
   TEXT
========================================= */

.equipment-card p {

  position: relative;
  z-index: 2;
  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.75;

}

/* =========================================
   BOTTOM ACCENT
========================================= */

.equipment-card-line {

  position: absolute;
  left: 34px;
  bottom: 27px;
  width: 42px;
  height: 2px;
  background: #0d6b68;
  transition: width 0.45s ease;

}

.equipment-card:hover .equipment-card-line {

  width: calc(100% - 68px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .equipment-heading-row {

    grid-template-columns: 1fr;
    gap: 24px;

  }

  .equipment-heading-row p {

    max-width: 650px;

  }

  .equipment-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

  .equipment-card:last-child {

    grid-column: 1 / -1;

  }

}

@media (max-width: 700px) {

  .equipment-section {

    padding: 90px 20px;

  }

  .equipment-heading {

    margin-bottom: 44px;

  }

  .equipment-heading-row h2 {

    font-size: 39px;

  }

  .equipment-heading-row p {

    font-size: 14px;

  }

  .equipment-grid {

    grid-template-columns: 1fr;
    gap: 18px;

  }

  .equipment-card:last-child {

    grid-column: auto;

  }

  .equipment-card {

    min-height: auto;
    padding: 34px 28px 46px;

  }

  .equipment-icon {

    width: 60px;
    height: 60px;
    margin-bottom: 28px;

  }

  .equipment-card h3 {

    font-size: 23px;

  }

  .equipment-card-line {

    left: 28px;
    bottom: 22px;

  }

  .equipment-card:hover .equipment-card-line {

    width: calc(100% - 56px);

  }

}

/* =========================================
   SERVICES SHOWCASE
========================================= */

.services-showcase {

  width: 100%;
  background: #fcf9f8;

}

/* =========================================
   SERVICE FEATURE
========================================= */

.service-feature {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 130px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
  border-bottom: 1px solid rgba(28, 27, 27, 0.08);

}

.service-feature-reverse .service-copy {

  order: 2;

}

.service-feature-reverse .service-visual {

  order: 1;

}

/* =========================================
   COPY
========================================= */

.service-copy {

  max-width: 560px;

}

.service-kicker {

  display: inline-block;
  margin-bottom: 18px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.service-main-title {

  margin: 0 0 18px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;

}

.service-subtitle {

  margin: 0 0 24px;
  color: #272a29;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;

}

.service-description {

  margin: 0 0 30px;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;

}

/* =========================================
   LIST
========================================= */

.service-list {

  margin: 0 0 34px;
  padding: 0;
  list-style: none;

}

.service-list li {

  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #29302e;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;

}

.service-list li:last-child {

  margin-bottom: 0;

}

.service-list .material-symbols-outlined {

  color: #0d6b68;
  font-size: 20px;
  font-variation-settings: "FILL" 1,
    "wght" 400;

}

/* =========================================
   BUTTON
========================================= */

.service-button {

  position: relative;
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #0d6b68;
  color: #0d6b68;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;

}

.service-button::before {

  content: "";
  position: absolute;
  inset: 0;
  background: #0d6b68;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;

}

.service-button span,
.service-button {

  position: relative;
  z-index: 1;

}

.service-button:hover::before {

  transform: scaleX(1);

}

.service-button:hover {

  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 107, 104, 0.18);

}

.service-button .material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.service-button:hover .material-symbols-outlined {

  transform: translateX(4px);

}

/* =========================================
   IMAGE
========================================= */

.service-visual {

  position: relative;

}

.service-image-wrap {

  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #e5e2e1;

}

.service-image {

  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

}

.service-image-wrap:hover .service-image {

  transform: scale(1.055);
  filter: contrast(1.03) saturate(1.04);

}

/* =========================================
   IMAGE OVERLAY
========================================= */

.service-image-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;

}

/* =========================================
   IMAGE NUMBER
========================================= */

.service-image-number {

  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;

}

/* =========================================
   ALT SECTION BACKGROUND
========================================= */

.service-feature:nth-child(even) {

  background: linear-gradient(
    180deg,
    rgba(13, 107, 104, 0.035),
    rgba(13, 107, 104, 0.015)
  );

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .service-feature {

    grid-template-columns: 1fr 1fr;
    gap: 55px;
    padding: 100px 24px;

  }

  .service-image-wrap,
  .service-image {

    min-height: 520px;

  }

  .service-subtitle {

    font-size: 25px;

  }

}

@media (max-width: 800px) {

  .service-feature {

    grid-template-columns: 1fr;
    gap: 48px;
    padding: 90px 24px;

  }

  .service-feature-reverse .service-copy,
  .service-feature-reverse .service-visual {

    order: initial;

  }

  .service-visual {

    order: 1 !important;

  }

  .service-copy {

    order: 2 !important;
    max-width: 700px;

  }

  .service-image-wrap,
  .service-image {

    min-height: 500px;

  }

}

@media (max-width: 600px) {

  .service-feature {

    padding: 70px 20px;
    gap: 36px;

  }

  .service-main-title {

    font-size: 40px;

  }

  .service-subtitle {

    font-size: 23px;

  }

  .service-description {

    font-size: 14px;
    line-height: 1.75;

  }

  .service-list li {

    font-size: 13px;

  }

  .service-image-wrap,
  .service-image {

    min-height: 420px;

  }

  .service-button {

    width: 100%;

  }

}

/* =========================================
   BOOKING PROCESS
========================================= */

.booking-process-section {

  position: relative;
  overflow: hidden;
  padding: 140px 24px;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(13, 107, 104, 0.06),
      transparent 34%
    ),
    #fcf9f8;

}

.booking-process-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   HEADING
========================================= */

.booking-process-heading {

  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;

}

.booking-process-eyebrow {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.booking-process-line {

  width: 36px;
  height: 1px;
  background: #0d6b68;

}

.booking-process-heading h2 {

  margin: 0 0 20px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;

}

.booking-process-heading p {

  max-width: 620px;
  margin: 0 auto;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;

}

/* =========================================
   GRID
========================================= */

.booking-process-grid {

  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;

}

/* Connecting line */

.booking-process-grid::before {

  content: "";
  position: absolute;
  top: 58px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 107, 104, 0.18),
    rgba(13, 107, 104, 0.18),
    transparent
  );
  z-index: 0;

}

/* =========================================
   CARD
========================================= */

.booking-process-card {

  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 34px 28px 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 107, 104, 0.1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

}

.booking-process-card:hover {

  transform: translateY(-9px);
  border-color: rgba(13, 107, 104, 0.28);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);

}

/* =========================================
   TOP AREA
========================================= */

.booking-process-top {

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;

}

.booking-process-number {

  color: rgba(13, 107, 104, 0.16);
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.4s ease,
    transform 0.4s ease;

}

.booking-process-card:hover .booking-process-number {

  color: rgba(13, 107, 104, 0.32);
  transform: translateY(-3px);

}

/* =========================================
   ICON
========================================= */

.booking-process-icon {

  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.08);
  color: #0d6b68;
  transition: background-color 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;

}

.booking-process-icon .material-symbols-outlined {

  font-size: 27px;
  font-variation-settings: "FILL" 0,
    "wght" 400;

}

.booking-process-card:hover .booking-process-icon {

  background: #0d6b68;
  color: #ffffff;
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 10px 25px rgba(13, 107, 104, 0.22);

}

/* =========================================
   TEXT
========================================= */

.booking-process-card h3 {

  margin: 0 0 16px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;

}

.booking-process-card p {

  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.75;

}

/* =========================================
   BOTTOM ACCENT
========================================= */

.booking-process-accent {

  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 38px;
  height: 2px;
  background: #0d6b68;
  transition: width 0.4s ease;

}

.booking-process-card:hover .booking-process-accent {

  width: calc(100% - 56px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

  .booking-process-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

  .booking-process-grid::before {

    display: none;

  }

}

@media (max-width: 700px) {

  .booking-process-section {

    padding: 90px 20px;

  }

  .booking-process-heading {

    margin-bottom: 48px;

  }

  .booking-process-heading h2 {

    font-size: 39px;

  }

  .booking-process-heading p {

    font-size: 15px;

  }

  .booking-process-grid {

    grid-template-columns: 1fr;
    gap: 18px;

  }

  .booking-process-card {

    min-height: auto;
    padding: 30px 26px 42px;

  }

  .booking-process-number {

    font-size: 38px;

  }

  .booking-process-icon {

    width: 54px;
    height: 54px;

  }

  .booking-process-card h3 {

    font-size: 23px;

  }

  .booking-process-accent {

    left: 26px;
    bottom: 21px;

  }

  .booking-process-card:hover .booking-process-accent {

    width: calc(100% - 52px);

  }

}

/* =========================================
   GALLERY PAGE
========================================= */

.gallery-page {

  width: 100%;
  background: #fcf9f8;

}

/* =========================================
   HERO
========================================= */

.gallery-hero {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 120px 24px 70px;
  text-align: center;

}

.gallery-hero-inner {

  max-width: 800px;
  margin: 0 auto;

}

.gallery-hero-eyebrow {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.gallery-hero-line {

  width: 36px;
  height: 1px;
  background: #0d6b68;

}

.gallery-hero h1 {

  margin: 0 0 22px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;

}

.gallery-hero p {

  max-width: 650px;
  margin: 0 auto;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;

}

/* =========================================
   FILTERS
========================================= */

.gallery-filters {

  margin-top: 54px;
  padding-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(28, 27, 27, 0.1);

}

.gallery-filter-btn {

  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: #7a817f;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;

}

.gallery-filter-btn::after {

  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0d6b68;
  transform: translateX(-50%);
  transition: width 0.3s ease;

}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {

  color: #0d6b68;

}

.gallery-filter-btn:hover::after,
.gallery-filter-btn.active::after {

  width: 100%;

}

/* =========================================
   GALLERY SHOWCASE
========================================= */

.gallery-showcase {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 20px 24px 140px;

}

/* =========================================
   MASONRY
========================================= */

.gallery-masonry {

  columns: 3;
  column-gap: 24px;

}

.gallery-piece {

  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid;
  opacity: 1;
  transition: opacity 0.35s ease,
    transform 0.35s ease;

}

/* =========================================
   IMAGE RATIOS
========================================= */

.gallery-piece-media {

  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e5e2e1;
  isolation: isolate;
  cursor: pointer;

}

.ratio-portrait {

  aspect-ratio: 3 / 4;

}

.ratio-four-five {

  aspect-ratio: 4 / 5;

}

.ratio-square {

  aspect-ratio: 1 / 1;

}

.ratio-landscape {

  aspect-ratio: 16 / 10;

}

/* =========================================
   IMAGE
========================================= */

.gallery-piece-media img {

  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

}

.gallery-piece-media:hover img {

  transform: scale(1.055);
  filter: contrast(1.02) saturate(1.03);

}

/* =========================================
   OVERLAY
========================================= */

.gallery-piece-overlay {

  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.58) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;

}

.gallery-piece-media:hover .gallery-piece-overlay {

  opacity: 1;

}

/* =========================================
   CAPTION
========================================= */

.gallery-piece-caption {

  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease,
    transform 0.4s ease;

}

.gallery-piece-media:hover .gallery-piece-caption {

  opacity: 1;
  transform: translateY(0);

}

.gallery-piece-caption span {

  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;

}

.gallery-piece-caption h3 {

  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

}

/* =========================================
   SUBTLE INNER FRAME
========================================= */

.gallery-piece-media::after {

  content: "";
  position: absolute;
  inset: 11px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: inset 0.45s ease,
    border-color 0.45s ease;

}

.gallery-piece-media:hover::after {

  inset: 15px;
  border-color: rgba(255, 255, 255, 0.26);

}

/* =========================================
   FILTER ANIMATION
========================================= */

.gallery-filter-item.gallery-hidden {

  display: none;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .gallery-masonry {

    columns: 2;

  }

}

@media (max-width: 700px) {

  .gallery-hero {

    padding: 90px 20px 55px;

  }

  .gallery-hero h1 {

    font-size: 46px;

  }

  .gallery-hero p {

    font-size: 15px;

  }

  .gallery-filters {

    margin-top: 38px;
    gap: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;

  }

  .gallery-filters::-webkit-scrollbar {

    display: none;

  }

  .gallery-filter-btn {

    flex-shrink: 0;

  }

  .gallery-showcase {

    padding: 10px 20px 90px;

  }

  .gallery-masonry {

    columns: 1;

  }

  .gallery-piece {

    margin-bottom: 18px;

  }

  .gallery-piece-caption {

    left: 20px;
    right: 20px;
    bottom: 18px;
    opacity: 1;
    transform: none;

  }

  .gallery-piece-overlay {

    opacity: 0.65;

  }

  .gallery-piece-caption h3 {

    font-size: 22px;

  }

  .gallery-piece-media::after {

    inset: 9px;
    border-color: rgba(255, 255, 255, 0.16);

  }

}

/* =========================================
   OUR TEAM
========================================= */

.team-section {

  position: relative;
  overflow: hidden;
  padding: 140px 24px;
  background: radial-gradient(
            circle at 50% 0%,
            rgba(13, 107, 104, 0.055),
            transparent 34%
        ),
        #f7f5f3;

}

.team-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* =========================================
   HEADING
========================================= */

.team-heading {

  margin-bottom: 64px;

}

.team-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.team-eyebrow-line {

  width: 40px;
  height: 1px;
  background: #0d6b68;

}

.team-heading-row {

  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;

}

.team-heading-row h2 {

  max-width: 650px;
  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.035em;

}

.team-heading-row p {

  max-width: 520px;
  margin: 0;
  color: #596260;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;

}

/* =========================================
   TEAM GRID
========================================= */

.team-grid {

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;

}

/* =========================================
   CARD
========================================= */

.team-card {

  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13, 107, 104, 0.09);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.035);
  overflow: hidden;
  transition: transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

}

.team-card:hover {

  transform: translateY(-9px);
  border-color: rgba(13, 107, 104, 0.25);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.09);

}

/* =========================================
   IMAGE
========================================= */

.team-image-wrap {

  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dedbd9;

}

.team-image {

  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.6s ease;

}

.team-card:hover .team-image {

  transform: scale(1.055);
  filter: contrast(1.025)
        saturate(1.03);

}

/* =========================================
   IMAGE OVERLAY
========================================= */

.team-image-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, 0.5) 100%
        );
  opacity: 0.35;
  transition: opacity 0.4s ease;

}

.team-card:hover .team-image-overlay {

  opacity: 0.75;

}

/* =========================================
   TEAM NUMBER
========================================= */

.team-number {

  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;

}

/* =========================================
   SOCIAL ICONS
========================================= */

.team-socials {

  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease,
        transform 0.4s ease;

}

.team-card:hover .team-socials {

  opacity: 1;
  transform: translateY(0);

}

.team-socials a {

  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}

.team-socials a:hover {

  background: #ffffff;
  color: #0d6b68;
  transform: translateY(-3px);

}

.team-socials i {

  font-size: 14px;

}

/* =========================================
   CONTENT
========================================= */

.team-content {

position: relative;

    min-height: 135px;

    padding: 25px 20px 34px;

}

.team-role {

  display: block;
  margin-bottom: 9px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.team-content h3 {

  margin: 0 0 12px;
  color: #1c1b1b;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

}

.team-content p {

  margin: 0;
  color: #616a68;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.7;

}

/* =========================================
   ACCENT LINE
========================================= */

.team-card-line {

  position: absolute;
  left: 25px;
  bottom: 21px;
  width: 35px;
  height: 2px;
  background: #0d6b68;
  transition: width 0.4s ease;

}

.team-card:hover
.team-card-line {

  width: calc(100% - 50px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .team-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

  }

  .team-heading-row {

    gap: 45px;

  }

}

@media (max-width: 750px) {

  .team-section {

    padding: 90px 20px;

  }

  .team-heading {

    margin-bottom: 48px;

  }

  .team-heading-row {

    grid-template-columns: 1fr;
    gap: 22px;

  }

  .team-heading-row h2 {

    font-size: 40px;

  }

  .team-heading-row p {

    font-size: 14px;

  }

  .team-grid {

    grid-template-columns: 1fr;
    gap: 22px;

  }

  .team-image-wrap {

    aspect-ratio: 4 / 4.8;

  }

  .team-content {

    min-height: auto;
    padding: 25px
              24px
              38px;

  }

  .team-socials {

    opacity: 1;
    transform: none;

  }

  .team-content h3 {

    font-size: 25px;

  }

  .team-card-line {

    left: 24px;
    bottom: 20px;

  }

  .team-card:hover
    .team-card-line {

    width: calc(100% - 48px);

  }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {

  width: 100%;
  overflow: hidden;
  background: #fcf9f8;

}

/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {

  position: relative;
  padding: 135px
        24px
        110px;
  background: radial-gradient(
            circle at 10% 30%,
            rgba(13, 107, 104, 0.07),
            transparent 32%
        ),
        #fcf9f8;
  border-bottom: 1px solid rgba(28, 27, 27, 0.07);

}

.contact-hero-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

/* Eyebrow */

.contact-hero-eyebrow {

  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  color: #0d6b68;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.contact-hero-line {

  width: 40px;
  height: 1px;
  background: #0d6b68;

}

/* Hero Grid */

.contact-hero-grid {

  display: grid;
  grid-template-columns: minmax(0, 1.2fr)
        minmax(320px, 0.8fr);
  align-items: end;
  gap: 90px;

}

.contact-hero h1 {

  max-width: 800px;
  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display",
        serif;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;

}

.contact-hero h1 span {

  display: block;
  color: #0d6b68;

}

.contact-hero-copy {

  max-width: 510px;

}

.contact-hero-copy p {

  margin: 0;
  color: #596260;
  font-family: "DM Sans",
        sans-serif;
  font-size: 16px;
  line-height: 1.8;

}

/* Scroll link */

.contact-scroll-link {

  position: relative;
  width: fit-content;
  margin-top: 30px;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1c1b1b;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;

}

.contact-scroll-link::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #0d6b68;
  transform-origin: left;
  transition: transform 0.3s ease;

}

.contact-scroll-link:hover::after {

  transform: scaleX(0.55);

}

.contact-scroll-link
.material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.contact-scroll-link:hover
.material-symbols-outlined {

  transform: translateY(4px);

}

/* =========================================
   MAIN CONTACT SECTION
========================================= */

.contact-main-section {

  padding: 140px 24px;
  background: linear-gradient(
            180deg,
            #f7f5f3,
            #fcf9f8
        );

}

.contact-main-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr)
        minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;

}

/* =========================================
   CONTACT INFO
========================================= */

.contact-info-heading {

  margin-bottom: 40px;

}

.contact-info-heading > span {

  display: block;
  margin-bottom: 15px;
  color: #0d6b68;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.contact-info-heading h2 {

  margin: 0 0 18px;
  color: #1c1b1b;
  font-family: "Playfair Display",
        serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;

}

.contact-info-heading p {

  max-width: 470px;
  margin: 0;
  color: #626b69;
  font-family: "DM Sans",
        sans-serif;
  font-size: 14px;
  line-height: 1.75;

}

/* =========================================
   CONTACT DETAIL CARDS
========================================= */

.contact-details {

  display: flex;
  flex-direction: column;
  margin-bottom: 55px;

}

.contact-detail-card {

  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 20px 5px;
  border-bottom: 1px solid
        rgba(28, 27, 27, 0.10);
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.3s ease;

}

a.contact-detail-card:hover {

  padding-left: 7px;

}

.contact-detail-icon {

  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.08);
  color: #0d6b68;
  transition: background-color 0.3s ease,
        color 0.3s ease;

}

a.contact-detail-card:hover
.contact-detail-icon {

  background: #0d6b68;
  color: #ffffff;

}

.contact-detail-icon
.material-symbols-outlined {

  font-size: 22px;

}

.contact-detail-content {

  min-width: 0;

}

.contact-detail-label {

  display: block;
  margin-bottom: 5px;
  color: #7a817f;
  font-family: "DM Sans",
        sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

.contact-detail-content strong {

  display: block;
  color: #272a29;
  font-family: "DM Sans",
        sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;

}

.contact-detail-arrow {

  color: #0d6b68;
  font-size: 19px;
  transition: transform 0.3s ease;

}

a.contact-detail-card:hover
.contact-detail-arrow {

  transform: translate(3px, -3px);

}

/* =========================================
   SMALL SECTION HEADING
========================================= */

.contact-small-heading {

  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  color: #0d6b68;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

.contact-small-line {

  flex: 1;
  height: 1px;
  background: rgba(13, 107, 104, 0.18);

}

/* =========================================
   HOURS
========================================= */

.contact-hours {

  margin-bottom: 52px;

}

.contact-hours-row {

  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid
        rgba(28, 27, 27, 0.08);
  color: #626b69;
  font-family: "DM Sans",
        sans-serif;
  font-size: 13px;

}

.contact-hours-row strong {

  color: #272a29;
  font-weight: 500;
  text-align: right;

}

/* =========================================
   SOCIAL LINKS
========================================= */

.contact-social-links {

  display: flex;
  flex-wrap: wrap;
  gap: 10px;

}

.contact-social-links a {

  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid
        rgba(13, 107, 104, 0.15);
  color: #46504e;
  font-family: "DM Sans",
        sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}

.contact-social-links a:hover {

  background: #0d6b68;
  border-color: #0d6b68;
  color: #ffffff;
  transform: translateY(-3px);

}

.contact-social-links i {

  font-size: 14px;

}

/* =========================================
   FORM CARD
========================================= */

.contact-form-card {

  position: relative;
  padding: 52px
        50px
        48px;
  background: #ffffff;
  border: 1px solid
        rgba(13, 107, 104, 0.10);
  box-shadow: 0 20px 65px
        rgba(0, 0, 0, 0.055);

}

.contact-form-top {

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 46px;
  padding-bottom: 32px;
  border-bottom: 1px solid
        rgba(28, 27, 27, 0.08);

}

.contact-form-kicker {

  display: block;
  margin-bottom: 10px;
  color: #0d6b68;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.contact-form-top h2 {

  max-width: 470px;
  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display",
        serif;
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;

}

.contact-form-number {

  flex-shrink: 0;
  color: rgba(13, 107, 104, 0.15);
  font-family: "Playfair Display",
        serif;
  font-size: 44px;
  line-height: 1;

}

/* =========================================
   FORM
========================================= */

.contact-form {

  display: flex;
  flex-direction: column;
  gap: 30px;

}

.contact-form-grid {

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;

}

.contact-field label {

  display: block;
  margin-bottom: 10px;
  color: #4d5755;
  font-family: "DM Sans",
        sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;

}

/* Inputs */

.contact-field input,
.contact-field select,
.contact-field textarea {

  width: 100%;
  border: 1px solid
        rgba(28, 27, 27, 0.13);
  border-radius: 0;
  outline: none;
  background: #faf9f8;
  color: #1c1b1b;
  font-family: "DM Sans",
        sans-serif;
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;

}

.contact-field input,
.contact-field select {

  height: 54px;
  padding: 0
        16px;

}

.contact-field textarea {

  min-height: 155px;
  padding: 16px;
  line-height: 1.7;
  resize: vertical;

}

.contact-field input::placeholder,
.contact-field textarea::placeholder {

  color: #9a9f9e;

}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {

  border-color: #0d6b68;
  background: #ffffff;
  box-shadow: 0 0 0 3px
        rgba(13, 107, 104, 0.07);

}

/* =========================================
   SELECT
========================================= */

.contact-select-wrap {

  position: relative;

}

.contact-select-wrap select {

  appearance: none;
  padding-right: 46px;
  cursor: pointer;

}

.contact-select-wrap
.material-symbols-outlined {

  position: absolute;
  top: 50%;
  right: 15px;
  color: #0d6b68;
  font-size: 20px;
  pointer-events: none;
  transform: translateY(-50%);

}

/* =========================================
   FORM BOTTOM
========================================= */

.contact-form-bottom {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 4px;

}

.contact-form-bottom p {

  max-width: 320px;
  margin: 0;
  color: #858c8a;
  font-family: "DM Sans",
        sans-serif;
  font-size: 11px;
  line-height: 1.6;

}

/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit-button {

  position: relative;
  min-height: 52px;
  padding: 13px
        25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #0d6b68;
  background: #0d6b68;
  color: #ffffff;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}

.contact-submit-button:hover {

  background: #075653;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px
        rgba(13, 107, 104, 0.20);

}

.contact-submit-button
.material-symbols-outlined {

  font-size: 17px;
  transition: transform 0.3s ease;

}

.contact-submit-button:hover
.material-symbols-outlined {

  transform: translateX(4px);

}

/* =========================================
   VISIT STUDIO
========================================= */

.contact-studio-section {

  padding: 0
        24px
        140px;
  background: #fcf9f8;

}

.contact-studio-container {

  width: 100%;
  max-width: 1340px;
  margin: 0 auto;

}

.contact-studio-heading {

  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 60px;

}

.contact-studio-kicker {

  display: block;
  margin-bottom: 10px;
  color: #0d6b68;
  font-family: "DM Sans",
        sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}

.contact-studio-heading h2 {

  margin: 0;
  color: #1c1b1b;
  font-family: "Playfair Display",
        serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;

}

.contact-studio-heading p {

  max-width: 480px;
  margin: 0;
  color: #626b69;
  font-family: "DM Sans",
        sans-serif;
  font-size: 14px;
  line-height: 1.75;

}

/* =========================================
   MAP
========================================= */

.contact-map {

  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #e7e5e3;

}

.contact-map-image {

  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 1.2s
        cubic-bezier(0.2, 0.8, 0.2, 1);

}

.contact-map:hover
.contact-map-image {

  transform: scale(1.04);

}

.contact-map-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.20)
        );

}

/* Map card */

.contact-map-card {

  position: absolute;
  left: 35px;
  bottom: 35px;
  max-width: 390px;
  padding: 20px
        24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px
        rgba(0, 0, 0, 0.13);

}

.contact-map-icon {

  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 107, 104, 0.09);
  color: #0d6b68;

}

.contact-map-icon
.material-symbols-outlined {

  font-size: 23px;

}

.contact-map-card span:not(.material-symbols-outlined) {

  display: block;
  margin-bottom: 5px;
  color: #0d6b68;
  font-family: "DM Sans",
        sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;

}

.contact-map-card strong {

  display: block;
  color: #1c1b1b;
  font-family: "Playfair Display",
        serif;
  font-size: 18px;
  font-weight: 600;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .contact-hero-grid {

    gap: 55px;

  }

  .contact-main-container {

    gap: 55px;

  }

  .contact-form-card {

    padding: 42px
              36px;

  }

}

@media (max-width: 850px) {

  .contact-hero {

    padding: 105px
              24px
              85px;

  }

  .contact-hero-grid {

    grid-template-columns: 1fr;
    gap: 35px;

  }

  .contact-hero-copy {

    max-width: 650px;

  }

  .contact-main-section {

    padding: 100px
              24px;

  }

  .contact-main-container {

    grid-template-columns: 1fr;
    gap: 75px;

  }

  .contact-info-column {

    max-width: 700px;

  }

  .contact-studio-heading {

    grid-template-columns: 1fr;
    gap: 20px;

  }

}

@media (max-width: 600px) {

  .contact-hero {

    padding: 85px
              20px
              70px;

  }

  .contact-hero-eyebrow {

    margin-bottom: 28px;

  }

  .contact-hero h1 {

    font-size: 49px;

  }

  .contact-hero-copy p {

    font-size: 14px;

  }

  .contact-main-section {

    padding: 80px
              20px;

  }

  .contact-form-card {

    padding: 32px
              22px;

  }

  .contact-form-top {

    margin-bottom: 35px;
    padding-bottom: 25px;

  }

  .contact-form-number {

    font-size: 34px;

  }

  .contact-form-grid {

    grid-template-columns: 1fr;
    gap: 27px;

  }

  .contact-form-bottom {

    flex-direction: column;
    align-items: stretch;
    gap: 22px;

  }

  .contact-form-bottom p {

    max-width: 100%;

  }

  .contact-submit-button {

    width: 100%;

  }

  .contact-detail-card {

    grid-template-columns: 44px 1fr auto;
    gap: 13px;

  }

  .contact-hours-row {

    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 13px 0;

  }

  .contact-hours-row strong {

    text-align: left;

  }

  .contact-studio-section {

    padding: 0
              20px
              90px;

  }

  .contact-map {

    min-height: 400px;

  }

  .contact-map-card {

    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 17px
              18px;

  }
}

/* =========================================
   THANK YOU PAGE
========================================= */

.thankyou-page {
    width: 100%;
    background: #fcf9f8;
}

.thankyou-section {
    position: relative;
    min-height: 720px;

    padding: 125px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(13, 107, 104, 0.09),
            transparent 34%
        ),
        #fcf9f8;
}

.thankyou-section::before {
    content: "";

    position: absolute;
    top: 90px;
    left: -110px;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(13, 107, 104, 0.07);
    border-radius: 50%;
}

.thankyou-section::after {
    content: "";

    position: absolute;
    right: -140px;
    bottom: 60px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(13, 107, 104, 0.07);
    border-radius: 50%;
}

.thankyou-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 930px;

    margin: 0 auto;
}

.thankyou-card {
    padding: 74px 70px;

    text-align: center;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(13, 107, 104, 0.11);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(10px);
}


/* Icon */

.thankyou-icon-wrap {
    width: 76px;
    height: 76px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(13, 107, 104, 0.09);

    color: #0d6b68;
}

.thankyou-icon-wrap .material-symbols-outlined {
    font-size: 36px;

    font-variation-settings:
        "FILL" 0,
        "wght" 400;
}


/* Eyebrow */

.thankyou-eyebrow {
    margin-bottom: 22px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #0d6b68;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.thankyou-line {
    width: 34px;
    height: 1px;

    background: #0d6b68;
}


/* Heading */

.thankyou-card h1 {
    max-width: 720px;

    margin: 0 auto 28px;

    color: #1c1b1b;

    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.045em;
}

.thankyou-card h1 span {
    display: block;

    color: #0d6b68;
}


/* Main text */

.thankyou-text {
    max-width: 650px;

    margin: 0 auto 16px;

    color: #596260;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;

    line-height: 1.8;
}

.thankyou-note {
    max-width: 580px;

    margin: 0 auto;

    color: #737b79;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    line-height: 1.7;
}


/* Buttons */

.thankyou-actions {
    margin-top: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.thankyou-primary-btn,
.thankyou-secondary-btn {
    min-height: 52px;

    padding: 13px 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.thankyou-primary-btn {
    border: 1px solid #0d6b68;

    background: #0d6b68;
    color: #ffffff;
}

.thankyou-primary-btn:hover {
    background: #075653;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(13, 107, 104, 0.2);
}

.thankyou-secondary-btn {
    border:
        1px solid
        rgba(28, 27, 27, 0.18);

    background: transparent;

    color: #1c1b1b;
}

.thankyou-secondary-btn:hover {
    border-color: #0d6b68;

    color: #0d6b68;

    transform: translateY(-3px);
}

.thankyou-actions .material-symbols-outlined {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.thankyou-primary-btn:hover
.material-symbols-outlined {
    transform: translateX(4px);
}

.thankyou-secondary-btn:hover
.material-symbols-outlined {
    transform: translate(3px, -3px);
}


/* Bottom */

.thankyou-bottom {
    margin-top: 50px;
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-top:
        1px solid
        rgba(28, 27, 27, 0.08);

    color: #8a908e;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thankyou-bottom-label {
    color: #0d6b68;
    font-weight: 700;
}

.thankyou-bottom-divider {
    width: 24px;
    height: 1px;

    background:
        rgba(13, 107, 104, 0.25);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .thankyou-section {
        min-height: auto;

        padding:
            90px
            20px;
    }

    .thankyou-card {
        padding:
            55px
            27px;
    }

    .thankyou-icon-wrap {
        width: 66px;
        height: 66px;

        margin-bottom: 25px;
    }

    .thankyou-icon-wrap
    .material-symbols-outlined {
        font-size: 31px;
    }

    .thankyou-card h1 {
        font-size: 48px;

        margin-bottom: 23px;
    }

    .thankyou-text {
        font-size: 14px;
    }

    .thankyou-actions {
        flex-direction: column;

        margin-top: 34px;
    }

    .thankyou-primary-btn,
    .thankyou-secondary-btn {
        width: 100%;
    }

    .thankyou-bottom {
        margin-top: 40px;

        flex-direction: column;

        gap: 8px;
    }

    .thankyou-bottom-divider {
        width: 1px;
        height: 18px;
    }
}

.photo-footer-bottom-container {
    width: 100%;
    max-width: 1340px;
    min-height: 74px;
    margin: 0 auto;
    padding: 20px 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.photo-footer-copyright {
    margin: 0;

    color: var(--photo-text-soft);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;

    text-align: center;
}

/* =========================================
   PACKAGE STARTING PRICE
========================================= */

.package-price-section {
    padding: 0 24px 110px;

    background: #fcf9f8;
}

.package-price-container {
    width: 100%;
    max-width: 1340px;

    margin: 0 auto;
}

.package-price-card {
    position: relative;

    padding: 42px 44px;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 34px;

    background: #ffffff;

    border: 1px solid rgba(13, 107, 104, 0.12);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.045);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.package-price-card:hover {
    transform: translateY(-6px);

    border-color: rgba(13, 107, 104, 0.28);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.08);
}


/* Accent line */

.package-price-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #0d6b68;
}


/* Icon */

.package-price-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(13, 107, 104, 0.08);

    color: #0d6b68;

    flex-shrink: 0;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.package-price-card:hover
.package-price-icon {
    background: #0d6b68;

    color: #ffffff;

    transform: rotate(-5deg) scale(1.05);
}

.package-price-icon
.material-symbols-outlined {
    font-size: 30px;

    font-variation-settings:
        "FILL" 0,
        "wght" 400;
}


/* Content */

.package-price-content {
    max-width: 720px;
}

.package-price-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #0d6b68;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.package-price-content h2 {
    margin: 0 0 10px;

    color: #1c1b1b;

    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.package-price-content h2 span {
    color: #0d6b68;
}

.package-price-content p {
    max-width: 650px;

    margin: 0;

    color: #626b69;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    line-height: 1.75;
}


/* Button */

.package-price-button {
    min-height: 50px;

    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #0d6b68;

    background: #0d6b68;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.package-price-button:hover {
    background: #075653;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(13, 107, 104, 0.18);
}

.package-price-button
.material-symbols-outlined {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.package-price-button:hover
.material-symbols-outlined {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .package-price-card {
        grid-template-columns: auto 1fr;
    }

    .package-price-action {
        grid-column: 2;
    }
}


@media (max-width: 650px) {

    .package-price-section {
        padding:
            0
            20px
            80px;
    }

    .package-price-card {
        padding:
            32px
            26px;

        grid-template-columns: 1fr;

        gap: 22px;

        text-align: left;
    }

    .package-price-icon {
        width: 62px;
        height: 62px;
    }

    .package-price-action {
        grid-column: auto;
    }

    .package-price-button {
        width: 100%;
    }

}

