:root {
  --background: #faf8f4;
  --foreground: #2c2c2c;
  --primary: #5f6f52;
  --secondary: #f0eae0;
  --muted: #7f7062;
  --accent: #e88fa9;
  --white: #ffffff;
  --border: rgba(95, 111, 82, 0.18);
  --shadow: 0 18px 45px rgba(44, 44, 44, 0.1);
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Jost", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body,
button,
input,
textarea,
select {
  font-family: "Jost", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

/* =========================================================
   GENERAL
========================================================= */

.section {
  padding: 135px 4%;
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
}

.section-heading.centered {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 70px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .divider {
  margin-right: auto;
  margin-left: auto;
}

.section-description {
  max-width: 720px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.eyebrow,
.section-label {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.section-label {
  color: var(--accent);
}

.divider {
  width: 50px;
  height: 1px;
  margin: 31px 0 38px;
  background: var(--accent);
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;

  width: 100%;
  min-height: 82px;
  padding: 0 3.5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--primary);
  background: rgba(250, 248, 244, 0.97);
  border-bottom: 1px solid rgba(95, 111, 82, 0.12);
  box-shadow: 0 5px 20px rgba(44, 44, 44, 0.05);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.portfolio-navbar {
  position: fixed;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand-location {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--foreground);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links .active-link {
  color: var(--primary);
  opacity: 1;
}

.appointment-button {
  padding: 14px 22px;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  opacity: 1 !important;
}

.appointment-button:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 29px;
  cursor: pointer;
}

/* =========================================================
   HOME HERO
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 24px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: var(--primary);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(930px, 94%);
  padding: 70px 45px;

  text-align: center;
  color: var(--white);
  background: rgba(17, 25, 15, 0.68);
}

.eyebrow {
  opacity: 0.75;
}

.hero h1 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(75px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  font-size: 0.78em;
  font-style: italic;
  opacity: 0.88;
}

.hero-description {
  max-width: 620px;
  margin: 42px auto;

  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.button {
  padding: 17px 31px;
  font-size: 11px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.button-light {
  background: var(--white);
  color: var(--primary);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 105px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .image-placeholder {
  aspect-ratio: 3 / 4;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.experience-box {
  position: absolute;
  right: -28px;
  bottom: -28px;

  min-width: 175px;
  padding: 28px;

  background: rgba(246, 227, 233, 0.9);
  border: 1px solid rgba(232, 143, 169, 0.45);
  text-align: center;
}

.experience-box strong {
  display: block;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.experience-box span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0;

  color: var(--foreground);
  font-family: "Playfair Display", serif;
  font-size: clamp(53px, 5.2vw, 75px);
  font-weight: 400;
  line-height: 1.08;
}

.about-content h2 span {
  display: block;
  margin-top: 7px;
  color: var(--primary);
  font-style: italic;
}

.about-content > p:not(.section-label) {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.stats {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stats div {
  padding-top: 24px;
  border-top: 1px solid rgba(95, 111, 82, 0.23);
  text-align: center;
}

.stats strong {
  display: block;

  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
  background: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 29px;
}

.service-subtitle {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.service-body h3 {
  margin: 0 0 19px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 400;
}

.service-body > p:not(.service-subtitle) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-body ul {
  display: grid;
  gap: 12px;

  margin: 0 0 31px;
  padding: 0;

  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 17px;
  font-size: 15px;
  line-height: 1.5;
}

.service-body li::before {
  position: absolute;
  top: 10px;
  left: 0;

  width: 5px;
  height: 5px;

  background: var(--accent);
  content: "";
}

.text-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

/* =========================================================
   QUOTE
========================================================= */

.quote-banner {
  padding: 105px 24px;
  background: var(--primary);
  text-align: center;
}

.quote-content {
  max-width: 930px;
  margin: 0 auto;
}

.quote-mark {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 70px;
  line-height: 1;
}

.quote-content blockquote {
  margin: 0;

  color: rgba(250, 248, 244, 0.94);
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 3.6vw, 47px);
  font-style: italic;
  line-height: 1.5;
}

.quote-divider {
  width: 46px;
  height: 1px;
  margin: 34px auto 21px;
  background: var(--accent);
}

.quote-content p {
  margin: 0;
  color: rgba(250, 248, 244, 0.65);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =========================================================
   HOME PORTFOLIO
========================================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.portfolio-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.portfolio-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}

.portfolio-info {
  padding: 29px;
}

.portfolio-info p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-info h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.25;
}

/* =========================================================
   INSTAGRAM
========================================================= */

.instagram-section {
  background: #f6f1e9;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
}

.instagram-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.instagram-button-wrapper {
  margin-top: 43px;
  text-align: center;
}

.instagram-button {
  display: inline-block;
  padding: 16px 31px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.instagram-button:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 85px;
  align-items: start;
}

.contact-intro {
  margin: 0 0 43px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.contact-list {
  display: grid;
  gap: 29px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  align-items: center;
}

.contact-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(232, 143, 169, 0.55);
  color: var(--accent);
  font-size: 21px;
}

.contact-item p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 43px;
  padding: 17px 27px;
  background: #25d366;
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.map-placeholder,
.map-embed {
  min-height: 430px;
  overflow: hidden;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-embed {
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

.map-open-button {
  position: absolute;
  right: 19px;
  bottom: 19px;
  z-index: 2;

  display: inline-block;
  padding: 15px 20px;

  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =========================================================
   PORTFOLIO PAGE HERO
========================================================= */

.portfolio-page {
  background: var(--background);
}

.portfolio-hero {
  min-height: 550px;
  padding: 185px 5% 120px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      rgba(40, 51, 34, 0.82),
      rgba(40, 51, 34, 0.94)
    ),
    var(--primary);

  color: var(--white);
  text-align: center;
}

.portfolio-hero .container {
  max-width: 900px;
}

.portfolio-hero .section-label {
  color: var(--accent);
}

.portfolio-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(75px, 9vw, 120px);
  font-weight: 400;
  line-height: 1;
}

.portfolio-hero-description {
  max-width: 750px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}

.portfolio-page-section {
  padding-top: 105px;
}

/* =========================================================
   VIEW SWITCH
========================================================= */

.portfolio-view-switch {
  margin-bottom: 40px;
  text-align: center;
}

.filter-group-label {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.view-buttons {
  display: inline-flex;
  padding: 6px;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.view-button {
  min-width: 185px;
  padding: 15px 23px;

  border: 0;
  background: transparent;
  color: var(--muted);

  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  cursor: pointer;
}

.view-button.active {
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   FILTERS
========================================================= */

.portfolio-filter-panel {
  margin-bottom: 45px;
  padding: 39px;

  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.filter-group + .filter-group {
  margin-top: 31px;
  padding-top: 31px;
  border-top: 1px solid var(--border);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.portfolio-filter-button {
  min-height: 46px;
  padding: 11px 19px;

  border: 1px solid var(--border);
  background: var(--background);
  color: var(--muted);

  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.portfolio-filter-button:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 111, 82, 0.5);
  color: var(--primary);
}

.portfolio-filter-button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.color-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.color-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;

  display: inline-block;

  border: 1px solid rgba(44, 44, 44, 0.18);
  border-radius: 50%;
}

.color-white {
  background: #ffffff;
}

.color-pink {
  background: #e8a0b4;
}

.color-blue {
  background: #9fb8d0;
}

.color-yellow {
  background: #e8cf6a;
}

.color-red {
  background: #a74343;
}

.color-orange {
  background: #d28a4b;
}

.color-purple {
  background: #a38ab7;
}

.color-green {
  background: #78926b;
}

.color-pastel {
  background: linear-gradient(
    135deg,
    #f3cad5 0 25%,
    #d8e7ca 25% 50%,
    #d7e3ef 50% 75%,
    #f0dfb2 75% 100%
  );
}

.color-multicolor {
  background: conic-gradient(
    #e8a0b4,
    #e8cf6a,
    #78926b,
    #9fb8d0,
    #a38ab7,
    #e8a0b4
  );
}

.portfolio-filter-button.active .color-dot {
  border-color: rgba(255, 255, 255, 0.75);
}

.clear-filters-button {
  margin-top: 33px;
  padding: 13px 19px;

  border: 0;
  border-bottom: 1px solid var(--accent);

  background: transparent;
  color: var(--accent);

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  cursor: pointer;
}

.portfolio-results-header {
  margin-bottom: 27px;
  display: flex;
  justify-content: flex-end;
}

.portfolio-results-header p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================================================
   EVENT CARDS
========================================================= */

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.gallery-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--border);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.clickable-card {
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-card:focus-visible,
.photo-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary);
}

.gallery-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.04);
}

.gallery-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 29px;
}

.event-card-topline {
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.event-card-topline p {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.style-badge {
  padding: 6px 10px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card-content h2 {
  margin: 0;

  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.25;
}

.event-location {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.event-card-meta {
  margin-top: 24px;
  padding-top: 19px;

  display: flex;
  justify-content: space-between;
  gap: 15px;

  border-top: 1px solid var(--border);

  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-color-tags {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-color-tags span {
  padding: 7px 10px;

  background: var(--background);
  border: 1px solid var(--border);

  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.open-project-button {
  width: 100%;
  margin-top: 27px;
  padding: 15px 17px;

  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;

  cursor: pointer;
}

.open-project-button:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================================================
   ALL PHOTOS
========================================================= */

.all-photos-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.photo-card {
  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--border);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.photo-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;
  background: var(--secondary);
}

.photo-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.photo-card:hover .photo-card-image img {
  transform: scale(1.045);
}

.photo-card-text {
  min-height: 110px;
  padding: 19px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.photo-card-text p {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.35;
}

.photo-card-text span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.portfolio-empty-state {
  padding: 80px 30px;

  border: 1px solid var(--border);
  background: var(--white);

  text-align: center;
}

.portfolio-empty-state h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 41px;
  font-weight: 400;
}

.portfolio-empty-state p {
  margin: 17px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.portfolio-empty-state button {
  padding: 15px 22px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
}

/* =========================================================
   ALBUM MODAL
========================================================= */

.album-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;
}

.album-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(17, 22, 15, 0.84);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.album-modal-content {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  max-height: calc(100vh - 50px);

  overflow-y: auto;

  padding: 62px;

  background: var(--background);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.38);
}

.album-modal-close {
  position: absolute;
  top: 19px;
  right: 23px;
  z-index: 5;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);

  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1;

  cursor: pointer;
}

.album-modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.album-modal-header {
  max-width: 830px;
  margin-bottom: 45px;
}

.album-modal-category {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.album-modal-header h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.1;
}

.album-modal-description {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.album-modal-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.album-modal-tags span {
  padding: 8px 11px;

  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);

  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.album-photo-button {
  position: relative;

  min-width: 0;
  padding: 0;

  overflow: hidden;

  border: 0;
  background: var(--secondary);

  cursor: pointer;
}

.album-photo-button img {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.album-photo-button span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 43px 17px 17px;

  color: var(--white);
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.78)
  );

  font-size: 11px;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

.album-photo-button:hover img {
  transform: scale(1.045);
  filter: brightness(0.9);
}

/* =========================================================
   LIGHTBOX
========================================================= */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;
}

.image-lightbox-overlay {
  position: absolute;
  inset: 0;

  background: rgba(8, 10, 7, 0.95);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image-lightbox-content {
  position: relative;
  z-index: 2;

  width: min(1250px, 100%);
  height: min(88vh, 920px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-content figure {
  width: 100%;
  height: 100%;
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-lightbox-content img {
  max-width: 100%;
  max-height: calc(100% - 60px);
  object-fit: contain;
}

.image-lightbox-content figcaption {
  min-height: 50px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.image-lightbox-close {
  position: fixed;
  top: 23px;
  right: 26px;
  z-index: 5;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);

  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;

  cursor: pointer;
}

.image-lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 5;

  width: 54px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);

  font-family: Arial, sans-serif;
  font-size: 44px;

  cursor: pointer;
}

.image-lightbox-prev {
  left: 26px;
}

.image-lightbox-next {
  right: 26px;
}

.image-lightbox-close:hover,
.image-lightbox-arrow:hover {
  background: rgba(95, 111, 82, 0.9);
}

/* =========================================================
   PORTFOLIO CTA
========================================================= */

.portfolio-cta {
  padding: 105px 5%;
  background: var(--secondary);
  text-align: center;
}

.portfolio-cta p {
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.portfolio-cta h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 400;
}

.portfolio-cta a {
  display: inline-block;
  margin-top: 34px;
  padding: 17px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 85px 4% 34px;
  background: var(--primary);
  color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 75px;
}

.footer-brand {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  letter-spacing: 0.12em;
}

.footer-location,
.footer-title {
  color: rgba(250, 248, 244, 0.55);
  font-size: 10px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.footer-description {
  max-width: 430px;
  color: rgba(250, 248, 244, 0.75);
  font-size: 16px;
  line-height: 1.85;
}

.footer-navigation,
.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-navigation a,
.footer-contact,
.footer-contact a {
  color: rgba(250, 248, 244, 0.77);
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 21px;
  margin-top: 28px;
}

.social-links a {
  color: var(--background);
  font-size: 15px;
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 31px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(250, 248, 244, 0.15);
}

.footer-bottom p {
  margin: 0;
  color: rgba(250, 248, 244, 0.48);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .nav-links {
    gap: 21px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .all-photos-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .album-modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .navbar {
    min-height: 74px;
    padding: 0 24px;
  }

  .brand-name {
    font-size: 23px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;

    width: 100%;
    padding: 28px 24px;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    background: rgba(250, 248, 244, 0.99);
    border-top: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(44, 44, 44, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding: 55px 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-image {
    max-width: 680px;
    margin: 0 auto;
  }

  .experience-box {
    right: 15px;
    bottom: -28px;
  }

  .portfolio-filter-panel {
    padding: 30px;
  }

  .album-modal-content {
    padding: 55px 32px 38px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 100px 24px;
  }

  .services-grid,
  .portfolio-grid,
  .contact-grid,
  .footer-grid,
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .all-photos-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .portfolio-hero {
    min-height: 480px;
    padding-top: 155px;
    padding-bottom: 85px;
  }

  .portfolio-hero-description {
    font-size: 16px;
  }

  .view-buttons {
    width: 100%;
  }

  .view-button {
    width: 50%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  .event-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .album-modal {
    padding: 12px;
  }

  .album-modal-content {
    max-height: calc(100vh - 24px);
    padding: 60px 21px 28px;
  }

  .album-modal-gallery {
    grid-template-columns: 1fr;
  }

  .image-lightbox {
    padding: 15px;
  }

  .image-lightbox-arrow {
    top: auto;
    bottom: 18px;

    width: 52px;
    height: 50px;

    transform: none;
  }

  .image-lightbox-prev {
    left: calc(50% - 64px);
  }

  .image-lightbox-next {
    right: calc(50% - 64px);
  }

  .image-lightbox-content {
    height: calc(100vh - 100px);
    padding-bottom: 65px;
  }

  .map-open-button {
    right: 13px;
    bottom: 13px;
    left: 13px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 88px 20px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 46px;
  }

  .about-content > p:not(.section-label) {
    font-size: 16px;
  }

  .stats {
    gap: 10px;
  }

  .stats strong {
    font-size: 33px;
  }

  .stats span {
    font-size: 8px;
  }

  .portfolio-page-section {
    padding-top: 75px;
  }

  .portfolio-filter-panel {
    margin-right: -3px;
    margin-left: -3px;
    padding: 24px 18px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .portfolio-filter-button {
    padding: 10px 13px;
    font-size: 9px;
  }

  .all-photos-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-results-header {
    justify-content: flex-start;
  }

  .portfolio-cta {
    padding: 80px 22px;
  }

  .album-modal-header h2 {
    padding-right: 35px;
    font-size: 42px;
  }

  .album-modal-description {
    font-size: 16px;
  }

  .footer-brand {
    font-size: 32px;
  }
}
/* =========================================================
   PORTFOLIO DROPDOWN NAVIGATION
========================================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  padding: 0;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  border: 0;
  background: transparent;
  color: var(--foreground);

  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.7;
  cursor: pointer;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active-link,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--primary);
  opacity: 1;
}

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Αόρατη γέφυρα ώστε να μη χάνεται το hover */
.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;

  height: 19px;

  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 600;

  min-width: 260px;
  padding: 10px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transform:
    translateX(-50%)
    translateY(8px);

  background: rgba(250, 248, 244, 0.99);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(44, 44, 44, 0.14);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}

.nav-dropdown-menu a {
  width: 100%;
  padding: 12px 14px;

  display: block;

  color: var(--foreground);
  border-bottom: 1px solid rgba(95, 111, 82, 0.1);

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: none;

  opacity: 0.78;
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active-link {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}

/* =========================================================
   MOBILE PORTFOLIO DROPDOWN
========================================================= */

@media (max-width: 950px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;

    min-width: 0;
    max-height: 0;
    padding: 0 0 0 18px;

    overflow: hidden;

    visibility: visible;
    opacity: 1;
    pointer-events: none;

    transform: none;

    background: transparent;
    border: 0;
    box-shadow: none;

    transition:
      max-height 0.3s ease,
      padding-top 0.3s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding-top: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
    padding-top: 14px;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: 0;
    font-size: 12px;
  }
}