:root{
  /* Robe’ll — Light / Boutique palette */
  --header-h: 76px;
  --bg:#FBF8F4;          /* warm off-white */
  --bg2:#F3E9DE;         /* sand (alt sections) */
  --card:#FFFFFF;
  --card2:#FFFFFF;
  --text:#2B211C;        /* espresso */
  --muted:rgba(43,33,28,.76);
  --muted2:rgba(43,33,28,.60);

  --accent:#6A2430;      /* burdeos apagado (premium) */
  --accent2:#7A5A44;     /* warm brown */
  --accent3:#C9B8AA;     /* soft beige */

  --line:rgba(122,90,68,.18);
  --line2:rgba(122,90,68,.12);
  --shadow: 0 18px 55px rgba(43,33,28,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth; scroll-padding-top: var(--header-h);}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
  padding-top: var(--header-h); /* fixed header */
}

/* Avoid headings being hidden behind fixed header when navigating via anchors */
section[id]{scroll-margin-top: var(--header-h);}

a{color:inherit;text-decoration:none}

.container{width:min(1100px, calc(100% - 48px)); margin:0 auto;}

.sr-only{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip{position:absolute;left:12px;top:12px;padding:10px 12px;border-radius:999px;background:#fff;color:#000;transform:translateY(-200%);transition:transform .2s;z-index:99}
.skip:focus{transform:translateY(0)}

.header{
  position:fixed; top:0; left:0; right:0; z-index:999;
  backdrop-filter: blur(12px);
  background: rgba(251,248,244,.92);
  border-bottom: 1px solid var(--line2);
}

.nav{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px;}

.brand__logo{
  width:clamp(140px, 18vw, 220px);
  height:auto;
  display:block;
  filter:none;
  opacity:.98;
}

.menu{display:flex; align-items:center; gap:18px; font-size:14px; color:var(--muted)}
.menu a{opacity:.92}
.menu a:hover{opacity:1; color:var(--accent)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  font-weight:650;
  border: 1px solid rgba(0,0,0,0);
  box-shadow: 0 10px 26px rgba(123,30,43,.16);
}
.btn:hover{filter:brightness(1.04)}
.btn:active{transform:translateY(1px)}

.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(122,90,68,.06)}

.burger{display:none; background:transparent;border:1px solid var(--line); border-radius:12px; padding:10px}
.burger__lines{display:block; width:22px; height:14px; position:relative}
.burger__lines:before,.burger__lines:after{content:""; position:absolute; left:0; right:0; height:2px; background:rgba(43,33,28,.9); border-radius:99px}
.burger__lines:before{top:2px}
.burger__lines:after{bottom:2px}

.mobile{border-top:1px solid var(--line2); background: rgba(251,248,244,.92)}
.mobile__inner{padding:14px 0; display:grid; gap:10px; color:var(--muted)}

.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(106,36,48,.10), transparent 55%),
    radial-gradient(900px 650px at 95% 10%, rgba(122,90,68,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), #FFFFFF 60%);
  border-bottom: 1px solid var(--line2);
}
.hero__grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:34px; align-items:center;}

.pill{display:inline-flex; gap:10px; align-items:center; padding:7px 12px; border-radius:999px;
  background: rgba(255,255,255,.72);
  border:1px solid var(--line2);
  color:var(--muted);
  font-size:13px;
}

.h1{font-family: Fraunces, serif; font-size: clamp(38px, 4.6vw, 58px); line-height:1.02; margin:14px 0 10px;}
.h2{font-family: Fraunces, serif; font-size: clamp(28px, 3.2vw, 38px); margin:0}

/* Subtle highlight instead of neon gradient */
.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{font-size:16px; color:var(--muted); line-height:1.55; max-width:54ch;}

.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin:22px 0 18px}

.meta{margin:0; padding:0; list-style:none; display:grid; gap:10px; color:var(--muted2); font-size:14px}
.dot{display:inline-block; width:10px; height:10px; border-radius:999px; background: linear-gradient(135deg, var(--accent), var(--accent2)); margin-right:10px}

.hero__visual{position:relative; min-height:360px}
.hero__photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  box-shadow: var(--shadow);
  filter: saturate(1.02) contrast(1.02);
}

/* Removed overlay card in hero */


.glass{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.card{border-radius: var(--radius); overflow:hidden; transform: translateY(2px);}
.card__top{height:120px; background: linear-gradient(135deg, rgba(123,30,43,.10), rgba(122,90,68,.10)); position:relative;}
.card__body{padding:18px}
.card__title{font-weight:650; margin-bottom:10px}
.card__list{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:12px}
.chip{font-size:13px; padding:7px 10px; border-radius:999px; background: rgba(122,90,68,.06); border:1px solid var(--line2); color:rgba(43,33,28,.88)}
.card__note{color:var(--muted2); font-size:12px}

.spark{position:absolute; inset:auto; width:84px; height:84px; border-radius:18px;
  background: radial-gradient(80% 80% at 20% 20%, rgba(255,255,255,.9), rgba(255,255,255,.45));
  border:1px solid var(--line2);
  top:18px; left:18px;
  transform: rotate(8deg);
}
.spark--b{top:18px; right:18px; left:auto; transform: rotate(-8deg); width:70px; height:70px}
.spark--c{top:auto; bottom:-18px; left:40%; transform: rotate(4deg); width:120px; height:120px; opacity:.55}

/* Remove the neon blob for a cleaner aesthetic */
.blob{display:none}

.section{padding:64px 0}

.section--reviews{
  /* Make the reviews section start with a soft gradient (fix #2) */
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(106,36,48,.10), transparent 55%),
    linear-gradient(180deg, rgba(251,248,244,1), rgba(255,255,255,.78));
  border-top:1px solid var(--line2);
}

.section--alt{
  background: linear-gradient(180deg, rgba(243,233,222,.85), rgba(255,255,255,.8));
  border-top:1px solid var(--line2);
  border-bottom:1px solid var(--line2);
}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:22px}
.sub{margin:0; color:var(--muted); max-width:70ch; line-height:1.5}

.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.service{grid-column: span 4; padding:18px; border-radius: var(--radius); border:1px solid var(--line2); background: rgba(255,255,255,.72)}
.service:hover{background: rgba(255,255,255,.92)}
.service__k{font-weight:650; margin-bottom:8px}
.service__d{color:var(--muted); line-height:1.5; font-size:14px}
.service__meta{margin-top:12px; color:var(--muted2); font-size:12px; display:flex; gap:10px; flex-wrap:wrap}

.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:12px}
.shot{grid-column: span 4; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line2); background: rgba(255,255,255,.72); min-height:170px; position:relative}
.shot--wide{grid-column: span 8}

.shot__img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; filter: saturate(1.02) contrast(1.01)}
.shot__cap{position:absolute; left:10px; bottom:10px; margin:0; font-size:13px; color:rgba(43,33,28,.96)}
.shot__cap span{display:inline-block; padding:8px 10px; border-radius:999px; border:1px solid var(--line2); background: rgba(255,255,255,.75); backdrop-filter: blur(10px)}

.hint{color:var(--muted2); font-size:13px; margin:16px 0 0}

.reviews-embed{border-radius: var(--radius); border:1px solid var(--line2); background: rgba(255,255,255,.72); overflow:hidden; box-shadow: 0 16px 45px rgba(43,33,28,.10)}
.reviews-embed iframe{display:block; width:100%; height:520px; border:0}

.contact{display:grid; grid-template-columns: 1fr; gap:18px; align-items:stretch}
.contact__cards{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:18px}
.info{display:grid; gap:4px; padding:14px; border-radius: var(--radius); background: rgba(255,255,255,.72); border:1px solid var(--line2)}
.info:hover{background: rgba(255,255,255,.92)}
.info__k{font-size:12px; color:var(--muted2)}
.info__v{font-weight:650}
.contact__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.map{border-radius: var(--radius); border:1px solid var(--line2); background: rgba(255,255,255,.72); min-height:320px; overflow:hidden;}
.map__placeholder{height:100%; padding:16px; display:grid; gap:10px; align-content:center; justify-items:center; text-align:center; color:var(--muted)}
.map__title{font-weight:650; color:rgba(43,33,28,.92)}

.note{margin-top:12px; padding:16px; border-radius: var(--radius); border:1px solid var(--line2);
  background: rgba(255,255,255,.72);
}
.note__title{font-weight:650; margin-bottom:8px}
.note__text{color:var(--muted); line-height:1.5; font-size:14px}

.legal{margin-top:16px; color:var(--muted2); font-size:12px}
.legal a{text-decoration:underline; text-decoration-color: rgba(122,90,68,.35)}

.footer{padding:22px 0; border-top:1px solid var(--line2)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:18px}
.footer__logo{width:clamp(140px, 16vw, 200px); height:auto; display:block; opacity:.95}
.footer__links{display:flex; gap:16px; color:var(--muted2); font-size:13px}
.footer__links a:hover{color:var(--accent)}

@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr;}
  .hero__visual{min-height:280px}
  .contact{grid-template-columns:1fr;}
  .section__head{flex-direction:column; align-items:flex-start}
  .service{grid-column: span 6}
  .quote{grid-column: span 6}
  .shot{grid-column: span 6}
  .shot--wide{grid-column: span 12}
}

@media (max-width: 640px){
  .menu{display:none}
  .burger{display:inline-flex}
  .service{grid-column: span 12}
  .quote{grid-column: span 12}
  .shot{grid-column: span 12}
  .contact__cards{grid-template-columns:1fr}
  .footer__inner{flex-direction:column; align-items:flex-start}
}

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