/* ═══════════════════════════════════════════════
   ADRIÁN BLAS · styles.css · Mobile-first rebuild
   v=20260516d
═══════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --bg:        #f4f4f4;
  --bg-white:  #ffffff;
  --bg-warm:   #f5ebe0;
  --border:    #d9d9d9;
  --muted:     #8f8a7e;
  --body:      #7a6b5f;
  --dark:      #000000;
  --gold:      #C9A96E;
  --gold-dim:  rgba(201,169,110,.12);

  --ff-body:    'Plus Jakarta Sans', sans-serif;
  --ff-serif:   'Cormorant Garamond', serif;

  --nav-h:     60px;
  --r-sm:      8px;
  --r-md:      14px;
  --r-xl:      24px;
  --r-pill:    100px;
}

/* ─── MOBILE: no navbar ─────────────────────── */
@media (max-width: 767px) {
  .navbar { display: none !important; }
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--ff-body); font-size: inherit; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  background: rgba(244,244,244,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img {
  height: 38px;
  width: auto;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 300;
}
.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.navbar__drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 250;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.navbar__drawer.open { transform: translateX(0); }

.drawer__link {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.01em;
  transition: color .2s;
}
.drawer__link:hover { color: var(--gold); }

.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.navbar__overlay.show { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════
   DOT NAV
═══════════════════════════════════════════════ */
.dots-nav {
  position: fixed;
  right: clamp(.75rem, 2.5vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ═══════════════════════════════════════════════
   SECTIONS — BASE
═══════════════════════════════════════════════ */
.section {
  min-height: 100svh;
  padding-top: 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding-top: var(--nav-h); }
}

.section__label {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 2rem;
}
.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
}

.section__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  animation: nudge 2.5s ease-in-out infinite;
}
.section__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes nudge {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%      { transform: translateX(-50%) translateY(5px); opacity: .3; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.s-hero {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 6vw, 3rem) 5rem;
  gap: 1.5rem;
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

.s-hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.s-hero__photo-wrap {
  width: clamp(260px, 80vw, 360px);
  flex-shrink: 0;
  position: relative;
}
.s-hero__photo {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 94%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 94%);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.08));
}

.s-hero__logo {
  height: clamp(72px, 20vw, 100px);
  width: auto;
  display: block;
  margin-inline: auto;
  image-rendering: -webkit-optimize-contrast;
}

.s-hero__role {
  font-size: clamp(.85rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--body);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.s-hero__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--muted);
}
.s-hero__location svg { width: 14px; height: 14px; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.25rem;
  background: var(--gold);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--r-pill);
  transition: background .25s, box-shadow .25s, transform .2s;
  margin-top: .5rem;
}
.btn-hero:hover {
  background: #d9b97e;
  box-shadow: 0 6px 24px rgba(201,169,110,.4);
  transform: translateY(-1px);
}
.btn-hero:active { transform: scale(.97); }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.s-services {
  background: var(--bg-white);
  padding-bottom: 4rem;
}

.s-services__inner {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 6vw, 2.5rem);
  max-width: 700px;
  margin-inline: auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem 2rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
@media (hover: hover) {
  .svc-item:hover {
    border-color: var(--gold);
    background: var(--bg-warm);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(201,169,110,.1);
  }
}

.svc-item__more {
  position: absolute;
  bottom: .6rem;
  right: 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .2rem;
  transition: color .2s;
}
.svc-item__more:hover { color: var(--gold); }

.svc-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.svc-item__icon svg { width: 20px; height: 20px; }

.svc-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.svc-item__text strong {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.svc-item__text span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}

.svc-item__arrow {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.svc-item:hover .svc-item__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.s-about {
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-about__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 6vw, 2.5rem);
  max-width: 700px;
  margin-inline: auto;
  width: 100%;
}

.s-about__photo-wrap {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
.s-about__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  object-fit: cover;
}

.s-about__text p {
  margin-bottom: 1rem;
  font-size: clamp(.9rem, 2.5vw, 1rem);
  color: var(--body);
  line-height: 1.75;
}
.s-about__text p:last-of-type { margin-bottom: 1.5rem; }

.about__highlight {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.8vw, 1.1rem) !important;
  color: var(--dark) !important;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.75rem;
  border: 1.5px solid var(--dark);
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline:hover { background: var(--dark); color: #fff; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.s-testimonials {
  background: var(--bg);
  padding-bottom: 4rem;
}

.s-testimonials__inner {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 6vw, 2.5rem);
  max-width: 700px;
  margin-inline: auto;
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.testi-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.testi-card__stars {
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: .85rem;
}

.testi-card blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(.95rem, 2.5vw, 1.05rem);
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.testi-card footer {
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.testi-card footer strong {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}
.testi-card footer span {
  font-size: .75rem;
  color: var(--muted);
}
.testi-tag {
  display: inline-block;
  margin-top: .35rem;
  padding: .18rem .7rem;
  background: var(--gold-dim);
  border-radius: var(--r-pill);
  font-size: .68rem !important;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.s-contact {
  background: var(--bg-white);
  padding-bottom: 4rem;
}

.s-contact__inner {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 6vw, 2.5rem);
  max-width: 700px;
  margin-inline: auto;
}

.contact__desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.contact__data {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--body);
  transition: color .2s;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
}
.contact__link svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; overflow: visible; }
.contact__link:hover { color: var(--gold); }

.contact__social-row {
  display: flex;
  gap: .75rem;
  margin-top: .25rem;
}
.contact__social-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  background: var(--bg);
  transition: border-color .2s, color .2s, background .2s;
}
.contact__social-btn svg { width: 16px; height: 16px; }
.contact__social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}
.form-field--full { width: 100%; }

input, select, textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--dark);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
input::placeholder, textarea::placeholder { color: var(--muted); }
select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238f8a7e' stroke-width='1.5' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--r-sm);
  transition: background .25s, box-shadow .25s, transform .2s;
  cursor: pointer;
}
.btn-submit:hover { background: #d9b97e; box-shadow: 0 4px 20px rgba(201,169,110,.35); }
.btn-submit:active { transform: scale(.98); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-sm);
  font-size: .88rem;
  color: var(--dark);
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 2.5rem clamp(1.25rem, 6vw, 2.5rem) 2rem;
}

.footer__inner {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: center;
}
.footer__legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer__legal a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.footer__social-icon svg { width: 16px; height: 16px; }
.footer__social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer__copy {
  font-size: .72rem;
  color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════════
   DESKTOP (≥ 768px)
═══════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }

  /* Hero: side by side */
  .s-hero__inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 3rem;
    max-width: 1100px;
  }
  .s-hero__photo-wrap {
    width: clamp(300px, 32vw, 440px);
    flex-shrink: 0;
  }
  .s-hero__text { text-align: left; align-items: flex-start; display: flex; flex-direction: column; gap: .75rem; }
  .s-hero__logo { height: clamp(72px, 7vw, 100px); margin-inline: 0; }
  .s-hero__location { justify-content: flex-start; }
  .section__scroll-hint { left: 50%; }

  /* Services 2-col grid */
  .services-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
  .s-services__inner, .s-about__inner, .s-testimonials__inner, .s-contact__inner { max-width: 1100px; }

  /* About: side by side */
  .s-about__inner { flex-direction: row; align-items: center; gap: 4rem; }
  .s-about__photo-wrap { flex: 1; max-width: 420px; margin-inline: 0; }
  .s-about__text { flex: 1; }

  /* Testimonials 3-col */
  .testi-list { display: grid; grid-template-columns: repeat(3, 1fr); }

  /* Contact 2-col */
  .form-row { flex-direction: row; gap: 1rem; }
  .form-row .form-field { flex: 1; }

  /* Dots nav bigger */
  .dot { width: 9px; height: 9px; }

  /* Navbar: show links inline, hide burger */
  .navbar__burger { display: none; }
  .navbar__drawer {
    position: static;
    transform: none !important;
    background: none;
    flex-direction: row;
    gap: 2rem;
    z-index: auto;
  }
  .drawer__link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--body);
    position: relative;
    padding-bottom: 2px;
  }
  .drawer__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width .25s;
  }
  .drawer__link:hover { color: var(--dark); }
  .drawer__link:hover::after { width: 100%; }
  .navbar__overlay { display: none !important; }
  .navbar__logo-img { height: 46px; }
}

@media (min-width: 1024px) {
  .s-hero__inner { gap: 6rem; }
}
