/* ========================================
   Shear Theory — Brand CSS  (Bootstrap 5.3 complement)
   Palette: warm cream · rose copper · warm-dark anchors
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;600;700&display=swap');

/* ---- Brand tokens (light-mode defaults) ---- */
:root {
  /* Dark anchors — hero, footer, quote, page hero strips */
  --st-black:    #201c18;

  /* Light content palette */
  --st-dark:     #f5f0ea;   /* main section bg — warm cream */
  --st-card:     #ffffff;   /* card / panel bg */
  --st-card-2:   #faf7f3;   /* slightly warm card alt */
  --st-border:   #ddd7cf;   /* warm light border */

  /* Brand accent */
  --st-rose:     #bc7a69;
  --st-rose-lt:  #d39585;
  --st-rose-dk:  #8b5548;
  --st-copper:   #a0614e;

  /* Text — dark on light bg */
  --st-cream:    #2a2018;
  --st-muted:    #7a706a;
  --st-muted-lt: #b0a79e;   /* lighter muted (hero sub text on dark bg) */

  --st-font-h:   'Cormorant Garamond', Georgia, serif;
  --st-font-b:   'Raleway', 'Helvetica Neue', sans-serif;
}

/* ---- CSS variable scoping for dark sections ----
   Any child using var(--st-cream) or var(--st-muted) — including
   inline styles in templates — automatically gets the light values
   inside these sections. No template changes required.            */
.st-hero,
.page-hero,
.quote-section,
.st-footer {
  --st-cream:    #f0ebe3;
  --st-muted:    #a09088;
}

/* ---- Base ---- */
body {
  font-family: var(--st-font-b);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background-color: var(--st-dark);
  color: var(--st-cream);
}

h1, h2, h3, h4 {
  font-family: var(--st-font-h);
  font-weight: 600;
  color: var(--st-cream);
}

/* ---- Utilities ---- */
.text-rose        { color: var(--st-rose) !important; }
.bg-st-dark       { background-color: var(--st-dark) !important; }
.bg-st-black      { background-color: var(--st-black) !important; }
.bg-st-card       { background-color: var(--st-card) !important; }
.border-st        { border-color: var(--st-border) !important; }

.section-label {
  display: inline-block;
  font-family: var(--st-font-b);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--st-rose);
  margin-bottom: .5rem;
}

.divider {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--st-rose), var(--st-rose-dk));
  margin: 1.1rem 0;
}

.divider-center {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--st-rose-dk), var(--st-rose), var(--st-rose-dk));
  margin: 1.1rem auto;
}

/* ---- Buttons ---- */
.btn-st-rose {
  background: var(--st-rose);
  color: #fff !important;
  border: 2px solid var(--st-rose);
  font-family: var(--st-font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 1px;
  padding: .72rem 2rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-st-rose:hover {
  background: var(--st-rose-dk);
  border-color: var(--st-rose-dk);
  color: #fff !important;
}

/* Used only inside the dark hero — stays light */
.btn-st-outline {
  background: transparent;
  color: #f0ebe3 !important;
  border: 2px solid rgba(240,235,227,.4);
  font-family: var(--st-font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 1px;
  padding: .72rem 2rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-st-outline:hover {
  background: rgba(240,235,227,.1);
  border-color: rgba(240,235,227,.7);
  color: #f0ebe3 !important;
}

.btn-st-outline-rose {
  background: transparent;
  color: var(--st-rose) !important;
  border: 2px solid var(--st-rose-dk);
  font-family: var(--st-font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 1px;
  padding: .72rem 2rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-st-outline-rose:hover {
  background: var(--st-rose);
  border-color: var(--st-rose);
  color: #fff !important;
}

/* ---- Navbar ---- */
.st-navbar {
  background: rgba(250, 246, 241, .97) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--st-border);
  min-height: 74px;
  box-shadow: 0 1px 12px rgba(42,32,24,.06);
}
.st-navbar .navbar-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.st-navbar .nav-link {
  color: var(--st-muted) !important;
  font-family: var(--st-font-b);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem 0 !important;
  position: relative;
  transition: color .2s;
}
.st-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--st-rose);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.st-navbar .nav-link:hover,
.st-navbar .nav-link.active {
  color: var(--st-cream) !important;
}
.st-navbar .nav-link:hover::after,
.st-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.st-navbar .navbar-toggler {
  border-color: var(--st-border);
}
.st-navbar .navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
  .st-navbar .navbar-collapse {
    padding: 1.25rem 0 .75rem;
    border-top: 1px solid var(--st-border);
    margin-top: .5rem;
    background: rgba(250,246,241,.99);
  }
  .st-navbar .nav-link { padding: .7rem 0 !important; }
  .st-navbar .nav-link::after { display: none; }
}

/* ---- Page sections ---- */
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--st-black);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(188,122,105,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Hero ---- */
.st-hero {
  min-height: 100vh;
  background: var(--st-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 74px;
  position: relative;
  overflow: hidden;
}

.st-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.st-hero .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(188,122,105,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(188,122,105,.05) 0%, transparent 50%);
}
.st-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -30deg,
      transparent, transparent 60px,
      rgba(188,122,105,.02) 60px, rgba(188,122,105,.02) 61px
    ),
    repeating-linear-gradient(
      60deg,
      transparent, transparent 90px,
      rgba(188,122,105,.014) 90px, rgba(188,122,105,.014) 91px
    );
}

.st-hero .hero-logo {
  width: min(380px, 70vw);
  margin: 0 auto 2.2rem;
  filter: drop-shadow(0 10px 40px rgba(188,122,105,.3));
  animation: logoFadeIn 1s ease both;
}

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

.st-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  font-weight: 500;
  font-style: italic;
  color: #f0ebe3;
  animation: heroTextIn .9s .15s ease both;
}

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

.hero-sub {
  color: var(--st-muted-lt);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  animation: heroTextIn .9s .3s ease both;
}

.hero-tagline {
  font-family: var(--st-font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--st-rose);
  margin-bottom: 1rem;
  animation: heroTextIn .9s 0s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--st-muted);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: scrollBounce 2.6s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--st-rose-dk), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ---- Features strip ---- */
.features-strip {
  background: var(--st-card);
  border-top: 1px solid var(--st-border);
  border-bottom: 1px solid var(--st-border);
}
.feature-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: .85rem;
  color: var(--st-rose);
}
.feature-item p {
  font-size: .87rem;
  color: var(--st-muted);
  margin: 0;
  line-height: 1.7;
}
.feature-item h3 {
  font-family: var(--st-font-h);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

/* ---- Service cards ---- */
.st-service-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 2px;
  padding: 1.8rem;
  height: 100%;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(42,32,24,.06);
}
.st-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--st-rose);
  transition: height .35s ease;
}
.st-service-card:hover {
  border-color: rgba(188,122,105,.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42,32,24,.1);
}
.st-service-card:hover::before { height: 100%; }

.st-service-card .price-tag {
  font-family: var(--st-font-h);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--st-rose);
  line-height: 1;
  margin-bottom: .85rem;
}
.st-service-card h3 {
  font-size: 1.05rem;
  margin-bottom: .45rem;
  line-height: 1.3;
}
.st-service-card p {
  font-size: .87rem;
  color: var(--st-muted);
  margin: 0;
  line-height: 1.7;
}
.st-service-card .card-divider {
  height: 1px;
  background: var(--st-border);
  margin: .8rem 0;
}

/* Service category header */
.service-category-header {
  border-left: 3px solid var(--st-rose);
  padding-left: 1.1rem;
  margin-bottom: 2rem;
}
.service-category-header h2 {
  font-size: 1.9rem;
  margin: 0;
  line-height: 1.15;
}
.service-category-header p {
  font-size: .88rem;
  color: var(--st-muted);
  margin: .4rem 0 0;
}

/* Home preview variant */
.st-service-preview {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 2px;
  padding: 1.6rem;
  height: 100%;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 1px 6px rgba(42,32,24,.05);
}
.st-service-preview:hover {
  border-color: rgba(188,122,105,.45);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42,32,24,.09);
}
.st-service-preview .service-price {
  font-family: var(--st-font-h);
  font-size: 1.2rem;
  color: var(--st-rose);
  font-weight: 600;
  white-space: nowrap;
}
.st-service-preview h3 { font-size: .98rem; margin-bottom: .35rem; }
.st-service-preview p  { font-size: .86rem; color: var(--st-muted); margin: 0; line-height: 1.65; }

/* ---- Stats ---- */
.stat-item {
  border-left: 2px solid var(--st-rose-dk);
  padding-left: 1.3rem;
}
.stat-number {
  font-family: var(--st-font-h);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--st-rose);
  line-height: 1;
}
.stat-label {
  font-size: .77rem;
  color: var(--st-muted);
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* ---- About image frame ---- */
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  bottom: 1.5rem; left: 1.5rem;
  border: 1px solid rgba(188,122,105,.3);
  border-radius: 2px;
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
}
@media (max-width: 991px) { .about-img-wrap::before { display: none; } }

/* ---- Quote ---- */
.quote-section {
  background: var(--st-black);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--st-font-h);
  font-size: 18rem;
  color: rgba(188,122,105,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-section blockquote {
  font-family: var(--st-font-h);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 400;
  font-style: italic;
  color: #f0ebe3;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-section cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--st-font-b);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--st-rose);
  font-style: normal;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 2px;
  padding: 2rem;
  height: 100%;
  position: relative;
  box-shadow: 0 2px 10px rgba(42,32,24,.06);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem; right: 1.5rem;
  font-family: var(--st-font-h);
  font-size: 4rem;
  color: rgba(188,122,105,.15);
  line-height: 1;
  user-select: none;
}
.testimonial-text {
  font-family: var(--st-font-h);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--st-cream);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.testimonial-author {
  font-family: var(--st-font-b);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--st-rose);
}
.testimonial-role {
  font-size: .82rem;
  color: var(--st-muted);
  margin-top: .2rem;
}
.testimonial-stars {
  color: var(--st-rose);
  font-size: .9rem;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

/* ---- Booking CTA ---- */
.booking-cta {
  background: var(--st-dark);
  border-top: 1px solid var(--st-border);
  border-bottom: 1px solid var(--st-border);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(188,122,105,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- Gallery cards ---- */
.gallery-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--st-card);
  border: 1px solid var(--st-border);
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
  cursor: default;
  box-shadow: 0 2px 10px rgba(42,32,24,.07);
}
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188,122,105,.45);
  box-shadow: 0 10px 28px rgba(42,32,24,.12);
}
.gallery-art {
  width: 100%;
  height: 240px;
  display: block;
}
.gallery-card-body {
  padding: 1.4rem;
}
.gallery-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: .35rem;
  transition: color .25s;
}
.gallery-card:hover .gallery-card-body h3 { color: var(--st-rose); }
.gallery-card-body p {
  font-size: .85rem;
  color: var(--st-muted);
  margin: 0;
  line-height: 1.65;
}

.gallery-badge {
  display: inline-block;
  font-family: var(--st-font-b);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 1px;
  margin-bottom: .6rem;
}
.cat-gent   { background: rgba(188,122,105,.12); color: var(--st-rose-dk); border: 1px solid rgba(188,122,105,.25); }
.cat-ladies { background: rgba(180,100,130,.1);  color: #9a4a6a;          border: 1px solid rgba(180,100,130,.22); }
.cat-young  { background: rgba(60,120,160,.1);   color: #2a7090;          border: 1px solid rgba(60,120,160,.22);  }

/* ---- Values ---- */
.value-card {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 2px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 1px 8px rgba(42,32,24,.05);
}
.value-card:hover {
  border-color: rgba(188,122,105,.35);
  box-shadow: 0 6px 18px rgba(42,32,24,.09);
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid rgba(188,122,105,.4);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--st-rose);
  background: rgba(188,122,105,.06);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .87rem; color: var(--st-muted); margin: 0; line-height: 1.7; }

/* ---- Contact ---- */
.contact-detail { display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--st-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
  color: var(--st-rose);
  background: rgba(188,122,105,.07);
}
.contact-detail-body strong { display: block; color: var(--st-cream); font-size: .9rem; margin-bottom: .2rem; }
.contact-detail-body span   { font-size: .87rem; color: var(--st-muted); }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--st-border);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--st-muted); }
.hours-row span:last-child  { color: var(--st-cream); font-weight: 400; }

.contact-form-wrap {
  background: var(--st-card);
  border: 1px solid var(--st-border);
  border-radius: 2px;
  padding: 2.75rem;
  box-shadow: 0 2px 16px rgba(42,32,24,.07);
}
@media (max-width: 575px) { .contact-form-wrap { padding: 1.75rem; } }

/* Form controls — light mode */
.form-control, .form-select {
  background-color: #fff !important;
  border-color: var(--st-border) !important;
  color: var(--st-cream) !important;
  border-radius: 1px;
  font-family: var(--st-font-b);
  font-weight: 300;
}
.form-control:focus, .form-select:focus {
  border-color: var(--st-rose-dk) !important;
  box-shadow: 0 0 0 3px rgba(188,122,105,.12) !important;
}
.form-control::placeholder { color: #bbb5ae !important; opacity: 1 !important; }
.form-select option { background: #fff; color: var(--st-cream); }
.form-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--st-muted);
}

/* ---- Footer ---- */
.st-footer {
  background: var(--st-black);
  border-top: 1px solid rgba(255,255,255,.07);
}
.st-footer h4 {
  font-family: var(--st-font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--st-rose);
  margin-bottom: 1rem;
}
.st-footer .footer-link {
  font-size: .87rem;
  color: var(--st-muted);
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.st-footer .footer-link:hover { color: #f0ebe3; }
.st-footer address { font-style: normal; font-size: .87rem; color: var(--st-muted); line-height: 1.9; }
.st-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.st-footer .footer-copy { font-size: .77rem; color: #60574e; }
.footer-tagline { font-family: var(--st-font-h); font-style: italic; font-size: .95rem; color: #6a5f55; }

.footer-brand-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  margin-bottom: 1rem;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .section-pad    { padding: 4rem 0; }
  .quote-section  { padding: 4rem 0; }
  .booking-cta    { padding: 4rem 0; }
}
