:root {
  --black: #000000;
  --section-black: #171717;
  --graphite: #202020;
  --white: #ffffff;
  --bronze: #a4705b;
  --bronze-light: #d0987d;
  --text-muted: rgba(255, 255, 255, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

/* Section backgrounds */
.section--black {
  background-color: var(--section-black);
}

.section--graphite {
  background-color: var(--graphite);
}

.section {
  padding: 0 2.5rem;
}

/* Headers: white + bronze */
.section-header {
  margin-bottom: 1.5rem;
}

.section-header--left {
  text-align: left;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0;
}

.section-line {
  border-top: 1px solid var(--bronze);
  width: 100px;
  margin: 1rem 0;
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding-top: 1rem;
}

.section-header .section-desc {
  max-width: 32rem;
}

.hero .section-line {
  margin-left: 0;
  margin-right: auto;
}

.section-line {
  margin-left: auto;
  margin-right: auto;
}

.hero .section-header .section-desc,
.services-intro .section-header .section-desc,
.gallery-intro .section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}



.services-intro .section-header .section-desc {
  max-width: 40rem;
}

.about__content .section-header .section-desc {
  max-width: none;
}

.gallery-intro .section-header .section-desc {
  max-width: none;
}

.section-title--sm {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.text-bronze {
  color: var(--bronze-light);
}

.service-card__title,
.contact-item__label {
  color: var(--bronze);
}

/* ——— 1. Hero ——— */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  overflow: hidden;
  height: 100vh;
}

#hero .header,
#hero .hero {
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}

.logo__img {
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--bronze-light);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  max-width: 30rem;
  margin-left: 10%;
  margin-right: auto;
  padding: 2rem 0;
}

.hero__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  align-items: center;
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--bronze {
  background-color: var(--bronze);
  color: var(--black);
}

.btn--bronze:hover {
  background-color: var(--bronze-light);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
}

/* ——— 2. About ——— */
#about {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-title .text-bronze {
  font-family: 'Marck Script', cursive;
  display: flex;
  align-items: center;
}

.big-letter {
  font-size: 5rem;
  display: inline-block;
  line-height: 1;
  margin-right: 6px;
}

.about-title::after {
  content: "";
  width: 80px;
  height: 1px;
  background: var(--bronze);
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about__stats {
  list-style: none;
  display: flex;
  flex-wrap: nowrap; /* important */
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #a4705b;
  text-align: center;
}

/* remove line from last item */
.about__stats li:last-child {
  border-right: none;
}

.about__media {
  border-radius: 4px;
  overflow: visible;
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.about__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ——— 3. Gallery wheel ——— */
.section--gallery {
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 0;
}

.gallery-intro {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 2.5rem;
  /*padding-right: 2.5rem;*/
}

/* SECTION */
.slider-section {
  width: 100%;
  /*max-width: 1200px;*/
  margin: 100px auto;
}

/* LAYOUT */
.slider-layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ARROWS OUTSIDE */
.custom-prev,
.custom-next {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #ffffff;
  border-radius: 50%;

  color: #B87333;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;

  transition: 0.3s;
}

.custom-prev:hover,
.custom-next:hover {
  background: #B87333;
  color: white;
}

/* SWIPER */
.mySwiper {
  flex: 1;
  overflow: hidden;
}

/* SLIDES */
.swiper-slide {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #222;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DOTS BELOW OUTSIDE */
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 30px;
}

/* DOT */
.custom-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(184,115,51,0.35);
  opacity: 1;
}

.custom-pagination .swiper-pagination-bullet-active {
  background: #B87333;
  transform: scale(1.2);
}

/* MOBILE */
@media (max-width: 700px) {

  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    order: 2;
  }

  .logo {
    order: 1;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .slider-layout {
    gap: 10px;
  }

  .custom-prev,
  .custom-next {
    font-size: 28px;
  }
}

/* ——— 4. Services + footer ——— */
#services {
  padding-top: 5rem;
  padding-bottom: 0;
}

.services-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.services-intro .section-header {
  margin-bottom: 0;
}

.gallery-intro .section-header {
  margin-bottom: 1rem;
}

.gallery-intro .section-header .section-desc {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 40rem;
  margin: 0 auto 4rem;
}

.service-card {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(176, 141, 87, 0.4);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--bronze-light);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
  margin-top: 1rem;
}

.footer__intro {
  max-width: 72rem;
  margin: 0 auto 2.5rem;
}

.footer__photos {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 1.25rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.footer__photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  max-width: 500px; 
  height: auto;
>}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 2.5rem;
}

.contact-item {
  text-align: center;
}

.contact-item p {
  color: var(--white);
  font-size: 1.3rem;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: var(--bronze-light);
}

.contact-item__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 72rem;
  margin: 0 auto;
}

img, video {
  /* Sets a 2px solid bronze border using the standard hex code #CD7F32 */
  border: 2px solid #b08d57; 
  
  /* Adds a subtle rounding to the corners */
  border-radius: 12px; 
  
  /* Optional: ensures content doesn't "leak" past the rounded corners */
  overflow: hidden; 
}

#site-logo {
  border: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fa-clock, .fa-instagram, .fa-location-dot, .fa-phone {
  font-size: 40px;
}

.fa-gem, .fa-spray-can-sparkles, .fa-heart {
  font-size: 40px;
}

.service-call {
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal center */
  justify-content: center;
  text-align: center;
  height: 300px;
  width: 100%; 
  background-image: url("media/site/contact/call.png");
  background-size: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
}

.call-wrapper {
  margin: 20px 50px;
}

.service-call h2{
    font-weight: 500;
    letter-spacing: 2px;
}

.service-call p{
  font-weight: 400;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-height: 30rem;
    aspect-ratio: 16 / 10;
  }

}

@media (max-width: 768px) {
  .footer__contacts {
    grid-template-columns: 1fr;
  }

  .contact-item {
    text-align: left;
  }

  .footer__photos {
    max-width: none;
  }

  .service-call {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .nav {
    gap: 1rem 1.5rem;
  }
  
  .nav a {
    font-size: 0.7rem;
  }

  .nav #main {
    display: none;
  }
  
  .hero__actions a{
    margin: 0 auto;
    display: block;
    transform: translateX(-10%);
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section--gallery {
    padding-right: 0;
  }

  .gallery-intro {
    padding-right: 1.25rem;
  }

  .gallery-wheel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    scroll-padding-left: 1.25rem;
  }

  .header {
    flex-direction: column;
    gap: 1.25rem;
  }

  .about__stats {
    display: block;
    flex-wrap: wrap; 
  }

  .about__stats li {
    flex-direction: row;   /* icon next to text */
    align-items: center;
    gap: 8px;
    border-right: none;
    padding: 10px 0;
  }

  .mobile-break {
    display: none;
  }

  .gallery-card {
    height: 320px;
  }

  .service-call {
    background-image: url("media/site/contact/call-large.png");
    height: 100px;
    font-size: 12px;
  }
  
  .footer__photos {
      grid-template-columns: 300px; /* single column */
  }
}
