:root {
  --paco-dark: #0f0d0a;
  --paco-deep: #1a1510;
  --paco-brown: #3d2b1f;
  --paco-amber: #c4873b;
  --paco-gold: #d4a04a;
  --paco-light: #f0dbb8;
  --paco-cream: #f5efe6;
  --paco-warm: #8b5e3c;
  --paco-string: #a08060;
}

.paco-page { color: #2a201a; background: var(--paco-cream); }

.paco-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 24px 0;
  color: #fff;
}

.paco-nav .container,
.paco-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.paco-brand { display: flex; align-items: center; gap: 13px; }
.paco-brand img {
  width: 44px;
  height: 44px;
  padding: 5px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}
.paco-brand span { font-size: .95rem; font-weight: 800; line-height: 1.4; }
.paco-brand small {
  display: block;
  color: rgba(255,255,255,.5);
  font: .56rem/1.6 Georgia, serif;
  letter-spacing: .2em;
}

.paco-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  transition: .25s;
}
.paco-back:hover { color: var(--paco-light); border-color: var(--paco-light); }
.paco-back svg { width: 17px; }

.paco-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--paco-dark);
}
.paco-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 24.9%, rgba(255,255,255,.03) 25%, transparent 25.1%),
    linear-gradient(90deg, transparent 74.9%, rgba(255,255,255,.03) 75%, transparent 75.1%),
    radial-gradient(circle at 22% 38%, rgba(196,135,59,.2), transparent 28%),
    radial-gradient(circle at 72% 65%, rgba(61,43,31,.35), transparent 32%),
    linear-gradient(125deg, #0f0d0a, #2a1f16 50%, #14100b);
}
.paco-hero-bg::after {
  content: "PACO";
  position: absolute;
  left: -1vw;
  bottom: -6vw;
  color: rgba(255,255,255,.025);
  font: 800 clamp(7rem, 19vw, 18rem)/1 Georgia, serif;
  letter-spacing: .03em;
}
.paco-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
  padding-top: 110px;
  padding-bottom: 55px;
}
.paco-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paco-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.paco-kicker::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.paco-hero h1 {
  margin: 22px 0 2px;
  color: #fff;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.07em;
}
.paco-slogan {
  color: transparent;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 800;
  -webkit-text-stroke: 1px rgba(240,219,184,.82);
}
.paco-lead {
  max-width: 580px;
  margin-top: 34px;
  padding-right: 22px;
  border-right: 1px solid rgba(240,219,184,.38);
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 2.15;
}
.paco-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: var(--paco-light);
  font-size: .78rem;
  font-weight: 700;
}
.paco-scroll span {
  position: relative;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(240,219,184,.3);
}
.paco-scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paco-light);
  transform: translateX(100%);
  animation: pacoLine 2s infinite;
}
.paco-hero-image { position: relative; justify-self: end; width: min(100%, 540px); }
.paco-image-frame {
  position: relative;
  height: min(73vh, 720px);
  min-height: 520px;
  padding: 13px;
  border: 1px solid rgba(240,219,184,.25);
  border-radius: 260px 260px 8px 8px;
}
.paco-image-frame::before {
  content: "";
  position: absolute;
  inset: -17px 20px 17px -17px;
  z-index: -1;
  border: 1px solid rgba(240,219,184,.1);
  border-radius: inherit;
}
.paco-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 250px 250px 3px 3px;
  filter: saturate(.9) contrast(1.04);
}
.paco-seal {
  position: absolute;
  right: -42px;
  bottom: 55px;
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(240,219,184,.55);
  border-radius: 50%;
  color: var(--paco-light);
  background: rgba(15,13,10,.8);
  backdrop-filter: blur(10px);
  font: 2.6rem/1 Georgia, serif;
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}
.paco-seal small { display: block; margin-top: 7px; font-size: .45rem; letter-spacing: .3em; }

.paco-intro { padding: clamp(100px, 12vw, 170px) 0; }
.paco-intro-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(55px, 10vw, 145px);
  align-items: start;
}
.paco-heading span,
.paco-section-head > span,
.paco-contact-card > div > span { color: #8d6636; font-size: .8rem; font-weight: 700; }
.paco-heading h2,
.paco-section-head h2,
.paco-contact-card h2 {
  margin-top: 17px;
  color: #291a12;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.28;
  letter-spacing: -.05em;
}
.paco-story { padding-top: 42px; border-top: 1px solid rgba(57,35,24,.2); }
.paco-story p { color: #6f6259; font-size: 1.02rem; line-height: 2.2; }
.paco-story p + p { margin-top: 24px; }

.paco-gallery { padding-bottom: clamp(110px, 13vw, 180px); }
.paco-gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: end; }
.paco-gallery-item { position: relative; overflow: hidden; background: #20140e; }
.paco-gallery-main { height: 760px; }
.paco-gallery-side { height: 590px; }
.paco-gallery-item::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.paco-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.paco-gallery-item:hover img { transform: scale(1.035); }
.paco-gallery-item figcaption {
  position: absolute;
  right: 36px;
  bottom: 34px;
  z-index: 2;
  padding: 8px 13px;
  color: #fff;
  background: rgba(15,13,10,.66);
  backdrop-filter: blur(8px);
  font-size: .76rem;
}

.paco-services { padding: clamp(110px, 13vw, 180px) 0; color: #fff; background: #1a1510; }
.paco-section-head { max-width: 760px; margin-bottom: 70px; }
.paco-section-head > span { color: var(--paco-amber); }
.paco-section-head h2 { color: #fff; }
.paco-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.1); }
.paco-service-card { min-height: 350px; padding: 38px 30px; }
.paco-service-card + .paco-service-card { border-right: 1px solid rgba(255,255,255,.1); }
.paco-service-card > span { color: rgba(240,219,184,.5); font: 1rem/1 Georgia, serif; }
.paco-service-card h3 { margin: 90px 0 17px; color: var(--paco-light); font-size: 1.35rem; }
.paco-service-card p { color: rgba(255,255,255,.55); font-size: .84rem; line-height: 2; }

.paco-quote { padding: clamp(100px, 12vw, 170px) 0; }
.paco-quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(55px, 8vw, 95px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(196,135,59,.25), transparent 23%),
    linear-gradient(120deg, #4c2b1c, #1c120d);
}
.paco-quote-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(240,219,184,.18);
}
.paco-quote-mark { display: block; height: 70px; color: var(--paco-amber); font: 7rem/1 Georgia, serif; }
.paco-quote-card > p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.35;
}
.paco-quote-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 65px;
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.paco-quote-meta div { display: grid; gap: 6px; }
.paco-quote-meta span { color: rgba(255,255,255,.45); font-size: .72rem; }
.paco-quote-meta strong { color: var(--paco-light); font-size: 1rem; }

.paco-contact { padding: 0 0 clamp(100px, 12vw, 160px); }
.paco-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(35px, 6vw, 70px);
  border-top: 1px solid rgba(57,35,24,.2);
  border-bottom: 1px solid rgba(57,35,24,.2);
}
.paco-contact-card h2 { max-width: 700px; font-size: clamp(2rem, 4vw, 4rem); }
.paco-contact-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.paco-instagram-btn {
  flex: 0 0 auto;
  min-width: 175px;
  min-height: 58px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  background: #2c1c14;
  transition: .3s var(--ease);
}
.paco-instagram-btn:hover { color: #21150f; background: var(--paco-amber); transform: translateY(-4px); }
.paco-instagram-btn svg { width: 21px; }
.paco-website-btn {
  color: #2c1c14;
  border: 1px solid rgba(44,28,20,.3);
  background: transparent;
}

.paco-card-section { padding: clamp(100px, 12vw, 160px) 0; }
.paco-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
  padding: clamp(40px, 6vw, 70px);
  border: 1px solid rgba(57,35,24,.15);
  background: #fffdf9;
  box-shadow: 0 26px 70px rgba(57,35,24,.07);
}
.paco-card-visual {
  position: relative;
  height: min(60vh, 520px);
  min-height: 380px;
  overflow: hidden;
}
.paco-card-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.paco-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.paco-feature-card:hover .paco-card-visual img { transform: scale(1.035); }
.paco-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.paco-card-kicker {
  color: var(--paco-amber);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.paco-card-body h2 {
  margin-top: 17px;
  color: #291a12;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.28;
  letter-spacing: -.05em;
}
.paco-card-body p {
  max-width: 520px;
  margin-top: 24px;
  color: #6f6259;
  font-size: 1.02rem;
  line-height: 2.2;
}
.paco-card-actions { margin-top: 35px; }
.paco-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 14px 32px;
  color: #fff;
  background: #2c1c14;
  font-size: .95rem;
  font-weight: 700;
  transition: .3s var(--ease);
}
.paco-card-btn:hover { color: #21150f; background: var(--paco-amber); transform: translateY(-4px); }
.paco-card-btn svg { width: 21px; }
.paco-card-btn-ig {
  color: #2c1c14;
  border: 1px solid rgba(44,28,20,.3);
  background: transparent;
}
.paco-card-btn-ig:hover { color: #fff; background: var(--paco-amber); border-color: var(--paco-amber); }

.paco-footer { padding: 45px 0; color: rgba(255,255,255,.48); background: #130c09; }
.paco-footer-brand { display: flex; align-items: center; gap: 13px; }
.paco-footer-brand img { width: 44px; height: 44px; padding: 5px; object-fit: contain; border-radius: 14px; background: #fff; }
.paco-footer-brand div { display: grid; }
.paco-footer-brand strong { color: #fff; font-size: .9rem; }
.paco-footer-brand span, .paco-footer p { font-size: .7rem; }

@keyframes pacoLine {
  0% { transform: translateX(100%); }
  50%, 100% { transform: translateX(-100%); }
}

@media (max-width: 1000px) {
  .paco-hero-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .paco-seal { right: -20px; }
  .paco-services-grid { grid-template-columns: repeat(2, 1fr); }
  .paco-service-card:nth-child(3),
  .paco-service-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 760px) {
  .paco-nav { padding: 15px 0; }
  .paco-brand img { width: 42px; height: 42px; }
  .paco-back { font-size: .68rem; }
  .paco-hero { min-height: auto; }
  .paco-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 85px;
  }
  .paco-hero-copy { order: 2; }
  .paco-hero-image { order: 1; justify-self: center; width: min(85%, 430px); }
  .paco-image-frame { height: 58vh; min-height: 440px; }
  .paco-seal { right: -28px; bottom: 35px; width: 84px; font-size: 2rem; }
  .paco-hero h1 { margin-top: 17px; font-size: clamp(3.6rem, 18vw, 6rem); }
  .paco-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .paco-story { padding-top: 30px; }
  .paco-gallery-grid { grid-template-columns: 1fr; }
  .paco-gallery-main, .paco-gallery-side { height: min(115vw, 650px); }
  .paco-gallery-side { width: 86%; margin-right: auto; }
  .paco-services-grid { grid-template-columns: 1fr; }
  .paco-service-card { min-height: 260px; }
  .paco-service-card + .paco-service-card { border-top: 1px solid rgba(255,255,255,.1); border-right: 0; }
  .paco-service-card h3 { margin-top: 55px; }
  .paco-quote-meta { gap: 35px; }
  .paco-feature-card { grid-template-columns: 1fr; }
  .paco-card-visual { min-height: 320px; }
  .paco-contact-card { align-items: flex-start; flex-direction: column; }
  .paco-contact-actions { width: 100%; }
  .paco-instagram-btn { width: 100%; min-width: 0; }
}

@media (max-width: 520px) {
  .paco-brand span { font-size: .8rem; }
  .paco-back { gap: 5px; }
  .paco-back svg { width: 14px; }
  .paco-hero-image { width: 90%; }
  .paco-image-frame { min-height: 390px; border-radius: 200px 200px 6px 6px; }
  .paco-image-frame img { border-radius: 190px 190px 2px 2px; }
  .paco-lead { font-size: .9rem; }
  .paco-gallery-side { width: 92%; }
  .paco-quote-meta { flex-direction: column; gap: 18px; }
  .paco-card-visual { min-height: 260px; }
  .paco-card-body h2 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .paco-card-btn { width: 100%; justify-content: center; }
  .paco-contact-actions { flex-direction: column; }
  .paco-footer .container { align-items: flex-start; flex-direction: column; }
}