:root {
  --ink: #241d1a;
  --muted: #665a68;
  --paper: #f5edff;
  --paper-rgb: 245, 237, 255;
  --warm: #eee0fb;
  --rose: #e5cce9;
  --gold: #c89a2d;
  --gold-dark: #916712;
  --accent-rgb: 200, 154, 45;
  --accent-dark-rgb: 145, 103, 18;
  --graphite: #2f3134;
  --line: rgba(200, 154, 45, 0.22);
  --shadow: 0 24px 70px rgba(145, 103, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: rgba(var(--accent-rgb), 0.22);
}

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

img {
  display: block;
  max-width: 100%;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes softLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactGlow {
  0%,
  100% {
    box-shadow: 0 22px 58px rgba(36, 29, 26, 0.2);
  }

  50% {
    box-shadow: 0 26px 72px rgba(var(--accent-dark-rgb), 0.28);
  }
}

.scroll-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(var(--paper-rgb), 0.92);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(36, 29, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(36, 29, 26, 0.18);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(var(--accent-dark-rgb), 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  opacity: 0.86;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  border-color: rgba(36, 29, 26, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 260px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 40px);
  height: 40px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .language-switch {
  border-color: rgba(36, 29, 26, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.lang-button.is-active {
  background: var(--gold);
  color: #fff;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(var(--accent-dark-rgb), 0.24);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% -120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%) rotate(12deg);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(var(--accent-dark-rgb), 0.3);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(100%) rotate(12deg);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-ghost {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  box-shadow: 0 16px 34px rgba(var(--accent-dark-rgb), 0.24);
  backdrop-filter: blur(8px);
}

.button-ghost-dark {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  box-shadow: 0 16px 34px rgba(var(--accent-dark-rgb), 0.24);
}

.floating-contact-capsule {
  position: fixed;
  z-index: 11;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(var(--paper-rgb), 0.74);
  box-shadow: 0 22px 58px rgba(36, 29, 26, 0.2);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
  animation: contactGlow 5.5s ease-in-out infinite;
}

.floating-contact-button {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
  overflow: hidden;
  padding: 0 8px 0 18px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 29, 26, 0.18);
  transition: width 220ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  width: 190px;
  transform: translateX(-4px);
  box-shadow: 0 18px 42px rgba(36, 29, 26, 0.26);
}

.floating-contact-whatsapp,
.floating-contact-telegram,
.floating-contact-phone {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.floating-contact-instagram {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.capsule-text {
  min-width: 108px;
  opacity: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-contact-button:hover .capsule-text,
.floating-contact-button:focus-visible .capsule-text {
  opacity: 1;
  transform: translateX(0);
}

.capsule-icon {
  flex: 0 0 auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.capsule-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-contact-whatsapp .capsule-icon svg path:last-child,
.floating-contact-telegram .capsule-icon svg path,
.floating-contact-instagram .capsule-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 76px) 72px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 21, 0.72) 0%, rgba(28, 23, 21, 0.38) 42%, rgba(28, 23, 21, 0.08) 78%),
    linear-gradient(180deg, rgba(28, 23, 21, 0.36) 0%, rgba(28, 23, 21, 0.02) 48%, rgba(28, 23, 21, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  max-width: 650px;
  color: #fff;
}

.hero-content > *,
.service-hero-content > *,
.blog-hero-content > * {
  animation: softLift 720ms ease both;
}

.hero-content > *:nth-child(2),
.service-hero-content > *:nth-child(2),
.blog-hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3),
.service-hero-content > *:nth-child(3),
.blog-hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4),
.service-hero-content > *:nth-child(4),
.blog-hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(58px, 9vw, 116px);
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(16px);
  animation: softLift 780ms ease 300ms both;
}

.hero-panel span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.hero-panel span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  background: var(--paper);
  padding-top: clamp(48px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.78fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
}

.section h2,
.cta-section h2 {
  font-size: clamp(42px, 6vw, 76px);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
}

.intro-copy p,
.section-heading p,
.service-card p,
.portfolio-caption p,
.blog-card p,
.blog-article p,
.cta-content p,
.site-footer p {
  margin: 0;
}

.services-section {
  background: var(--warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(var(--accent-rgb), 0.08), transparent 66%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 22px 50px rgba(36, 29, 26, 0.1);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
}

.service-card:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.36);
  outline-offset: 4px;
}

.service-card span {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.service-card h3 {
  margin: auto 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.service-card-with-image {
  justify-content: flex-start;
  gap: 14px;
  padding: 14px;
}

.service-card-with-image span,
.service-card-with-image h3,
.service-card-with-image p {
  margin-left: 10px;
  margin-right: 10px;
}

.service-card-with-image h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.service-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--warm);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card:hover .service-card-media img,
.service-card:focus-visible .service-card-media img {
  transform: scale(1.06);
}

.service-page {
  background: var(--paper);
}

.service-hero {
  position: relative;
  min-height: min(76vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 76px) 84px;
  color: #fff;
}

.service-hero-image,
.service-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero-image {
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.service-hero-scrim {
  background:
    linear-gradient(180deg, rgba(28, 23, 21, 0.16) 0%, rgba(28, 23, 21, 0.56) 100%),
    linear-gradient(90deg, rgba(28, 23, 21, 0.78), rgba(28, 23, 21, 0.22));
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
}

.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-back-link::before {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.9;
}

.service-hero-lede {
  width: min(100%, 700px);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.service-detail-section {
  background: var(--paper);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.service-detail-copy {
  min-width: 0;
}

.service-overview {
  max-width: 780px;
  margin: 18px 0 42px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.34;
}

.service-detail-copy h2,
.service-booking-panel h2 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.service-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-feature-list li {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.service-booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(36, 29, 26, 0.1);
}

.service-result,
.service-booking-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.service-contact-buttons {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-section {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}

.portfolio-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(36, 29, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(36, 29, 26, 0.12);
}

.portfolio-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-placeholder {
  position: relative;
  min-height: 260px;
  flex: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 29, 26, 0.24), rgba(var(--accent-rgb), 0.1)),
    url("assets/goldenberg-hero.png") center / cover;
}

.portfolio-card-large .portfolio-placeholder {
  min-height: 520px;
}

.portfolio-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.portfolio-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 29, 26, 0.32);
}

.portfolio-placeholder-warm {
  background:
    linear-gradient(135deg, rgba(var(--accent-dark-rgb), 0.22), rgba(255, 255, 255, 0.1)),
    url("assets/goldenberg-hero.png") 62% 46% / 190%;
}

.portfolio-placeholder-rose {
  background:
    linear-gradient(135deg, rgba(215, 170, 166, 0.34), rgba(36, 29, 26, 0.16)),
    url("assets/goldenberg-hero.png") 36% 52% / 175%;
}

.portfolio-placeholder-deep {
  background:
    linear-gradient(135deg, rgba(47, 49, 52, 0.42), rgba(var(--accent-rgb), 0.16)),
    url("assets/goldenberg-hero.png") 84% 44% / 180%;
}

.portfolio-placeholder-soft {
  background:
    linear-gradient(135deg, rgba(239, 227, 214, 0.4), rgba(36, 29, 26, 0.24)),
    url("assets/goldenberg-hero.png") 18% 56% / 185%;
}

.portfolio-placeholder-photo {
  background: var(--warm);
}

.portfolio-placeholder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.portfolio-card:hover .portfolio-placeholder-photo img,
.portfolio-card:focus-within .portfolio-placeholder-photo img {
  transform: scale(1.05);
}

.portfolio-placeholder-photo::after {
  background: linear-gradient(180deg, rgba(36, 29, 26, 0.02), rgba(36, 29, 26, 0.14));
}

.portfolio-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.portfolio-caption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.portfolio-caption h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.portfolio-caption p {
  color: var(--muted);
  font-size: 14px;
}

.blog-section {
  background: var(--warm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(36, 29, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 24px 58px rgba(36, 29, 26, 0.12);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--warm);
}

.blog-card-media img,
.blog-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img,
.blog-article:hover img,
.blog-article:focus-within img {
  transform: scale(1.05);
}

.blog-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card-copy span,
.blog-article-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3,
.blog-article h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 3vw, 38px);
  line-height: 0.98;
}

.blog-card p,
.blog-article p {
  color: var(--muted);
  font-size: 15px;
}

.blog-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}

.blog-page {
  background: var(--paper);
}

.blog-hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 76px) 86px;
  color: #fff;
}

.blog-hero-image,
.blog-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero-image {
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.blog-hero-scrim {
  background:
    linear-gradient(180deg, rgba(28, 23, 21, 0.08) 0%, rgba(28, 23, 21, 0.72) 100%),
    linear-gradient(90deg, rgba(28, 23, 21, 0.82), rgba(var(--accent-rgb), 0.2));
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
}

.blog-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.9;
}

.blog-hero p:last-child {
  width: min(100%, 700px);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.blog-archive {
  background: var(--paper);
}

.blog-article-list {
  display: grid;
  gap: 18px;
}

.blog-article {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(36, 29, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-article:hover,
.blog-article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(36, 29, 26, 0.12);
}

.blog-article img {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.blog-article-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
}

.blog-article-copy p:last-child {
  color: var(--ink);
  font-size: 16px;
}

.cta-section {
  margin: 0 clamp(20px, 5vw, 76px) clamp(22px, 4vw, 42px);
  padding: clamp(42px, 7vw, 78px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 29, 26, 0.94), rgba(47, 49, 52, 0.9)),
    url("assets/goldenberg-hero.png") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 430px);
  gap: 28px;
  align-items: end;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.contact-buttons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 14px;
}

.contact-button {
  min-width: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.contact-button-whatsapp,
.contact-button-telegram,
.contact-button-phone {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.contact-button-instagram {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.contact-button strong,
.contact-button small {
  display: block;
  overflow-wrap: anywhere;
}

.contact-button strong {
  color: #fff;
  font-size: 16px;
}

.contact-button small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 76px) 42px;
  color: var(--muted);
  font-size: 13px;
}

.footer-content {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.footer-info {
  display: grid;
  gap: 12px;
}

.site-footer p,
.footer-address {
  margin: 0;
}

.footer-credit {
  color: var(--ink);
  font-weight: 800;
}

.site-footer a {
  color: var(--gold);
}

.footer-address {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.footer-address a {
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-dark);
}

.footer-map {
  width: 100%;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  box-shadow: 0 18px 42px rgba(36, 29, 26, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(20px, 4vw, 64px);
    right: clamp(20px, 4vw, 64px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(var(--paper-rgb), 0.96);
    color: var(--ink);
    box-shadow: 0 24px 54px rgba(var(--accent-dark-rgb), 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 6px;
    opacity: 1;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(var(--accent-rgb), 0.08);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-menu-open {
    background: rgba(var(--paper-rgb), 0.96);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(36, 29, 26, 0.08);
    backdrop-filter: blur(18px);
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-article {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
  }

  .floating-contact-capsule {
    top: auto;
    right: 50%;
    bottom: 14px;
    display: flex;
    padding: 8px;
    transform: translateX(50%);
  }

  .floating-contact-button,
  .floating-contact-button:hover,
  .floating-contact-button:focus-visible {
    width: 56px;
    height: 56px;
    padding: 0 9px;
    transform: none;
  }

  .capsule-text {
    display: none;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .language-switch {
    grid-template-columns: repeat(3, 36px);
    height: 38px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 228px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(28, 23, 21, 0.3) 0%, rgba(28, 23, 21, 0.1) 35%, rgba(28, 23, 21, 0.82) 100%),
      linear-gradient(90deg, rgba(28, 23, 21, 0.48), rgba(28, 23, 21, 0.08));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(43px, 14vw, 58px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .service-hero {
    min-height: 72vh;
    padding: 106px 18px 64px;
  }

  .blog-hero {
    min-height: 68vh;
    padding: 106px 18px 64px;
  }

  .service-hero h1,
  .blog-hero h1 {
    font-size: clamp(42px, 11vw, 54px);
  }

  .blog-hero h1 {
    max-width: 320px;
    overflow-wrap: break-word;
  }

  .service-hero-lede,
  .blog-hero p:last-child {
    max-width: 340px;
    font-size: 16px;
  }

  .service-detail-copy h2,
  .service-booking-panel h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .service-booking-panel {
    grid-template-columns: 1fr;
  }

  .service-contact-buttons {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 11px;
  }

  .hero-panel span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 18px;
  }

  .intro-grid,
  .section-heading,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .section-heading {
    min-width: 0;
  }

  .section-heading p {
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .section h2,
  .cta-section h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .blog-article {
    grid-template-columns: 1fr;
  }

  .blog-article img {
    min-height: 260px;
  }

  .service-card {
    min-height: 210px;
  }

  .portfolio-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-card-large .portfolio-placeholder,
  .portfolio-placeholder {
    min-height: 280px;
  }

  .cta-section {
    margin: 0 18px 18px;
    padding: 42px 22px;
  }

  .site-footer {
    padding: 28px 18px 36px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-map {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    max-width: 354px;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .brand strong {
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
