:root{
  --bg: #fbf7f0;
  --bg2:#f6efe3;
  --ink:#1c1411;

  --maroon:#6b1e2e;
  --gold1:#b8860b;
  --gold2:#d4af37;

  --border:rgba(28,20,17,.12);
  --shadow: 0 14px 40px rgba(28,20,17,.12);
  --radius: 16px;

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Hero tiles */
  --tile-w: clamp(160px, 18vw, 260px);
  --tile-h: clamp(260px, 32vw, 360px);
  --tile-ar: 4/5; /* editorial portrait-ish. Try 3/4 or 1/1 if you prefer */
  --nav-offset: 45px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}
section[id]{scroll-margin-top: var(--nav-offset);}
/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(251,247,240,.70);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__mark{
  width:14px; height:14px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  box-shadow: 0 8px 18px rgba(180,120,10,.24);
}
.brand__name{
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:.2px;
  font-size:18px;
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-size:14px;
  color:rgba(28,20,17,.86);
}
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(180,120,10,.25);
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(184,134,11,.10));
}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.72);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  padding:0;
  cursor:pointer;
}
.nav-toggle:hover{
  background: rgba(255,255,255,.95);
}
.nav-toggle:focus-visible{
  outline:2px solid rgba(107,30,46,.45);
  outline-offset:2px;
}
.nav-toggle__line{
  width:18px;
  height:2px;
  border-radius:999px;
  background:rgba(28,20,17,.9);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}
body.nav-menu-open{
  overflow:hidden;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.2px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn--gold{
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  color:white;
  box-shadow: 0 10px 24px rgba(180,120,10,.22);
}
.btn--gold:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(180,120,10,.28);
}
.btn--ghost{
  background: rgba(255,255,255,.55);
  border-color: var(--border);
}
.btn--ghost:hover{ transform: translateY(-1px); }

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:56px 0 18px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(
      90deg,
      rgba(251,247,240,0.92) 0%,
      rgba(251,247,240,0.82) 35%,
      rgba(251,247,240,0.55) 60%,
      rgba(251,247,240,0.15) 100%
    ),
    url("assets/hero-bg2.JPG");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  pointer-events:none;
  z-index:0;
}
.hero__inner{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap:28px;
  align-items:stretch;
  position: relative;
  z-index: 1;
}
  .hero__carousel-bleed{
  width: 100%;
  display: flex;
  justify-content: flex-end; /* push carousel to the right */
}

.hero__copy{ 
  max-width: 640px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker{
  color:rgba(107,30,46,.9);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
.hero h1{
  font-family:var(--serif);
  font-weight:600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  margin:0 0 12px;
  max-width: 18ch;
  text-wrap: balance;
}
.subhead{
  color:rgba(28,20,17,.72);
  line-height:1.7;
  margin:0 0 18px;
  font-size:15px;
  max-width:52ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}
/* .hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.meta-pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
} */

/* Hero carousel card */
  .hero__carousel{
  width:100%;
  min-height: 460px;                 /* adjust: 420–520 */
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);

  display: grid;
  grid-template-rows: 1fr auto;      /* marquee grows, note stays */
  gap: 12px;
}
.marquee{
  width:100%;
  height: 100%;
  align-items: stretch;
  overflow:hidden;
  border-radius: 14px;
  /*border:1px solid rgba(28,20,17,.08);
  background: rgba(255,255,255,.35);*/
  display: flex;
  min-height: 280px;
}
.marquee__track{
  height: 100%;
  display:flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  padding: 0;                 /* ✅ remove */
  animation: marquee 22s linear infinite;
}
.tile{
  flex: 0 0 auto;
  /*width: auto;*/
  height: 100%;           /* fill marquee height */      /* prevents crazy tall tiles on large screens */
  border-radius: 18px;
  overflow:hidden;
  /*aspect-ratio: var(--tile-ar);*/
  background: rgba(255,255,255,.25);
  max-width: min(520px, 70vw);
}
/* default if we can't detect: */
.tile{ width: clamp(220px, 22vw, 320px); }

/* portrait: slightly narrower */
.tile.is-portrait{ width: clamp(220px, 18vw, 300px); }

/* landscape: wider */
.tile.is-landscape{ width: clamp(320px, 30vw, 520px); }

/* square: middle */
.tile.is-square{ width: clamp(260px, 22vw, 360px); }


.tile img{
  width:auto;
  height:100%;
  object-fit:cover;
  /*transform: scale(1.02);*/
  display: block;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
/* .carousel__note{
  margin:0 0 0;
  font-size:12px;
  color:rgba(28,20,17,.65);
  padding-top: 2px;
} */

/* Divider */
.divider{ padding: 10px 0 0; }
.divider__line{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(180,120,10,.35), transparent);
  position:relative;
}
.divider__line::after{
  content:"";
  position:absolute;
  left:50%;
  top:-10px;
  transform:translateX(-50%);
  width:160px;
  height:22px;
  background:
    radial-gradient(circle at 15% 50%, rgba(212,175,55,.38), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(107,30,46,.18), transparent 60%),
    radial-gradient(circle at 85% 50%, rgba(15,91,74,.16), transparent 60%);
  opacity:.8;
  filter: blur(6px);
}

/* Sections */
.section{ padding: 48px 0; }
.section--soft{
  background: rgba(255,255,255,.35);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:36px;
  margin:0 0 6px;
}
.section__head p{
  margin:0 0 22px;
  color:rgba(28,20,17,.7);
  line-height:1.6;
}

/* Work grid */
/* .work-title{
  font-family:var(--serif);
  font-size:24px;
  margin: 18px 0 14px;
} */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.5);
  box-shadow: 0 10px 26px rgba(28,20,17,.08);
}
.card__media{
  position:relative;
  overflow:hidden;
  aspect-ratio: 4 / 5;
}
.card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}
.card__overlay{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .45s ease;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(28,20,17,.55) 100%),
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.22), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(107,30,46,.16), transparent 45%),
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,.18) 0px,
      rgba(212,175,55,.08) 1px,
      rgba(255,255,255,0) 6px,
      rgba(255,255,255,0) 11px
    );
  mix-blend-mode: multiply;
}
.card__text{
  background: linear-gradient( rgba(0, 0, 0, 0.002) 0%, rgba(52, 43, 39, 0.858) 80%);
  position:absolute;
  left:0; right:0; bottom:0;
  padding:16px 16px 20px;
  color:white;
  transform: translateY(6px);
  transition: transform .45s ease;
  opacity:1;
    text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 8px 20px rgba(0,0,0,0.5);
}
.card__label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.92;
}
.card__name{
  font-family:var(--serif);
  font-size:22px;
  font-weight:600;
  margin-bottom:2px;
}
.card:hover .card__media img{ transform: scale(1.06); }
.card:hover .card__overlay{ opacity:.75; }
.card:hover .card__text{ transform: translateY(0); }

/* Work gallery button */
.work-gallery-cta{
  margin-top:22px;
  display:flex;
  justify-content:flex-end;
}
.work-gallery-cta .btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
}

/* Work CTA */
.work-cta{ margin-top:22px; }
.work-cta__box{
  border-radius: var(--radius);
  border:1px solid rgba(180,120,10,.22);
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(107,30,46,.06));
  padding: 18px;
}
.work-cta__box h3{
  font-family:var(--serif);
  margin:0 0 6px;
  font-size:24px;
}
.work-cta__box p{
  margin:0 0 12px;
  color:rgba(28,20,17,.72);
  line-height:1.6;
}

/* About */
.about{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
  position: relative;
}
.about__copy{
  position: relative;
  padding: 26px 24px 24px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(180,120,10,.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,.18), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.58));
  box-shadow: 0 18px 45px rgba(28,20,17,.12);
}
.about__progress{
  position:absolute;
  left: 12px;
  right: 12px;
  top: -10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(107,30,46,.14);
  overflow:hidden;
}
.about__progress span{
  display:block;
  height:100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold1), var(--gold2), #c44a2b);
  box-shadow: 0 6px 16px rgba(180,120,10,.35);
  transition: width .6s ease;
}
.about__eyebrow{
  margin: 4px 0 8px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(107,30,46,.88);
}
.about__text{
  display:grid;
  gap:10px;
  margin: 0 0 12px;
}
.about__highlight{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(180,120,10,.22);
  background: rgba(255,255,255,.50);
  color: rgba(28,20,17,.74);
  transition: transform .2s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor:pointer;
}
.about__highlight.is-active{
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(107,30,46,.10));
  border-color: rgba(180,120,10,.5);
  box-shadow: 0 12px 30px rgba(28,20,17,.12);
  color: rgba(28,20,17,.95);
  transform: translateY(-1px);
}
.about__highlights{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 8px;
}
.about__pill{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(180,120,10,.28);
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(107,30,46,.10));
  color: rgba(28,20,17,.85);
}
.about__visual{
  position: relative;
  min-height: 560px;
  border-radius: calc(var(--radius) + 10px);
  padding: 18px;
  border: 1px solid rgba(180,120,10,.28);
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.30), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(107,30,46,.22), transparent 50%),
    repeating-linear-gradient(45deg, rgba(212,175,55,.20) 0 2px, rgba(255,255,255,0) 2px 12px),
    linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,.18));
  box-shadow: 0 26px 70px rgba(28,20,17,.18);
  overflow:hidden;
}
.about__visual::before{
  content:"";
  position:absolute;
  inset: 12px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px dashed rgba(212,175,55,.35);
  pointer-events:none;
}
.about__media{
  position:absolute;
  inset: 26px;
  border-radius: 22px;
  overflow:hidden;
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .6s ease, transform .6s ease;
  box-shadow: 0 26px 60px rgba(28,20,17,.25);
  z-index: 2;
}
.about__media.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
}
body:not(.about-ready) .about__media:first-of-type{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about__media img,
.about__media video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.about__media--video::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}
.about__caption{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28,20,17,.78);
  color: #fff;
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.about__pairs{ display:none; }
.about__pair{
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(180,120,10,.22);
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 34px rgba(28,20,17,.12);
  overflow: hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.about__pair .about__highlight{ width:100%; }
.about__media--inline{
  position: static;
  inset: auto;
  opacity: 1;
  transform: none;
  margin: 10px auto 0;
  display:block;
  overflow:hidden;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  align-self:center;
}

.about__media--inline img,
.about__media--inline video{
  object-fit: cover;
  object-position: center;
}
.about__ornament{
  position:absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212,175,55,.85) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 10%, rgba(212,175,55,.45) 0 22%, transparent 23%),
    radial-gradient(circle at 85% 50%, rgba(107,30,46,.30) 0 18%, transparent 19%),
    conic-gradient(from 0deg, rgba(212,175,55,.28), rgba(107,30,46,.18), rgba(212,175,55,.28));
  box-shadow: 0 10px 24px rgba(28,20,17,.22);
  opacity: .9;
  z-index: 1;
}
.about__ornament--one{ top: -18px; right: 24px; transform: scale(.9); }
.about__ornament--two{ bottom: -18px; left: 16px; transform: scale(.75); }
.about__badge{
  position:absolute;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,175,55,.85), rgba(107,30,46,.55));
  color: #fff;
  font-size: 11px;
  letter-spacing:.2em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(28,20,17,.25);
  z-index: 3;
}

.about h2{
  font-family:var(--serif);
  font-size:36px;
  margin:0 0 8px;
}
.about p{ color:rgba(28,20,17,.75); line-height:1.7; }

@media (max-width: 920px){
  .about{ grid-template-columns: 1fr; }
  .about__visual{ min-height: 420px; margin-top: 10px; }
  .about__media{ inset: 20px; }
  .about__badge{ top: 16px; left: 16px; }
  .about__ornament--one{ right: 10px; top: -12px; }
  .about__ornament--two{ left: 6px; bottom: -10px; }
}
@media (max-width: 640px){
  .about__progress{ display:none; }
  .about__text{ display:none; }
  .about__pairs{ display:grid; gap:12px; }
  .about__visual{ display:none; }
  .about__highlight{ cursor: default; }
}

/* .services{ margin-top:16px; display:grid; gap:12px; }
.service{
  display:flex;
  gap:12px;
  padding:8px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
}
/* .services__icon{
  width:32px; height:32px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(237, 71, 6, 0.7), rgba(213, 144, 53, 0.551));
  border:1px solid rgba(180,120,10,.22);
} */


/* .service h4{ margin:0; font-size:16px; }
.service p{ margin:4px 0 0; font-size:14px; }

/* --- About (clean 2-column, image matches text height) --- */
/* .about2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}

.about2__copy{
  max-width: 62ch;
}
.about2__copy h2{
  font-family: var(--serif);
  font-size: 44px;
  margin: 0 0 10px;
} */

/* .about2__copy p{
  color: rgba(28,20,17,.75);
  line-height: 1.75;
  margin: 0 0 18px;
  font-size: 16px;
} */

/* Image height matches copy block height */
/* .about2__media{
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.35);
  box-shadow: var(--shadow);
  /* height: 100%; */
  /* align-self: stretch; */
  /* aspect-ratio: 3 / 4;
} */ 

/* .about2__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}  */

/* --- Services section cards --- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.service-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 26px rgba(28,20,17,.06);
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(28,20,17,.10);
}

.service-card h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 6px;
}

.service-card p{
  margin: 0;
  color: rgba(28,20,17,.72);
  line-height: 1.6;
  font-size: 14px;
}

/* Testimonials carousel */
.tcarousel{ position:relative; margin: 10px 0 32px; }
.tviewport{
  overflow:hidden;
  width:100%;
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 32px rgba(28,20,17,.12);
  border: 1px solid var(--border);
}
.ttrack{
  display:flex;
  gap:14px;
  padding: 14px;
  transition: transform .45s ease;
  will-change: transform;
}
.tcardx{
  flex: 0 0 calc((100% - 28px) / 3);
  border-radius: var(--radius);
  border: 1px solid rgba(28,20,17,.10);
  overflow:hidden;
  background: rgba(255,255,255,.35);
  display:flex;
  flex-direction:column;
}
.tcardx__media{ aspect-ratio: 4 / 3; overflow:hidden; background: rgba(255,255,255,.35); }
.tcardx__media img{ width:100%; height:100%; object-fit:cover; }
.tcardx__body{ padding:14px; }
.tstars{ color: var(--gold2); letter-spacing:.12em; font-size:12px; margin-bottom:8px; }
/* .tcardx__quote{ margin:0 0 10px; line-height:1.7; color:rgba(28,20,17,.76); } */
.tcardx__meta{ font-size:12px; color:rgba(28,20,17,.62); }

/* arrows */
.tarrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.90);
  display:grid;
  place-items:center;
  font-size:20px;
  cursor:pointer;
  z-index:5;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.tarrow:hover{ background:#fff; transform: translateY(-50%) translateY(-1px); }
.tarrow:disabled{ opacity:.35; cursor:not-allowed; }
.tarrow--left{ left:-8px; }
.tarrow--right{ right:-8px; }

/* Clamp to ~5 lines */
.treview{
  margin: 0 0 10px;
  line-height: 1.65;
  color: rgba(28,20,17,.76);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.treview.is-expanded{
  display:block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* Show more button */
.tmore{
  display:none; /* JS will enable if needed */
  border:0;
  background:transparent;
  padding:0;
  margin: 0 0 10px;
  font: inherit;
  font-weight: 600;
  color: rgba(107,30,46,.92);
  cursor:pointer;
}
.tmore.is-visible{ display:inline-flex; }
.tmore:hover{ text-decoration: underline; }

.review-img{ cursor: zoom-in; }

/* Lightbox modal */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:999;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{
  max-width: min(92vw, 980px);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  background:#fff;
}

/* Google embed */
.reviews-embed iframe{
  width:100%;
  height:420px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.5);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact h2{ font-family:var(--serif); font-size:36px; margin:0 0 10px; }
.contact p{ color:rgba(28,20,17,.75); line-height:1.7; }
.contact__quick{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.quick{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
  font-size:14px;
}
.dot{ width:5px; height:5px; border-radius:999px; background: rgba(180,120,10,.55); }

form{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  padding: 16px;
  box-shadow: var(--shadow);
}

/* Form helper note */
.form-note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(28,20,17,.65);
  line-height: 1.4;
}

/* Toast notification */
.toast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(28,20,17,.92);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  max-width: 90vw;
  text-align: center;
}

.toast.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Form helper note */
.form-note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(28,20,17,.65);
  line-height: 1.4;
}

/* Desktop toast + mobile bottom sheet (same component) */
.notifier{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(28,20,17,.92);
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 9999;

  max-width: 92vw;
}

.notifier.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notifier__icon{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.notifier__icon svg{
  width: 14px;
  height: 14px;
  display:block;
  opacity: 0;
  transform: scale(.6);
}

.notifier.is-success .notifier__icon svg{
  animation: popCheck .55s ease forwards;
}

@keyframes popCheck{
  0%   { opacity: 0; transform: scale(.6); }
  45%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1.0); }
}

.notifier__text{
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

/* Mobile best practice: bottom sheet */
@media (max-width: 640px){
  .notifier{
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: translateY(16px);
    border-radius: 16px;
    width: auto;
    justify-content: center;
  }
  .notifier.is-visible{
    transform: translateY(0);
  }
}

label{ display:block; margin-bottom:12px; }
label span{ display:block; font-size:12px; color:rgba(28,20,17,.7); margin-bottom:6px; }
input, textarea{
  width:100%;
  padding: 12px;
  border-radius: 12px;
  border:1px solid rgba(28,20,17,.16);
  background: rgba(255,255,255,.75);
  font-family: var(--sans);
  font-size:14px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(180,120,10,.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,.16);
}
.hint{ margin: 12px 0 0; font-size:12px; color:rgba(28,20,17,.62); line-height:1.5; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* WhatsApp */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;
  height:54px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  box-shadow: 0 16px 34px rgba(180,120,10,.28);
  border:1px solid rgba(255,255,255,.35);
  z-index:60;
}
.whatsapp svg{ width:36px; height:36px; fill:white; }

/* whatsapp floating icon
.whatsapp{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 999;
} 

.whatsapp-icon{
  width: 72px;
  height: 72px;
  display: block;
}*/

.whatsapp:hover{
  transform: translateY(-2px);
}

/* Instagram floating button */
.float-ig{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 60;

  /* Instagram-ish gradient */
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.25);
}

.float-ig__icon{
  width: 36px;
  height: 36px;
  display: block;
}

.float-ig:hover{
  transform: translateY(-2px);
}


/* Footer */
.footer{
  padding: 22px 0;
  border-top:1px solid var(--border);
  background: rgba(251,247,240,.7);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:rgba(28,20,17,.7);
}
.footer__links{ display:flex; gap:12px; }

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* Make the couples card span wider (optional) */
/* .service-card--wide{
  grid-column: span 2;
} */

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .topbar__inner{
    position:relative;
    padding:12px 0;
  }
  .nav-toggle{
    display:inline-flex;
    margin-left:auto;
  }
  .nav{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:14px;
    background: rgba(251,247,240,.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 96px);
    overflow:auto;
    opacity:0;
    transform: translateY(-6px);
    visibility:hidden;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open{
    opacity:1;
    transform: translateY(0);
    visibility:visible;
    pointer-events:auto;
  }
  .nav a{
    font-size:16px;
    padding:12px 14px;
    border-radius:10px;
  }
  .nav a:hover,
  .nav a:focus-visible{
    background: rgba(28,20,17,.06);
    opacity:1;
  }
  .nav__cta{
    display:block;
    margin-top:2px;
    text-align:center;
  }
  .marquee__track{ animation-duration: 26s; }
  .tcardx{ flex: 0 0 100%; }
  .tarrow--left{ left:6px; }
  .tarrow--right{ right:6px; }
  .hero__carousel-bleed{ justify-content: stretch; }
  .hero__carousel{
    width: 100%;
    min-width: 0;
    margin-right: 0;
  }
  .about__visual{ min-height: 420px; margin-top: 8px; }
  .about__frame--main{ width: min(420px, 86%); transform: translateX(0); }
  .about__frame--accent{ left: 8%; bottom: 6%; }
  .about__frame--micro{ right: 6%; top: 6%; width: min(180px, 46%); }
  .about__motif--top{ top: -10px; right: 10px; }
  .about__motif--bottom{ bottom: -8px; left: 6px; }
}
@media (max-width: 520px){
  .brand__name{ font-size:16px; }
  .services-grid{ grid-template-columns: 1fr; }
  .nav{
    left:4px;
    right:4px;
  }
  .grid{ grid-template-columns: 1fr; }
  .work-gallery-cta{ justify-content: stretch; }
  .work-gallery-cta .btn{ width:100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .marquee__track{ animation:none; }
  *{ transition:none !important; }
}

/* Gallery CSS */
/* Gallery page typography (inherits from style.css if present) */
.gallery-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.gallery-back-wrap{
  text-align: right;
}
.gallery-back{
  margin-bottom: 6px;
  margin-top: 7px;
  color: #0b66d6;
  background: transparent;
  border-color: transparent;
}
.gallery-back:hover{ text-decoration: underline; }

@media (min-width: 1020px){
  .gallery-back{
    display: block;
    width: fit-content;
    margin-left: auto;
  }
}

@media (max-width: 640px){
  .gallery-header{
    display: block;
  }
  .gallery-back{
    display: none;
  }
}

.gallery-head{
  margin: 10px 0 22px;
}
.gallery-head h1{
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 6px;
}
.gallery-head p{
  margin: 0;
  color: rgba(28,20,17,.70);
  line-height: 1.6;
}

/* Masonry grid using CSS columns (variable heights, fixed width container) */
.masonry{
  --col-gap: 16px;
  --radius: 18px;

  column-count: 3;
  column-gap: var(--col-gap);

  /* Optional: subtle frame like your reference */
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(28,20,17,.12);
  background: rgba(255,255,255,.25);
}

/* Each item must not break across columns */
.masonry__item{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;

  margin: 0 0 var(--col-gap);
  border-radius: var(--radius);
  overflow: hidden;

  /* card feel */
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(28,20,17,.10);
  box-shadow: 0 12px 34px rgba(28,20,17,.10);
  position: relative;
}

/* Images keep natural aspect ratio (no fixed height) */
.masonry__item img{
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;

  transform: scale(1);
  transition: transform .35s ease;
}

/* Hover zoom */
.masonry__item:hover img{
  transform: scale(1.04);
}

/* Optional: subtle vignette overlay on hover (premium) */
.masonry__item::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .35s ease;
  pointer-events:none;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.0), rgba(0,0,0,.18));
}
.masonry__item:hover::after{
  opacity:1;
}

/* Responsive columns */
@media (max-width: 1020px){
  .masonry{ column-count: 2; }
}
@media (max-width: 640px){
  .masonry{
    column-count: 1;
    padding: 10px;
  }
}

/* ---- Lightbox ---- */
.g-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.g-lightbox.is-open{ display: flex; }

.g-lightbox__img{
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  background: #fff;
}

/* Buttons */
.g-lightbox__btn{
  position: fixed;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(20,20,20,.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.g-lightbox__btn:hover{
  background: rgba(20,20,20,.55);
}

.g-lightbox__btn--close{
  top: 18px;
  right: 18px;
  font-size: 26px;
  line-height: 1;
}

.g-lightbox__btn--prev{
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

.g-lightbox__btn--next{
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

/* Mobile: make prev/next bigger + easier */
@media (max-width: 640px){
  .g-lightbox__btn--prev{ left: 10px; }
  .g-lightbox__btn--next{ right: 10px; }
  .g-lightbox__btn{ width: 48px; height: 48px; }
}

/* Hero video override */
.hero__carousel{
  display: flex;
  min-height: 460px;
}
.hero__video-frame{
  width: 100%;
  min-height: 430px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}
.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 920px){
  .hero__video-frame{ min-height: 360px; }
}
@media (max-width: 520px){
  .hero__video-frame{ min-height: 300px; }
}

