/* ===================================================== */
/*                 GLOBAL FOUNDATION                     */
/* ===================================================== */

:root {
  --ink: #222;
  --muted: #666;
  --line: #eaeaea;
  --gold: #b89a5e;
  --bg-soft: #f5f4f2;
  --gallery-card-min: 220px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  color: var(--ink);
  background-color: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

/* (Optional) If you want centered body text globally, keep this.
   Otherwise delete it and control alignment per section. */
body {
  text-align: center;
}

/* ===================================================== */
/*                 SHARED HEADER & NAV                   */
/* ===================================================== */

.site-header {
  background-color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  height: 95px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* links + dropdown button */
.main-nav a,
.main-nav .dropbtn {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
}

/* underline hover */
.main-nav a::after,
.main-nav .dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav .dropbtn:hover::after {
  width: 100%;
}

.main-nav .dropbtn {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 8px 14px;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dropdown-content a:hover {
  background-color: #1f1f1f;
  color: var(--gold);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive header */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-logo {
    height: 64px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 18px;
  }
}

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

main {
  padding: 34px 16px 26px;
}

.hero-wrapper {
  padding: 24px 0 10px;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  padding: 0 12px 32px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.hero-inner-padding {
  padding: 32px 32px 10px;
}

.hero-title {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 4px 0 10px;
  color: var(--gold);
}

.hero-meta {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 6px 0 16px;
  color: var(--muted);
}

.hero-intro {
  font-size: 1rem;
  margin: 10px 0 14px;
}

.divider {
  width: 48%;
  margin: 20px auto;
  border: 0;
  border-top: 1px solid #dedede;
}

.section {
  max-width: 760px;
  margin: 20px auto;
  text-align: center;
  line-height: 1.7;
}

.section-title {
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.section-underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 14px;
  border-radius: 999px;
}

.section p {
  font-size: 0.98rem;
  color: #333;
  margin: 6px 0 0;
}

/* ===================================================== */
/*                  PROCESS BAND (GRID)                  */
/* ===================================================== */

.process-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 14px;
  margin: 22px auto;
  max-width: 1100px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.process-step {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  font-size: 14.5px;
  color: #444;
}

@media (max-width: 900px) {
  .process-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .process-band {
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */
/*                      CTA PILL                         */
/* ===================================================== */

.cta-pill {
  margin-top: 22px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.cta-pill__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background-color: #000;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-pill__btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 0.86rem;
  background: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta-pill__btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ghost variant (optional) */
.cta-pill__btn.is-ghost {
  background: transparent;
  color: #f5f5f5;
}

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

footer {
  color: #777;
  margin: 18px 0 24px;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #ddd;
  padding-top: 14px;
}


/* ===== GLOBAL PAGE FADE (SLOW & FLUID) ===== */

body {
  opacity: 0;
  animation: pageFadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Smooth luxury fade */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

:root {
  --gallery-card-min: 180px; /* smaller so 5 fit */
}

.gallery {
  max-width: 1275px;
  margin: 32px auto 10px;
  padding: 0 12px 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  cursor: zoom-in;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
  
}

.gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
  position: relative;
  z-index: 5;
}

@media (max-width: 1200px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
}

