/* ================================
   Braids.hanau — Design Tokens
   ================================ */
:root{
  --black:        #1b1613;
  --black-soft:   #241e19;
  --cream:        #faf5ee;
  --beige:        #e7d9c6;
  --gold:         #b1854a;
  --gold-light:   #d9b978;
  --text-dark:    #2a221c;
  --text-light:   #f4ece0;
  --text-muted:   #8a7c6d;

  --font-display: "Cormorant Garamond", serif;
  --font-body:    "Manrope", sans-serif;

  --radius: 2px;
  --max-width: 1180px;
  --header-h: 76px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3{ font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--black); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--black);
  padding: .6rem 1rem; z-index: 999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============ Buttons ============ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px;
  padding: .95rem 2rem;
  font-family: var(--font-body); font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-gold{ background: var(--gold); color: var(--black); box-shadow: 0 1px 2px rgba(27,22,19,.15); }
.btn-gold:hover{ background: var(--gold-light); box-shadow: 0 10px 24px rgba(177,133,74,.35); }

.btn-outline{ border-color: var(--text-light); color: var(--text-light); }
.btn-outline:hover{ background: rgba(244,236,224,.1); border-color: var(--gold-light); }

.btn-line{
  border-color: var(--gold); color: var(--gold);
  min-height: 46px;
  padding: .75rem 1.5rem; font-size: .85rem; align-self: flex-start;
  width: 100%;
}
.btn-line:hover{ background: var(--gold); color: var(--black); }

.btn-large{ padding: 1.15rem 2.8rem; font-size: 1.05rem; min-height: 56px; }
.btn-small{ padding: .7rem 1.4rem; font-size: .85rem; min-height: 44px; }

.btn-whatsapp{
  background: var(--black); color: var(--text-light);
  margin-top: 2.5rem; padding: .9rem 1.8rem;
}
.btn-whatsapp span{ color: #6fbf73; font-size: 1.1rem; line-height: 0; }
.btn-whatsapp:hover{ background: var(--black-soft); box-shadow: 0 10px 24px rgba(27,22,19,.25); }

/* ============ Header ============ */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex; align-items: center;
  background: rgba(27,22,19,.55);
  backdrop-filter: blur(8px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{
  background: rgba(27,22,19,.94);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.header-inner{
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}

@media (min-width: 540px){
  .header-inner{ padding: 0 1.5rem; }
}

.brand{
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--text-light); letter-spacing: .01em;
}
.brand-dot{ color: var(--gold); }

.main-nav{ display: flex; align-items: center; gap: 2.4rem; }
.main-nav ul{ display: flex; gap: 2rem; }
.main-nav a:not(.btn){
  color: var(--text-light); font-size: .95rem; position: relative; padding-bottom: 4px;
}
.main-nav a:not(.btn)::after{
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:not(.btn):hover::after{ width: 100%; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  margin: 0 -.5rem 0 0;
}
.nav-toggle span{ width: 22px; height: 1px; background: var(--text-light); transition: transform .25s ease, opacity .25s ease; }

/* ============ Hero ============ */
.hero{
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.75rem) 1.25rem 2.75rem;
}

.hero-sidelabel{
  position: absolute; left: .85rem; top: 50%;
  transform-origin: left center;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  font-size: .7rem; letter-spacing: .3em; color: var(--text-muted);
  display: none;
  white-space: nowrap;
}

.hero-grid{
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 2.25rem;
  align-items: center;
}

.hero-copy{ opacity: 0; animation: heroIn .9s ease forwards .15s; }
.hero-media{ opacity: 0; animation: heroIn .9s ease forwards .35s; position: relative; }

@keyframes heroIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-kicker{
  color: var(--gold-light); font-size: .9rem; margin: 0 0 .9rem; font-weight: 400;
}
.hero-copy h1{
  color: var(--text-light);
  font-size: clamp(2.35rem, 10vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero-copy h1 em{ color: var(--gold-light); font-style: normal; }

.hero-sub{
  color: var(--beige); font-size: 1.05rem; max-width: 34ch; margin-bottom: 1.9rem;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-actions .btn{ flex: 1 1 220px; }

.hero-media{ position: relative; border-radius: var(--radius); overflow: hidden; z-index: 0; }
.hero-media img{ width: 100%; height: 46vh; min-height: 280px; max-height: 480px; object-fit: cover; }
.hero-media-accent{
  position: absolute; bottom: -12px; right: -12px; width: 70px; height: 70px;
  border: 1px solid var(--gold); z-index: -1;
}

/* ============ Section shell ============ */
section{ padding: 3.75rem 1.25rem; }
.section-head{ max-width: 560px; margin: 0 auto 2.4rem; text-align: center; }
.section-head h2{ font-size: clamp(1.85rem, 6vw, 2.8rem); margin-bottom: .7rem; }
.section-head p{ color: var(--text-muted); font-size: 1rem; }

@media (min-width: 640px){
  section{ padding: 5rem 1.75rem; }
  .section-head{ margin-bottom: 3rem; }
}

@media (min-width: 900px){
  section{ padding: 6.5rem 1.75rem; }
  .section-head{ margin-bottom: 3.5rem; }
}

.section-kicker{
  font-family: var(--font-body); font-size: .95rem; color: var(--gold);
  margin: 0 0 .6rem; font-weight: 500;
}
.section-kicker.light{ color: var(--gold-light); }

/* ============ Services ============ */
.services{ max-width: var(--max-width); margin: 0 auto; }
.service-grid{
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.service-card{
  background: #fff; border: 1px solid var(--beige);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
}
.service-card:hover{
  box-shadow: 0 22px 44px -20px rgba(27,22,19,.28);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.service-img{ aspect-ratio: 4/3; overflow: hidden; }
.service-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img img{ transform: scale(1.06); }

.service-body{ padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3{ font-size: 1.4rem; margin-bottom: .5rem; }
.service-desc{ color: var(--text-muted); font-size: .93rem; margin-bottom: 1.1rem; flex: 1; }
.service-meta{
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .88rem; color: var(--text-dark);
  margin-bottom: 1.3rem; padding-top: .9rem; border-top: 1px solid var(--beige);
}
.service-meta strong{ color: var(--black); }

.services-note{
  max-width: 700px; margin: 2.2rem auto 0; text-align: center;
  font-size: .85rem; color: var(--text-muted); line-height: 1.6;
}

@media (min-width: 560px){
  .service-body h3{ font-size: 1.5rem; }
  .service-desc{ font-size: .95rem; }
}

/* ============ About ============ */
.about{
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
.about-media img{ aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-copy h2{ font-size: clamp(1.7rem, 6vw, 2.6rem); margin-bottom: 1.1rem; }
.about-copy p{ color: var(--text-dark); margin-bottom: 1.1rem; font-size: .97rem; }
.about-points{ margin-top: 1.5rem; display: grid; gap: .7rem; }
.about-points li{
  padding-left: 1.4rem; position: relative; color: var(--text-dark); font-size: .95rem;
}
.about-points li::before{
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--gold);
}

/* ============ Gallery ============ */
.gallery{ max-width: var(--max-width); margin: 0 auto; }
.gallery-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem;
}
.gallery-item{
  padding: 0; border: none; background: none; cursor: pointer; overflow: hidden; aspect-ratio: 1/1;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery-item:hover img{ transform: scale(1.06); }

/* ============ Booking CTA ============ */
.booking{
  background: var(--black);
  text-align: center;
}
.booking-inner{ max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.booking-inner h2{ color: var(--text-light); font-size: clamp(1.8rem, 7vw, 2.9rem); margin-bottom: .9rem; }
.booking-text{ color: var(--beige); margin-bottom: 1.9rem; }
.booking-inner .btn-large{ width: 100%; max-width: 360px; }

.booking-deposit-note{
  color: var(--text-muted); font-size: .85rem; line-height: 1.6;
  max-width: 40ch; margin: 1.1rem auto 0;
}

.booking-trust{
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid rgba(244,236,224,.14);
  width: 100%;
}
.booking-trust li{
  color: var(--beige); font-size: .88rem;
  padding-left: 1.3rem; position: relative; text-align: left;
}
.booking-trust li::before{
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--gold-light);
}

.booking-widget{ margin-top: 2.5rem; border: 1px solid var(--gold); width: 100%; }
.booking-widget iframe{ width: 100%; height: 640px; border: none; }

@media (min-width: 480px){
  .booking-trust{ flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
}

/* ============ Contact ============ */
.contact{ max-width: var(--max-width); margin: 0 auto; text-align: center; }
.contact-grid{
  display: grid; grid-template-columns: 1fr; gap: 1rem; text-align: left; margin-top: 1rem;
}
.contact-card{ padding: 1.4rem 1.5rem; background: #fff; border: 1px solid var(--beige); transition: border-color .3s ease; }
.contact-card:hover{ border-color: var(--gold-light); }
.contact-card h3{ font-size: 1.15rem; margin-bottom: .5rem; color: var(--gold); font-family: var(--font-body); font-weight: 600; }
.contact-card p{ margin: 0; color: var(--text-dark); }
.contact-card a:hover{ color: var(--gold); }

/* ============ Footer ============ */
.site-footer{
  background: var(--black-soft);
  padding: 2.5rem 1.25rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
}
.footer-inner{
  max-width: var(--max-width); margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.footer-brand{ font-family: var(--font-display); font-size: 1.3rem; color: var(--text-light); }
.footer-links{ display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.footer-links a{ color: var(--beige); font-size: .9rem; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-copy{ color: var(--text-muted); font-size: .82rem; margin: 0; }

/* ============ Lightbox ============ */
.lightbox{
  position: fixed; inset: 0; background: rgba(20,16,13,.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 2rem;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: 100%; max-height: 90vh; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position: absolute; top: max(1.25rem, env(safe-area-inset-top, 0px)); right: 1.25rem;
  background: none; border: 1px solid var(--text-light); color: var(--text-light);
  width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem;
}
.lightbox-close:hover{ background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ================================
   Responsive — Tablet & Desktop
   ================================ */
@media (max-width: 860px){
  .main-nav{ display: none; }
  .nav-toggle{ display: flex; }

  .site-header.nav-open .main-nav{
    display: flex; position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0;
    background: var(--black); flex-direction: column; align-items: flex-start;
    padding: 2.5rem 1.8rem calc(2rem + env(safe-area-inset-bottom, 0px));
    gap: 2rem;
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav ul{ flex-direction: column; gap: 1.4rem; }
  .site-header.nav-open .main-nav a:not(.btn){ font-size: 1.2rem; }
  .site-header.nav-open .main-nav .btn{ width: 100%; margin-top: .5rem; }

  .site-header.nav-open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}

@media (min-width: 640px){
  .contact-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 720px){
  .hero-sidelabel{ display: block; }
}

@media (min-width: 900px){
  .hero-grid{ grid-template-columns: 1.05fr .95fr; gap: 4rem; }
  .hero-media img{ height: 72vh; max-height: 640px; }

  .service-grid{ grid-template-columns: repeat(3, 1fr); }

  .about{ grid-template-columns: .85fr 1.15fr; gap: 4.5rem; }

  .booking-widget iframe{ height: 720px; }
}

@media (min-width: 1080px){
  .service-grid{ gap: 2rem; }
}
