* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.pan-locked,
body.pan-locked {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

section {
  padding: 86px 0;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  max-width: 740px;
  margin: 0 auto 24px auto;
  font-size: clamp(2.1rem, 4.6vw, 4.7rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

main {
  text-align: center;
  overflow: hidden;
}

.service {
  text-align: center;
}

:root {
  --bg-dark: #070e0a;
  --bg-panel: #112017;
  --text-main: #fbf7ef;
  --text-muted: rgba(251, 247, 239, 0.5);
  --accent-gold: #d8c88c;
  --line: rgba(251, 247, 239, 0.1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.glass-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(7, 14, 10, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out-expo);
}

.interactive-link {
  position: relative;
  overflow: hidden;
}

.interactive-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.interactive-link:hover::after {
  transform: translateX(0);
}

section {
  padding: 120px 0;
}

.hero-content {
  padding-bottom: 80px;
}

.title_1 {
  margin-bottom: 32px !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.header_text {
  color: rgba(245, 236, 216, 0.72);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;}

.intro_text {
  margin-bottom: 48px !important;
}

.section-heading {
  margin-bottom: 64px !important;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--bg-panel);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;


  height: 100%;
  margin-top: 0 !important;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.service-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.card-number {
  color: var(--accent-gold);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.editorial-split .text-block {
  max-width: 480px;
  margin: 0 auto;
}

.portrait {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}

section {
  padding: clamp(60px, 10vh, 140px) 0 !important;
}

.section-heading,
.gallery-section .wrap {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  padding: 60px 0 40px 0;
  width: 100%;
}

.flex-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flex-footer {
    flex-direction: column;
    gap: 12px;
  }
}

.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slideshow-img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .slideshow-container {
    max-width: 320px;
    margin: 0 auto;
  }
}

h1.title_1.animated-slide-up {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  
  
letter-spacing: 0.16em;
line-height: 1;
text-transform: uppercase;

}
