:root {
  --ink: #131611;
  --forest: #172117;
  --cream: #f5f0e7;
  --paper: #faf7f0;
  --accent: #26a9ed;
  --line: rgba(255, 255, 255, 0.26);
  --page-pad: clamp(1.25rem, 4vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 7.5rem;
  padding: 1.7rem var(--page-pad);
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, padding 300ms ease, background 300ms ease,
    border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  height: 5.8rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(12, 17, 12, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 22;
  justify-self: start;
}

.brand__surface {
  display: flex;
  width: clamp(12.5rem, 16vw, 15.5rem);
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0.35rem 0.8rem rgba(0, 0, 0, 0.35));
}

.desktop-nav {
  display: flex;
  gap: clamp(1.4rem, 2.7vw, 3.25rem);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  gap: 0.8rem;
  padding: 0.8rem 0 0.8rem 1rem;
  justify-self: end;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta svg,
.button svg,
.scroll-cue svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.header-cta svg {
  transition: transform 180ms ease;
}

.header-cta:hover svg,
.header-cta:focus-visible svg {
  transform: translateX(0.28rem);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 46rem;
  height: 100svh;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.025);
  animation: image-settle 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 8, 0.92) 0%, rgba(9, 15, 9, 0.74) 28%, rgba(9, 14, 8, 0.18) 58%, rgba(8, 11, 7, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 12, 7, 0.55) 0%, transparent 25%, transparent 70%, rgba(7, 10, 6, 0.6) 100%);
}

.hero__grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  width: min(56rem, 64vw);
  margin-top: 7.5rem;
  padding: 2rem var(--page-pad) 4.5rem;
}

.hero__logo {
  display: block;
  width: clamp(10.5rem, 13vw, 13rem);
  height: auto;
  margin: 0 0 1.7rem;
  filter: brightness(0) invert(1) drop-shadow(0 0.45rem 1rem rgba(0, 0, 0, 0.32));
}

.eyebrow {
  display: flex;
  gap: 0.85rem;
  margin: 0 0 1.6rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
}

h1 {
  max-width: 48rem;
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.6rem, 6.7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-wrap: balance;
}

h1 em {
  display: block;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.86em;
  font-style: normal;
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.35);
}

.hero__intro {
  max-width: 36rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.93rem, 1.12vw, 1.08rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  gap: 1.5rem;
  padding: 0.95rem 1rem 0.95rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.button--primary {
  color: var(--ink);
  background: var(--paper);
}

.button--primary svg {
  width: 1.4rem;
  transition: transform 180ms ease;
}

.button--primary:hover,
.button--primary:focus-visible {
  color: #fff;
  background: var(--accent);
  transform: translateY(-2px);
}

.button--primary:hover svg,
.button--primary:focus-visible svg {
  transform: translateX(0.25rem);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  display: block;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  width: 2.8rem;
}

.hero__footer {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.4rem;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__footer p {
  display: flex;
  gap: 0.7rem;
  margin: 0;
  align-items: center;
}

.hero__footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  color: #fff;
}

.scroll-cue svg {
  height: 1.5rem;
  animation: scroll-hint 1.8s ease-in-out infinite;
}

.why-section {
  position: relative;
  scroll-margin-top: 5.8rem;
  padding: clamp(3.75rem, 5vw, 5rem) var(--page-pad) clamp(4.25rem, 5.5vw, 5.5rem);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(38, 169, 237, 0.055), transparent 34%),
    var(--paper);
  isolation: isolate;
}

.why-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: var(--page-pad);
  left: var(--page-pad);
  height: 1px;
  content: "";
  background: rgba(19, 22, 17, 0.16);
}

.why-section__watermark {
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  right: -0.06em;
  color: rgba(19, 22, 17, 0.025);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(15rem, 33vw, 38rem);
  letter-spacing: -0.13em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-section__header {
  max-width: 95rem;
  margin: 0 auto;
}

.why-section__heading h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.5rem, 5.2vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.why-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(21rem, 0.75fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: end;
}

.why-section__heading h2 em {
  display: inline;
  color: #337ea5;
  font-style: normal;
}

.why-section__heading > p {
  max-width: 36rem;
  margin: 0 0 0.35rem;
  color: #686d65;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.6;
}

.qualities {
  display: grid;
  max-width: 95rem;
  margin: 3rem auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.2vw, 4rem);
  align-items: start;
}

.quality {
  position: relative;
  display: grid;
  padding-top: 1rem;
  grid-template-columns: minmax(0, max-content) auto;
  grid-template-rows: auto auto auto;
  column-gap: 0.55rem;
  justify-content: start;
  border-top: 1px solid rgba(19, 22, 17, 0.25);
  transition: border-color 250ms ease, transform 250ms ease;
}

.quality:nth-child(2) {
  margin-top: 0;
}

.quality:nth-child(3) {
  margin-top: 0;
}

.quality::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.quality:hover,
.quality:focus-within {
  border-color: transparent;
  transform: translateY(-0.55rem);
}

.quality:hover::before,
.quality:focus-within::before {
  width: 100%;
}

.quality__meta {
  display: contents;
  color: #7e837b;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.quality__meta span {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0.7rem;
}

.quality__meta svg {
  grid-column: 2;
  grid-row: 2;
  width: clamp(3.75rem, 4.2vw, 4.25rem);
  height: clamp(3.75rem, 4.2vw, 4.25rem);
  align-self: center;
  fill: none;
  stroke: #337ea5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.quality h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0 0 0.75rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.15rem, 2.5vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.quality > p {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 25rem;
  margin: 0;
  color: #686d65;
  font-size: 0.96rem;
  line-height: 1.6;
}

.portfolio-section {
  position: relative;
  scroll-margin-top: 5.8rem;
  padding: clamp(4rem, 6vw, 6rem) var(--page-pad) clamp(4.5rem, 6vw, 6rem);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88), transparent 47%),
    #f3eee6;
}

.portfolio-section::before {
  position: absolute;
  top: 0;
  right: var(--page-pad);
  left: var(--page-pad);
  height: 1px;
  content: "";
  background: rgba(19, 22, 17, 0.15);
}

.portfolio-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio-section__header p {
  margin: 0 0 0.7rem;
  color: #73776f;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-section__header h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.5rem, 5.8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.portfolio-section__header > span {
  display: block;
  width: 4.5rem;
  height: 2px;
  margin-top: 1.4rem;
  background: var(--accent);
}

.portfolio-grid {
  display: grid;
  max-width: 100rem;
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.portfolio-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.68;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1rem;
  background: #1a211a;
  box-shadow: 0 1rem 2.5rem rgba(34, 30, 24, 0.09);
  isolation: isolate;
}

.portfolio-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.portfolio-card:first-child img {
  object-position: center;
}

.portfolio-card:nth-child(3) img {
  object-position: center;
}

.portfolio-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 9, 7, 0.86) 100%);
  transition: background 350ms ease;
}

.portfolio-card__label {
  position: absolute;
  right: 1.15rem;
  bottom: 4.15rem;
  left: 1.15rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.portfolio-card__action {
  position: absolute;
  bottom: 1rem;
  left: 1.15rem;
  display: inline-flex;
  min-height: 2.25rem;
  gap: 0.65rem;
  padding: 0.5rem 0.65rem 0.5rem 0.85rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.92);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.portfolio-card__action svg {
  width: 1rem;
  fill: none;
  stroke: #337ea5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.portfolio-card:hover .portfolio-card__action,
.portfolio-card:focus-visible .portfolio-card__action {
  color: #fff;
  background: #337ea5;
}

.portfolio-card:hover .portfolio-card__action svg,
.portfolio-card:focus-visible .portfolio-card__action svg {
  stroke: #fff;
  transform: translateX(0.18rem);
}

.portfolio-card__label svg {
  width: clamp(1.8rem, 2.3vw, 2.4rem);
  height: clamp(1.8rem, 2.3vw, 2.4rem);
  flex: 0 0 auto;
  fill: none;
  stroke: #79c9f1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.portfolio-card:hover .portfolio-card__shade,
.portfolio-card:focus-visible .portfolio-card__shade {
  background: linear-gradient(180deg, rgba(11, 15, 10, 0.05) 20%, rgba(7, 9, 7, 0.92) 100%);
}

.portfolio-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.portfolio-section__cta {
  display: flex;
  width: fit-content;
  min-height: 4.2rem;
  gap: 2rem;
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;
  padding: 0.9rem 1.15rem 0.9rem 1.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 22, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0.8rem 2rem rgba(28, 25, 20, 0.06);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.portfolio-section__cta svg {
  width: 1.35rem;
  fill: none;
  stroke: #337ea5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.portfolio-section__cta:hover,
.portfolio-section__cta:focus-visible {
  color: #fff;
  background: #337ea5;
  transform: translateY(-2px);
}

.portfolio-section__cta:hover svg,
.portfolio-section__cta:focus-visible svg {
  stroke: #fff;
  transform: translateX(0.25rem);
}

.portfolio-section__hint {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  animation: reveal 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal--1 { animation-delay: 200ms; }
.reveal--2 { animation-delay: 330ms; }
.reveal--3 { animation-delay: 460ms; }
.reveal--4 { animation-delay: 590ms; }
.reveal--5 { animation-delay: 720ms; }
.reveal--6 { animation-delay: 850ms; }

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

@keyframes image-settle {
  from { opacity: 0.4; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.3rem); }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    width: 3rem;
    height: 3rem;
    padding: 0;
    flex-direction: column;
    gap: 0.42rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(10, 14, 9, 0.22);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 9rem var(--page-pad) 3rem;
    flex-direction: column;
    justify-content: space-between;
    background: #101810;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    gap: 1.4rem;
    padding: 0.8rem 0;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .mobile-menu nav span {
    color: var(--accent);
    font-family: "DM Sans", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .mobile-menu p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .hero__content {
    width: min(44rem, 70vw);
  }

  .qualities {
    gap: 2rem;
  }

  .portfolio-grid {
    width: calc(100% + var(--page-pad));
    max-width: none;
    padding-right: var(--page-pad);
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 39vw);
    grid-template-columns: none;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .portfolio-card {
    scroll-snap-align: start;
  }

  .portfolio-section__hint {
    display: block;
    margin: 1.1rem 0 0;
    color: #7b7f78;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-align: right;
    text-transform: uppercase;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 6.3rem;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .site-header.is-scrolled {
    height: 5rem;
  }

  .brand__surface {
    width: 11.5rem;
  }

  .hero {
    min-height: 44rem;
    align-items: flex-end;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(7, 11, 7, 0.47) 0%, rgba(7, 11, 7, 0.06) 30%, rgba(8, 12, 7, 0.46) 59%, rgba(6, 10, 6, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 12, 7, 0.35), transparent 70%);
  }

  .hero__content {
    width: 100%;
    margin: 0;
    padding-top: 8rem;
    padding-bottom: 5.5rem;
  }

  .hero__logo {
    width: 9.5rem;
    margin-bottom: 1.25rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.61rem;
  }

  h1 {
    font-size: clamp(3.2rem, 14.5vw, 5.4rem);
    line-height: 0.92;
  }

  h1 em {
    font-size: 0.78em;
  }

  .hero__intro {
    max-width: 28rem;
    margin-top: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero__actions {
    gap: 1.4rem;
    margin-top: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    min-height: 3.5rem;
  }

  .text-link {
    padding: 0.25rem 0;
  }

  .hero__footer {
    bottom: 1.1rem;
    display: flex;
    justify-content: space-between;
  }

  .hero__footer > p:first-child {
    gap: 0.45rem;
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .scroll-cue span {
    display: none !important;
  }

  .scroll-cue svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .why-section {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    scroll-margin-top: 5rem;
  }

  .why-section__heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-section__heading h2 {
    font-size: clamp(3.3rem, 13.5vw, 4.7rem);
  }

  .why-section__heading h2 em {
    display: block;
  }

  .why-section__heading > p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .qualities {
    margin-top: 2.6rem;
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }

  .quality:nth-child(2),
  .quality:nth-child(3) {
    margin-top: 0;
  }

  .quality h3 {
    font-size: clamp(2.25rem, 9.5vw, 2.9rem);
  }

  .quality > p {
    font-size: 0.92rem;
  }

  .portfolio-section {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    scroll-margin-top: 5rem;
  }

  .portfolio-section__header h2 {
    font-size: clamp(3.4rem, 15vw, 4.6rem);
  }

  .portfolio-section__header > span {
    width: 3.5rem;
    margin-top: 1rem;
  }

  .portfolio-grid {
    margin-top: 2rem;
    grid-auto-columns: minmax(16rem, 78vw);
    gap: 0.9rem;
  }

  .portfolio-card {
    aspect-ratio: 0.72;
  }

  .portfolio-card__label {
    right: 1rem;
    bottom: 4.35rem;
    left: 1rem;
    font-size: 1.65rem;
  }

  .portfolio-card__action {
    bottom: 1.15rem;
    left: 1rem;
    min-height: 2.4rem;
    font-size: 0.6rem;
  }

  .portfolio-card__label svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .portfolio-section__cta {
    min-height: 3.8rem;
    gap: 1.3rem;
    margin-top: 2rem;
    padding-left: 1.4rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 390px) {
  .brand__surface { width: 10.3rem; }
  .menu-toggle { width: 2.8rem; height: 2.8rem; }
  .hero__intro { max-width: 20rem; }
  .hero__actions { gap: 0.95rem; }
  .hero__footer > p:first-child { font-size: 0.5rem; }
}

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

/* Despre fotograf */
.pricing-teaser {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) var(--page-pad);
  color: #f7f5ee;
  background: #1c5069;
}

.pricing-teaser::before {
  position: absolute;
  width: min(48vw, 42rem);
  height: min(48vw, 42rem);
  top: -55%;
  right: -10%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4.5rem rgba(255, 255, 255, 0.025), 0 0 0 9rem rgba(255, 255, 255, 0.018);
}

.pricing-teaser > * {
  position: relative;
  z-index: 1;
  width: min(100%, 76rem);
  margin-right: auto;
  margin-left: auto;
}

.pricing-teaser__topline {
  display: flex;
  padding-bottom: 1.15rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-teaser__topline p {
  margin: 0;
  color: #9cd5ed;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-teaser__topline span {
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.pricing-teaser__content {
  display: grid;
  padding: clamp(2rem, 5vw, 4.6rem) 0 clamp(1.8rem, 4vw, 3.7rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.55fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
}

.pricing-teaser h2 {
  max-width: 42rem;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.pricing-teaser h2 em {
  color: #9cd5ed;
  font-style: normal;
}

.pricing-teaser__content > div > p {
  max-width: 35rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.7;
}

.pricing-teaser__figures {
  display: grid;
  gap: 1rem;
}

.pricing-teaser__figures div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.pricing-teaser__figures span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-teaser__figures strong {
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
}

.pricing-teaser__link {
  display: inline-flex;
  gap: 1rem;
  width: fit-content;
  padding-bottom: 0.6rem;
  align-items: center;
  border-bottom: 1px solid #9cd5ed;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-teaser__link svg {
  width: 1.1rem;
  fill: none;
  stroke: #9cd5ed;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.pricing-teaser__link:hover svg,
.pricing-teaser__link:focus-visible svg {
  transform: translateX(0.3rem);
}

@media (max-width: 720px) {
  .pricing-teaser__content { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-teaser__figures { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .pricing-teaser__figures div { min-height: 5.7rem; }
}

@media (max-width: 430px) {
  .pricing-teaser__figures { grid-template-columns: 1fr; }
}

.about-section {
  scroll-margin-top: 5.8rem;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad);
  color: var(--ink);
  background: #f7f4ed;
}

.about-section__inner {
  display: grid;
  width: min(100%, 76rem);
  margin: 0 auto;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 7.5rem);
  align-items: center;
}

.about-portrait {
  position: relative;
  height: clamp(32rem, 48vw, 43rem);
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #d5d2cc;
  box-shadow: 0 1.6rem 3.8rem rgba(28, 26, 22, 0.15);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(15, 17, 15, 0.28));
  pointer-events: none;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: grid;
  gap: 0.22rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0.8rem;
  background: rgba(250, 248, 242, 0.94);
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.12);
}

.about-portrait figcaption strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.about-portrait figcaption span,
.about-content__eyebrow {
  color: #6d746e;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-content__eyebrow {
  margin: 0 0 1rem;
  color: #337ea5;
}

.about-content h2 {
  max-width: 42rem;
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.about-content h2 em {
  color: #337ea5;
  font-style: normal;
}

.about-content__intro {
  max-width: 42rem;
  margin: 1.7rem 0 0;
  color: #606660;
  font-size: clamp(0.94rem, 1.25vw, 1.06rem);
  line-height: 1.75;
}

.about-content blockquote {
  max-width: 42rem;
  margin: 1.9rem 0;
  padding: 0.35rem 0 0.35rem 1.35rem;
  border-left: 2px solid #26a9ed;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.38;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-principles article {
  min-height: 8rem;
  padding: 1.2rem;
  border: 1px solid #dce8ed;
  border-radius: 0.75rem;
  background: rgba(235, 246, 249, 0.56);
}

.about-principles h3 {
  margin: 0 0 0.52rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-principles p {
  margin: 0;
  color: #68716d;
  font-size: 0.73rem;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .about-section { padding-top: 4rem; padding-bottom: 4.5rem; }
  .about-section__inner { grid-template-columns: 1fr; gap: 2.7rem; }
  .about-portrait { width: min(100%, 29rem); height: clamp(29rem, 118vw, 38rem); margin: 0 auto; }
}

@media (max-width: 480px) {
  .about-portrait figcaption { right: 1rem; bottom: 1rem; left: 1rem; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article { min-height: 0; }
}

/* O greutate puțin mai mare păstrează eleganța serif-ului, dar îmbunătățește lizibilitatea. */
.about-content h2,
.about-content blockquote {
  font-weight: 500;
}

.about-portrait figcaption strong {
  font-weight: 600;
}

/* Titlurile editoriale au o greutate constantă pentru o citire mai clară. */
h1,
.why-section__heading h2,
.quality h3,
.portfolio-section__header h2 {
  font-weight: 500;
}

.about-more {
  max-width: 42rem;
}

.about-more summary {
  display: inline-flex;
  gap: 1.35rem;
  min-height: 3.35rem;
  padding: 0.75rem 1rem 0.75rem 1.35rem;
  align-items: center;
  border: 1px solid #9cd5ed;
  border-radius: 999px;
  color: #1c5069;
  background: rgba(235, 246, 249, 0.72);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.about-more summary::-webkit-details-marker { display: none; }

.about-more summary span {
  color: #337ea5;
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.about-more summary:hover,
.about-more summary:focus-visible,
.about-more[open] summary {
  border-color: #337ea5;
  color: #fff;
  background: #337ea5;
}

.about-more summary:hover span,
.about-more summary:focus-visible span,
.about-more[open] summary span {
  color: #fff;
  transform: translateX(0.22rem);
}

.about-more p {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: #606660;
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-more {
  display: inline-flex;
  gap: 1.35rem;
  min-height: 3.35rem;
  padding: 0.75rem 1rem 0.75rem 1.35rem;
  align-items: center;
  border: 1px solid #9cd5ed;
  border-radius: 999px;
  color: #1c5069;
  background: rgba(235, 246, 249, 0.72);
  font: inherit;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.about-more span {
  color: #337ea5;
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.about-more:hover,
.about-more:focus-visible {
  border-color: #337ea5;
  color: #fff;
  background: #337ea5;
}

.about-more:hover span,
.about-more:focus-visible span {
  color: #fff;
  transform: translateX(0.22rem);
}

.about-dialog {
  width: min(92vw, 62rem);
  max-height: min(84vh, 50rem);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1.15rem;
  color: var(--ink);
  background: #f8f6f0;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.about-dialog::backdrop {
  background: rgba(7, 12, 9, 0.74);
  backdrop-filter: blur(5px);
}

.about-dialog__panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.7rem);
}

.about-dialog__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  place-items: center;
  border: 1px solid #d5e3e7;
  border-radius: 50%;
  color: #1c5069;
  background: #fff;
  cursor: pointer;
}

.about-dialog__close svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.about-dialog__eyebrow {
  margin: 0 0 0.85rem;
  color: #337ea5;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-dialog h2 {
  max-width: 42rem;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.about-dialog h2 em,
.about-dialog__story em {
  color: #337ea5;
  font-style: normal;
}

.about-dialog__lead {
  max-width: 43rem;
  margin: 1.55rem 0 0;
  color: #46514c;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 500;
  line-height: 1.7;
}

.about-dialog__portrait {
  height: clamp(15rem, 28vw, 22rem);
  margin: 1.8rem 0 0;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #c9b3a2;
}

.about-dialog__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.about-dialog__story {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.about-dialog__story section {
  padding-top: 1.2rem;
  border-top: 2px solid #79c9f1;
}

.about-dialog__story h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
}

.about-dialog__story p {
  margin: 0 0 0.95rem;
  color: #606660;
  font-size: 0.9rem;
  line-height: 1.72;
}

@media (max-width: 640px) {
  .about-dialog { width: min(94vw, 34rem); max-height: 88vh; }
  .about-dialog__panel { padding: 4.3rem 1.35rem 1.6rem; }
  .about-dialog__close { top: 0.9rem; right: 0.9rem; }
  .about-dialog__story { grid-template-columns: 1fr; gap: 1.45rem; }
}

:root { --display-font: "Lora", Georgia, serif; }

h1,
h1 em,
.why-section__watermark,
.why-section__heading h2,
.quality h3,
.portfolio-section__header h2,
.portfolio-card__label,
.portfolio-section__cta,
.mobile-menu nav a,
.about-portrait figcaption strong,
.about-content h2,
.about-content blockquote {
  font-family: var(--display-font);
}

.about-content h2,
.about-content blockquote {
  color: #172117;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Dialogul folosește o compoziție editorială: povestea și portretul sunt în paralel. */
.about-dialog {
  width: min(95vw, 80rem);
  max-height: min(88vh, 54rem);
}

.about-dialog__panel {
  display: grid;
  padding: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.22fr) minmax(20rem, 0.78fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.about-dialog__copy {
  min-width: 0;
}

.about-dialog__portrait {
  height: auto;
  min-height: 100%;
  margin: 0;
  align-self: stretch;
}

.about-dialog__portrait img {
  object-position: center 48%;
}

.about-dialog__story {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (max-width: 800px) {
  .about-dialog { width: min(94vw, 38rem); max-height: 88vh; }
  .about-dialog__panel { grid-template-columns: 1fr; padding: 4.3rem 1.35rem 1.6rem; gap: 1.6rem; }
  .about-dialog__portrait { min-height: 22rem; order: -1; }
  .about-dialog__close { top: 0.9rem; right: 0.9rem; }
}

/* Prețurile continuă firesc după povestea lui George, printr-o galerie de pachete. */
.pricing-teaser {
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad);
  color: var(--ink);
  background: #fcfaf5;
}

.pricing-teaser::before {
  display: none;
}

.pricing-teaser > * {
  width: min(100%, 76rem);
  margin-right: auto;
  margin-left: auto;
}

.pricing-teaser__heading {
  display: grid;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.55fr);
  gap: clamp(2rem, 9vw, 10rem);
  align-items: end;
}

.pricing-teaser__heading > div > p {
  margin: 0 0 1rem;
  color: #337ea5;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-teaser h2 {
  max-width: 38rem;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.65vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
}

.pricing-teaser h2 em {
  color: #337ea5;
}

.pricing-teaser__heading > p {
  max-width: 25rem;
  margin: 0 0 0.35rem;
  color: #5e6962;
  font-size: 0.92rem;
  line-height: 1.72;
}

.pricing-teaser__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.3rem);
}

.pricing-teaser__card {
  position: relative;
  display: flex;
  min-height: clamp(25rem, 42vw, 34rem);
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  background: #65818f;
}

.pricing-teaser__card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pricing-teaser__card:nth-child(1) img { object-position: center; }
.pricing-teaser__card:nth-child(2) img { object-position: 56% center; }
.pricing-teaser__card:nth-child(3) img { object-position: 58% center; }

.pricing-teaser__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.03) 22%, rgba(10, 19, 15, 0.85) 100%);
  transition: background 280ms ease;
}

.pricing-teaser__card-copy {
  width: 100%;
  padding: clamp(1.25rem, 2.3vw, 2rem);
  color: #fff;
}

.pricing-teaser__card-copy span {
  display: block;
  margin-bottom: 0.65rem;
  color: #a8dcf2;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-teaser__card-copy h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.pricing-teaser__card-copy p {
  max-width: 18rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.62;
}

.pricing-teaser__card:hover img,
.pricing-teaser__card:focus-within img {
  transform: scale(1.055);
}

.pricing-teaser__card:hover .pricing-teaser__shade,
.pricing-teaser__card:focus-within .pricing-teaser__shade {
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.03) 10%, rgba(10, 19, 15, 0.92) 100%);
}

.pricing-teaser__link {
  display: flex;
  gap: 0.9rem;
  width: fit-content;
  margin-top: clamp(1.75rem, 3vw, 2.7rem);
  padding: 0 0 0.65rem;
  align-items: center;
  border-bottom-color: #337ea5;
  color: #1c5069;
}

.pricing-teaser__link svg {
  stroke: #337ea5;
}

@media (max-width: 760px) {
  .pricing-teaser__heading { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-teaser__heading > p { margin-bottom: 0; }
  .pricing-teaser__cards { gap: 0.8rem; grid-template-columns: repeat(3, minmax(14rem, 1fr)); overflow-x: auto; padding-bottom: 0.65rem; scroll-snap-type: x mandatory; scrollbar-color: #9ccce0 transparent; }
  .pricing-teaser__card { min-height: 24rem; scroll-snap-align: start; }
}

/* Ghidul de prețuri: carduri luminoase, inspirate de albumul foto. */
.pricing-teaser {
  overflow: hidden;
  padding: clamp(2.35rem, 4.5vw, 4.5rem) var(--page-pad) clamp(4.5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 7% 8%, rgba(103, 178, 228, 0.12) 0 0.12rem, transparent 0.15rem) 0 0 / 1.35rem 1.35rem,
    linear-gradient(180deg, #fafdff 0%, #f6f9fd 100%);
}

.pricing-teaser__heading {
  display: block;
  max-width: 59rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: clamp(2.5rem, 4.5vw, 4rem);
  text-align: center;
}

.pricing-teaser__heading > p:first-child {
  margin: 0 0 1.1rem;
  color: #1465d8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-teaser h2 {
  max-width: none;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.pricing-teaser h2 em {
  color: #1e67d4;
}

.pricing-teaser__heading > p:last-child {
  max-width: 39rem;
  margin: 1.1rem auto 0;
  color: #596273;
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  line-height: 1.65;
}

.pricing-teaser__cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.45vw, 1.45rem);
}

.pricing-teaser__card {
  display: grid;
  min-height: clamp(31rem, 41vw, 35rem);
  grid-template-rows: clamp(13rem, 18vw, 16.5rem) 1fr;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 0.7rem 1.7rem rgba(37, 57, 82, 0.08);
  isolation: auto;
}

.pricing-teaser__card img {
  position: relative;
  z-index: auto;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-teaser__card:nth-child(1) img { object-position: center; }
.pricing-teaser__card:nth-child(2) img { object-position: center 45%; }
.pricing-teaser__card:nth-child(3) img { object-position: center; }
.pricing-teaser__card:nth-child(4) img { object-position: 53% center; }
.pricing-teaser__card:nth-child(5) img { object-position: 58% center; }

.pricing-teaser__card-copy {
  display: flex;
  width: auto;
  padding: clamp(1.1rem, 1.55vw, 1.45rem);
  grid-row: 2;
  flex-direction: column;
  color: #1a2030;
}

.pricing-teaser__title {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.pricing-teaser__icon {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #1666dc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.pricing-teaser__card-copy h3 {
  margin: 0;
  color: #161c2b;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.pricing-teaser__card-copy .pricing-teaser__price {
  margin: 1rem 0 0;
  color: #5c6574;
  font-size: 0.8rem;
  line-height: 1;
}

.pricing-teaser__price strong {
  margin-left: 0.2rem;
  color: #1767d9;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
}

.pricing-teaser__card-copy i {
  display: block;
  width: 1.8rem;
  height: 1px;
  margin: 1.05rem 0 0;
  background: #1c6cdf;
}

.pricing-teaser__card-copy > p:not(.pricing-teaser__price) {
  margin: 1rem 0 0;
  color: #5a6371;
  font-size: 0.75rem;
  line-height: 1.65;
}

.pricing-teaser__card-copy a {
  display: inline-flex;
  gap: 0.72rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.35rem;
  align-items: center;
  color: #0761d9;
  font-size: 0.75rem;
  font-weight: 500;
}

.pricing-teaser__card-copy a span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.pricing-teaser__card-copy a:hover span,
.pricing-teaser__card-copy a:focus-visible span {
  transform: translateX(0.25rem);
}

.pricing-teaser__card:hover img {
  transform: scale(1.045);
}

.pricing-teaser__custom {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3.3rem);
  padding: clamp(1.2rem, 2.5vw, 1.85rem) clamp(1.3rem, 3.6vw, 3rem);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.3vw, 2.4rem);
  align-items: center;
  border: 1px solid #c7ddfa;
  border-radius: 0.85rem;
  background: linear-gradient(105deg, #eef5ff, #e5eefb);
}

.pricing-teaser__custom-icon {
  display: grid;
  width: clamp(3.6rem, 5vw, 5rem);
  height: clamp(3.6rem, 5vw, 5rem);
  place-items: center;
  border-radius: 50%;
  color: #1465d8;
  background: #fff;
  box-shadow: 0 0.45rem 1rem rgba(32, 81, 139, 0.12);
}

.pricing-teaser__custom-icon svg {
  width: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.pricing-teaser__custom h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.pricing-teaser__custom p {
  max-width: 37rem;
  margin: 0.35rem 0 0;
  color: #566273;
  font-size: 0.8rem;
  line-height: 1.6;
}

.pricing-teaser__custom > a {
  display: inline-flex;
  gap: 1rem;
  min-height: 3.3rem;
  padding: 0.7rem 1.35rem;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1767d9;
  box-shadow: 0 0.55rem 1.2rem rgba(23, 103, 217, 0.22);
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-teaser__custom > a:hover,
.pricing-teaser__custom > a:focus-visible {
  background: #0e57c0;
  transform: translateY(-0.12rem);
}

.pricing-teaser__custom > a span {
  font-size: 1.25rem;
}

@media (max-width: 1050px) {
  .pricing-teaser__cards { grid-template-columns: repeat(5, minmax(15rem, 1fr)); overflow-x: auto; padding: 0.15rem 0 0.9rem; scroll-snap-type: x mandatory; scrollbar-color: #a7c8ef transparent; }
  .pricing-teaser__card { min-height: 31rem; scroll-snap-align: start; }
}

@media (max-width: 680px) {
  .pricing-teaser__heading { text-align: left; }
  .pricing-teaser__heading > p:last-child { margin-right: 0; margin-left: 0; }
  .pricing-teaser__card { grid-template-rows: auto 1fr; }
  .pricing-teaser__card img { height: auto; object-fit: contain; }
  .pricing-teaser__custom { grid-template-columns: auto 1fr; }
  .pricing-teaser__custom > a { width: fit-content; grid-column: 1 / -1; }
}

/* Marcă discretă în fundal, extrasă din semnul vizual George's Vision. */
.pricing-teaser::before {
  position: absolute;
  z-index: 0;
  display: block;
  width: clamp(24rem, 36vw, 34rem);
  height: clamp(18rem, 29vw, 27rem);
  top: clamp(-0.5rem, 1vw, 1.5rem);
  left: clamp(-1.5rem, 2vw, 2rem);
  border: 0;
  border-radius: 0;
  content: "";
  background-image: url("logo_mare.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  filter: sepia(1) saturate(3) hue-rotate(167deg) brightness(1.35);
  opacity: 0.07;
  pointer-events: none;
}

.pricing-teaser::after {
  position: absolute;
  z-index: 0;
  top: clamp(2.8rem, 6vw, 5rem);
  right: clamp(1.25rem, 5vw, 5.5rem);
  width: 7.2rem;
  height: 4.3rem;
  content: "";
  background-image: radial-gradient(circle, rgba(23, 103, 217, 0.2) 0 0.1rem, transparent 0.13rem);
  background-size: 1.35rem 1.35rem;
  pointer-events: none;
}

@media (max-width: 680px) {
  .pricing-teaser::before { top: -1.5rem; left: -2.5rem; opacity: 0.055; }
  .pricing-teaser::after { top: 1.6rem; right: 0.25rem; transform: scale(0.75); transform-origin: top right; }
}

.pricing-faq {
  display: grid;
  margin-top: clamp(2.1rem, 4.5vw, 4rem);
  padding-top: clamp(2.2rem, 3.8vw, 3.4rem);
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 9rem);
  border-top: 1px solid #cfdded;
  scroll-margin-top: 6rem;
}

.pricing-faq header > p {
  margin: 0 0 0.9rem;
  color: #1465d8;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pricing-faq h2 {
  margin: 0;
  color: #172117;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 3.65vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.pricing-faq h2 em {
  color: #1767d9;
  font-style: normal;
}

.pricing-faq__list {
  border-top: 1px solid #cddded;
}

.pricing-faq__list details {
  border-bottom: 1px solid #cddded;
}

.pricing-faq__list summary {
  display: flex;
  padding: 1.2rem 0;
  align-items: center;
  justify-content: space-between;
  color: #202a36;
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.pricing-faq__list summary::-webkit-details-marker {
  display: none;
}

.pricing-faq__list summary span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-left: 1rem;
}

.pricing-faq__list summary span::before,
.pricing-faq__list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  content: "";
  background: #1767d9;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.pricing-faq__list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pricing-faq__list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.pricing-faq__list details p {
  max-width: 42rem;
  margin: 0;
  padding: 0 2rem 1.35rem 0;
  color: #5a6573;
  font-size: 0.92rem;
  line-height: 1.72;
}

@media (max-width: 760px) {
  .pricing-faq { grid-template-columns: 1fr; gap: 2rem; }
}

/* FAQ-ul este împărțit în etape, pentru a rămâne ușor de parcurs și cu răspunsuri lungi. */
.pricing-faq__list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 0;
}

.pricing-faq__group {
  position: relative;
  padding-top: 0.15rem;
}

.pricing-faq__group:not(:first-child) {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid #cddded;
}

.pricing-faq__group > header {
  display: grid;
  margin-bottom: 1.15rem;
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  align-items: center;
}

.pricing-faq__group > header span {
  display: grid;
  width: 2rem;
  height: 2rem;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  color: #1767d9;
  background: #e8f1ff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-faq__group h3 {
  margin: 0;
  color: #182330;
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.pricing-faq__group > header p {
  margin: 0.18rem 0 0;
  color: #687485;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.pricing-faq__group details:first-of-type {
  border-top: 1px solid #cddded;
}

.pricing-faq__list details[open] {
  background: linear-gradient(90deg, rgba(234, 243, 255, 0.68), transparent 78%);
}

.pricing-faq__list details[open] summary {
  padding-right: 1rem;
  padding-left: 1rem;
}

.pricing-faq__list details[open] p {
  padding-left: 1rem;
}

.pricing-faq__list details p + p {
  margin-top: -0.45rem;
}

@media (max-width: 500px) {
  .pricing-faq__group > header { margin-bottom: 0.9rem; }
  .pricing-faq__list details[open] summary,
  .pricing-faq__list details[open] p { padding-left: 0.65rem; }
}

/* Imaginea editorială umple firesc spațiul de lângă acordeonul extins. */
.pricing-faq__list {
  display: block;
  border-top: 1px solid #cddded;
}

.pricing-faq__intro {
  position: sticky;
  top: 6.7rem;
  align-self: start;
}

.pricing-faq__visual {
  position: relative;
  height: clamp(17rem, 29vw, 24rem);
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #8ea6ae;
}

.pricing-faq__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(8, 21, 20, 0.7));
}

.pricing-faq__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pricing-faq__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .pricing-faq__intro { position: static; }
}

.pricing-detail-button {
  display: inline-flex;
  gap: 0.72rem;
  width: fit-content;
  margin-top: auto;
  padding: 1.35rem 0 0;
  align-items: center;
  border: 0;
  color: #0761d9;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
}

.pricing-detail-button span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.pricing-detail-button:hover span,
.pricing-detail-button:focus-visible span {
  transform: translateX(0.25rem);
}

.pricing-dialog {
  width: min(92vw, 58rem);
  max-height: min(88vh, 45rem);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1rem;
  color: #172117;
  background: #fbfaf5;
  box-shadow: 0 2rem 5rem rgba(7, 27, 38, 0.3);
}

.pricing-dialog::backdrop {
  background: rgba(8, 20, 20, 0.7);
  backdrop-filter: blur(5px);
}

.pricing-dialog__panel {
  display: grid;
  min-height: min(42rem, 82vh);
  grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1fr);
}

.pricing-dialog__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: calc(39% - 1.5rem);
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 30, 28, 0.34);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.pricing-dialog__close svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.pricing-dialog__image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #8ea6ae;
}

.pricing-dialog__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-dialog__copy {
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  flex-direction: column;
  justify-content: center;
}

.pricing-dialog__eyebrow {
  margin: 0 0 0.85rem;
  color: #1767d9;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-dialog h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-dialog__price {
  margin: 0.85rem 0 0;
  color: #66717d;
  font-size: 0.9rem;
}

.pricing-dialog__price strong {
  margin-left: 0.25rem;
  color: #1767d9;
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
}

.pricing-dialog__lead {
  margin: 1.4rem 0 0;
  color: #4f5d59;
  font-size: 0.92rem;
  line-height: 1.68;
}

.pricing-dialog ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid #d6e2e4;
  list-style: none;
}

.pricing-dialog li {
  color: #40514a;
  font-size: 0.8rem;
  line-height: 1.45;
}

.pricing-dialog li::before {
  margin-right: 0.6rem;
  color: #1767d9;
  content: "✦";
}

.pricing-dialog__copy > a {
  display: inline-flex;
  gap: 0.9rem;
  width: fit-content;
  margin-top: 1.8rem;
  padding: 0.9rem 1.2rem;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1767d9;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-dialog__copy > a:hover,
.pricing-dialog__copy > a:focus-visible {
  background: #0e57c0;
  transform: translateY(-0.12rem);
}

.pricing-dialog__copy > a span { font-size: 1.2rem; }

@media (max-width: 680px) {
  .pricing-dialog { width: min(94vw, 32rem); max-height: 90vh; }
  .pricing-dialog__panel { min-height: 0; grid-template-columns: 1fr; }
  .pricing-dialog__image { min-height: 0; max-height: none; }
  .pricing-dialog__image img { height: auto; object-fit: contain; }
  .pricing-dialog__close { top: 0.85rem; right: 0.85rem; left: auto; }
  .pricing-dialog__copy { padding: 1.8rem 1.35rem 2rem; }
}

/* Ritm de pagină: secțiunile se continuă ca un album, nu ca blocuri separate. */
.portfolio-section,
.about-section,
.pricing-teaser {
  margin-top: clamp(-1.7rem, -2.2vw, -1.05rem);
  border-radius: clamp(1.4rem, 2.7vw, 2.8rem) clamp(1.4rem, 2.7vw, 2.8rem) 0 0;
  box-shadow: 0 -1.1rem 2.7rem rgba(25, 42, 39, 0.045);
}

.portfolio-section {
  z-index: 1;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 169, 237, 0.1) 0 0.12rem, transparent 0.15rem) 0 0 / 1.35rem 1.35rem,
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88), transparent 47%),
    #f3eee6;
}

.portfolio-section::after {
  position: absolute;
  z-index: 0;
  right: clamp(1.5rem, 7vw, 8rem);
  bottom: clamp(2rem, 4vw, 4rem);
  width: clamp(7rem, 13vw, 12rem);
  height: clamp(7rem, 13vw, 12rem);
  border: 1px solid rgba(51, 126, 165, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 1.2rem rgba(51, 126, 165, 0.035), 0 0 0 2.4rem rgba(51, 126, 165, 0.02);
  pointer-events: none;
}

.portfolio-section__header,
.portfolio-grid,
.portfolio-section__hint {
  position: relative;
  z-index: 1;
}

.about-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 42%),
    #f7f4ed;
}

.about-section::before {
  position: absolute;
  z-index: 0;
  top: clamp(-11rem, -12vw, -5rem);
  right: clamp(-10rem, -8vw, -4rem);
  width: clamp(19rem, 34vw, 34rem);
  height: clamp(19rem, 34vw, 34rem);
  border: 1px solid rgba(38, 169, 237, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 3.8rem rgba(38, 169, 237, 0.035), 0 0 0 7.6rem rgba(38, 169, 237, 0.018);
}

.about-section::after {
  position: absolute;
  z-index: 0;
  right: clamp(1.25rem, 4vw, 5rem);
  bottom: clamp(2.4rem, 6vw, 6.5rem);
  width: 6.5rem;
  height: 4.2rem;
  content: "";
  background-image: radial-gradient(circle, rgba(23, 103, 217, 0.19) 0 0.1rem, transparent 0.13rem);
  background-size: 1.25rem 1.25rem;
}

.about-section__inner {
  position: relative;
  z-index: 1;
}

.pricing-teaser {
  position: relative;
  z-index: 3;
  box-shadow: 0 -1.1rem 3rem rgba(26, 57, 76, 0.07);
}

.pricing-teaser__custom {
  position: relative;
  overflow: hidden;
}

.pricing-teaser__custom::after {
  position: absolute;
  top: -4.5rem;
  right: 16%;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(23, 103, 217, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pricing-teaser__custom > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .portfolio-section,
  .about-section,
  .pricing-teaser {
    margin-top: -0.8rem;
    border-radius: 1.35rem 1.35rem 0 0;
  }

  .portfolio-section::after { display: none; }
  .about-section::after { right: 0.75rem; bottom: 1.7rem; opacity: 0.7; }
}

/* Repertoriu decorativ: camere, linii și cercuri în aceeași familie vizuală. */
.page-deco {
  position: absolute;
  z-index: 0;
  display: block;
  width: clamp(4.5rem, 8vw, 7rem);
  height: clamp(4.5rem, 8vw, 7rem);
  border: 1px solid rgba(23, 103, 217, 0.19);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231767d9' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 16h8l3-5h12l3 5h8v25H7z'/%3E%3Ccircle cx='24' cy='28' r='8'/%3E%3Cpath d='M35 21h2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58%;
  box-shadow: 0 0 0 0.9rem rgba(23, 103, 217, 0.035), 0 0 0 1.8rem rgba(23, 103, 217, 0.018);
  opacity: 0.72;
  pointer-events: none;
}

.page-deco::before {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  top: 50%;
  left: calc(100% + 1.25rem);
  border-radius: 50%;
  content: "";
  background: #1767d9;
  box-shadow: 1.15rem -1.15rem 0 -0.03rem rgba(23, 103, 217, 0.7), 2.3rem -2.3rem 0 -0.1rem rgba(23, 103, 217, 0.46);
}

.page-deco::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.3rem);
  width: clamp(3.5rem, 7vw, 6.5rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(23, 103, 217, 0.6), transparent);
}

.page-deco--why {
  top: clamp(4rem, 9vw, 8rem);
  right: clamp(3rem, 11vw, 12rem);
  transform: rotate(-12deg);
}

.page-deco--portfolio {
  top: clamp(4rem, 7vw, 7rem);
  left: clamp(2rem, 7vw, 8rem);
  transform: rotate(9deg);
}

.page-deco--about {
  right: clamp(2.5rem, 8vw, 9rem);
  bottom: clamp(4rem, 9vw, 9rem);
  transform: rotate(-8deg);
}

.page-deco--pricing {
  right: clamp(2.5rem, 8vw, 9rem);
  bottom: clamp(7rem, 13vw, 13rem);
  transform: rotate(12deg);
}

.page-deco--why-strip,
.page-deco--portfolio-strip,
.page-deco--pricing-strip {
  width: clamp(9rem, 17vw, 15rem);
  height: 2rem;
  border: 0;
  border-radius: 0;
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 2rem 2rem;
  box-shadow: none;
  opacity: 0.3;
}

.page-deco--why-strip::before,
.page-deco--why-strip::after,
.page-deco--portfolio-strip::before,
.page-deco--portfolio-strip::after,
.page-deco--pricing-strip::before,
.page-deco--pricing-strip::after {
  display: none;
}

.page-deco--why-strip {
  right: clamp(2rem, 8vw, 8rem);
  bottom: 2.2rem;
}

.page-deco--portfolio-strip {
  right: clamp(2rem, 7vw, 8rem);
  top: 2.8rem;
}

.page-deco--pricing-strip {
  left: clamp(2rem, 7vw, 8rem);
  bottom: 2.5rem;
}

.why-section__header,
.qualities {
  position: relative;
  z-index: 1;
}

.about-section > .page-deco { z-index: 0; }
.pricing-teaser > .page-deco { z-index: 0; }

@media (max-width: 760px) {
  .page-deco { width: 4.2rem; height: 4.2rem; opacity: 0.52; }
  .page-deco::before { display: none; }
  .page-deco::after { width: 2.7rem; }
  .page-deco--why { top: 2.4rem; right: 1.2rem; }
  .page-deco--portfolio { top: 2rem; left: 1rem; }
  .page-deco--about { right: 1.1rem; bottom: 3rem; }
  .page-deco--pricing { right: 1rem; bottom: 6.5rem; }
  .page-deco--why-strip,
  .page-deco--portfolio-strip,
  .page-deco--pricing-strip { display: none; }
}

/* Ornamente aliniate la titluri: aceeași semnătură vizuală, fără elemente risipite. */
.why-section__heading,
.about-content {
  position: relative;
  padding-top: 2.9rem;
}

.why-section__heading::before,
.about-content::before,
.portfolio-section__header::before {
  display: block;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231767d9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 16h8l3-5h12l3 5h8v25H7z'/%3E%3Ccircle cx='24' cy='28' r='8'/%3E%3Cpath d='M35 21h2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.why-section__heading::before,
.about-content::before {
  position: absolute;
  top: 0;
  left: 0;
}

.why-section__heading::after,
.about-content::after {
  position: absolute;
  top: 0.98rem;
  left: 2.8rem;
  width: clamp(5rem, 10vw, 9rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(23, 103, 217, 0.78), rgba(23, 103, 217, 0.08));
}

.portfolio-section__header::before {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
}

.pricing-teaser__heading > p:first-child,
.pricing-faq__intro header > p {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.pricing-teaser__heading > p:first-child::before,
.pricing-faq__intro header > p::before {
  display: inline-block;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%231767d9' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 16h8l3-5h12l3 5h8v25H7z'/%3E%3Ccircle cx='24' cy='28' r='8'/%3E%3Cpath d='M35 21h2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pricing-teaser__heading > p:first-child::after,
.pricing-faq__intro header > p::after {
  width: 2.8rem;
  height: 1px;
  content: "";
  background: rgba(23, 103, 217, 0.48);
}

@media (max-width: 760px) {
  .why-section__heading,
  .about-content { padding-top: 2.55rem; }
  .why-section__heading::after,
  .about-content::after { width: 4.6rem; }
  .portfolio-section__header::before { margin-bottom: 0.5rem; }
}

/* Punte discretă între secțiuni: linie, cameră, linie. */
.section-connector {
  position: relative;
  z-index: 8;
  display: grid;
  width: min(22rem, 46vw);
  height: 0;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: center;
  justify-items: stretch;
  pointer-events: none;
  transform: translateY(-0.7rem);
}

.section-connector > span {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 103, 217, 0.44));
}

.section-connector > span:last-child {
  background: linear-gradient(90deg, rgba(23, 103, 217, 0.44), transparent);
}

.section-connector > span::after {
  position: absolute;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  content: "";
  background: #1767d9;
  transform: translateY(-50%);
}

.section-connector > span:first-child::after { right: 0; }
.section-connector > span:last-child::after { left: 0; }

.section-connector svg {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0.62rem;
  border: 1px solid rgba(23, 103, 217, 0.34);
  border-radius: 50%;
  fill: none;
  stroke: #1767d9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.45rem 1.15rem rgba(33, 84, 118, 0.14);
}

@media (max-width: 760px) {
  .section-connector { width: min(14rem, 64vw); gap: 0.6rem; transform: translateY(-0.5rem); }
  .section-connector svg { width: 2.35rem; height: 2.35rem; padding: 0.54rem; }
}

/* Spațiere mai compactă: secțiunile rămân aerisite, dar fără goluri între ele. */
.why-section {
  padding-bottom: clamp(3rem, 4vw, 4rem);
}

.portfolio-section {
  padding-top: clamp(3rem, 4.6vw, 4.3rem);
  padding-bottom: clamp(3.25rem, 4.8vw, 4.5rem);
}

.about-section {
  padding-top: clamp(3.4rem, 5vw, 5rem);
  padding-bottom: clamp(3.5rem, 5.2vw, 5.3rem);
}

.pricing-teaser {
  padding-top: clamp(2.25rem, 3.8vw, 3.7rem);
  padding-bottom: clamp(3.25rem, 5.3vw, 5.5rem);
}

@media (max-width: 760px) {
  .why-section { padding-bottom: 3rem; }
  .portfolio-section { padding-top: 2.8rem; padding-bottom: 3.2rem; }
  .about-section { padding-top: 3rem; padding-bottom: 3.4rem; }
  .pricing-teaser { padding-top: 2rem; padding-bottom: 3.25rem; }
}

.contact-section {
  position: relative;
  z-index: 4;
  margin-top: -1rem;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad) 1.6rem;
  overflow: hidden;
  color: #f7f5ee;
  background: #15231c;
  isolation: isolate;
}

.contact-section::before {
  position: absolute;
  z-index: -1;
  width: clamp(20rem, 38vw, 38rem);
  height: clamp(20rem, 38vw, 38rem);
  top: -45%;
  left: -12%;
  border: 1px solid rgba(121, 201, 241, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4rem rgba(121, 201, 241, 0.028), 0 0 0 8rem rgba(121, 201, 241, 0.016);
}

.contact-section::after {
  position: absolute;
  z-index: -1;
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: 8rem;
  width: 7rem;
  height: 5rem;
  content: "";
  background-image: radial-gradient(circle, rgba(121, 201, 241, 0.48) 0 0.1rem, transparent 0.13rem);
  background-size: 1.35rem 1.35rem;
}

.contact-section__inner {
  display: grid;
  width: min(100%, 76rem);
  margin: 0 auto;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(23rem, 1fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: start;
}

.contact-section__eyebrow {
  display: inline-flex;
  gap: 0.65rem;
  margin: 0 0 1rem;
  align-items: center;
  color: #8fd1f2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-section__eyebrow::before {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: #79c9f1;
}

.contact-section h2 {
  max-width: 34rem;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.55rem, 4.6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.contact-section h2 em {
  color: #8fd1f2;
  font-style: normal;
}

.contact-section__lead {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.94rem;
  line-height: 1.72;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.contact-details > a {
  display: flex;
  gap: 0.9rem;
  width: fit-content;
  align-items: center;
  color: #fff;
}

.contact-details__icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(121, 201, 241, 0.36);
  border-radius: 50%;
  color: #8fd1f2;
}

.contact-details__icon svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 500;
}

.contact-socials {
  display: flex;
  margin-top: 2.1rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-socials a {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.58rem 0.78rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.67rem;
  font-weight: 500;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  border-color: #8fd1f2;
  color: #17231d;
  background: #8fd1f2;
}

.contact-socials svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-form {
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  border-radius: 1rem;
  color: #17231d;
  background: #fcfaf5;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.16);
}

.contact-form__heading {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
  align-items: center;
}

.contact-form__heading span {
  color: #1767d9;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-form__heading p {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.48rem;
  color: #59675f;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.82rem 0;
  border: 0;
  border-bottom: 1px solid #ccd9d3;
  border-radius: 0;
  outline: 0;
  color: #1a2921;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa69f; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #1767d9; }
.contact-form__message { grid-column: 1 / -1; }

.contact-form__footer {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.8rem;
  align-items: center;
  justify-content: space-between;
}

.contact-form__footer p {
  max-width: 14rem;
  margin: 0;
  color: #79867f;
  font-size: 0.66rem;
  line-height: 1.5;
}

.contact-form button {
  display: inline-flex;
  gap: 0.85rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.15rem;
  flex: 0 0 auto;
  align-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1767d9;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible { background: #0d55bb; transform: translateY(-0.12rem); }
.contact-form button span { font-size: 1.15rem; }

.contact-footer {
  display: flex;
  width: min(100%, 76rem);
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
  padding-top: 1.35rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .contact-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section__lead { max-width: 39rem; }
}

@media (max-width: 560px) {
  .contact-section { margin-top: -0.75rem; padding-top: 3.4rem; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__footer { align-items: flex-start; flex-direction: column; }
  .contact-footer { gap: 0.7rem; flex-direction: column; line-height: 1.5; }
}

/* Finalul paginii preia ușor secțiunea de prețuri și se deschide într-un cadru fotografic. */
.contact-section {
  margin-top: clamp(-2rem, -2.8vw, -1.25rem);
  padding-top: clamp(4.7rem, 8vw, 7.8rem);
  border-radius: clamp(1.8rem, 3vw, 3.2rem) clamp(1.8rem, 3vw, 3.2rem) 0 0;
  box-shadow: 0 -1.4rem 3.5rem rgba(19, 49, 42, 0.13);
  background:
    radial-gradient(circle at 87% 13%, rgba(121, 201, 241, 0.16) 0 0.11rem, transparent 0.14rem) 0 0 / 1.4rem 1.4rem,
    radial-gradient(ellipse at 18% 0%, rgba(47, 123, 151, 0.36), transparent 42%),
    linear-gradient(135deg, #102019 0%, #152b23 48%, #102019 100%);
}

.contact-section::before,
.contact-section::after { z-index: 0; }

.contact-section__inner,
.contact-footer { position: relative; z-index: 1; }

.contact-section__visual {
  position: relative;
  height: clamp(12rem, 20vw, 16rem);
  max-width: 27rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(143, 209, 242, 0.35);
  border-radius: 0.85rem;
  background: #6f8b89;
  box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.18);
}

.contact-section__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 22, 16, 0.16), rgba(7, 22, 16, 0.68));
}

.contact-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.contact-section__visual:hover img { transform: scale(1.045); }

.contact-section__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.95rem;
  left: 1rem;
  max-width: 15rem;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.25;
}

.contact-form__footer {
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .contact-section { margin-top: -0.85rem; padding-top: 4rem; }
  .contact-section__visual { height: 13rem; max-width: none; }
  .contact-form__footer { flex-direction: row; justify-content: flex-start; }
}

/* Contact: compoziție clară cu detalii, imagine și formular. */
.contact-section {
  background:
    radial-gradient(ellipse at 4% 8%, rgba(49, 121, 140, 0.32), transparent 36%),
    linear-gradient(135deg, #0d1c16 0%, #173128 50%, #0d1c16 100%);
}

.contact-section::before {
  width: clamp(26rem, 43vw, 43rem);
  height: clamp(21rem, 35vw, 35rem);
  top: clamp(-5rem, -7vw, -2rem);
  right: clamp(-12rem, -9vw, -4rem);
  left: auto;
  border: 0;
  border-radius: 0;
  background-image: url("logo_mare.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  filter: sepia(1) saturate(2.8) hue-rotate(167deg) brightness(1.25);
  opacity: 0.075;
}

.contact-section::after { display: none; }

.contact-section__inner {
  grid-template-columns: minmax(14rem, 0.8fr) minmax(11rem, 0.45fr) minmax(23rem, 1fr);
  gap: clamp(1.4rem, 4vw, 4.7rem);
}

.contact-section__visual {
  width: 100%;
  height: auto;
  min-height: clamp(27rem, 40vw, 36rem);
  max-width: none;
  margin: 0;
  align-self: stretch;
  border-radius: 1rem;
}

.contact-section__visual::after {
  background: linear-gradient(180deg, rgba(7, 22, 16, 0.06), rgba(7, 22, 16, 0.76));
}

.contact-section__visual figcaption {
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
}

@media (max-width: 980px) {
  .contact-section__inner { grid-template-columns: minmax(14rem, 0.75fr) minmax(21rem, 1fr); }
  .contact-section__visual { min-height: 22rem; grid-column: 1; grid-row: 2; }
  .contact-form { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 820px) {
  .contact-section__inner { grid-template-columns: 1fr; gap: 2.3rem; }
  .contact-section__visual { height: clamp(17rem, 60vw, 23rem); min-height: 0; grid-column: auto; grid-row: auto; }
  .contact-form { grid-column: auto; grid-row: auto; }
}

/* Variantă bleumarin: formularul rămâne central, iar portretul închide compoziția la dreapta. */
.contact-section {
  background:
    radial-gradient(ellipse at 8% 12%, rgba(67, 120, 181, 0.25), transparent 38%),
    radial-gradient(ellipse at 92% 88%, rgba(27, 89, 143, 0.18), transparent 42%),
    linear-gradient(135deg, #10151d 0%, #172537 54%, #10151d 100%);
}

.contact-section::before { display: none; }

.contact-section__inner {
  grid-template-columns: minmax(12rem, 0.65fr) minmax(22rem, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.2rem, 3.1vw, 3.6rem);
}

.contact-section__visual {
  min-height: clamp(33rem, 46vw, 42rem);
  border-color: rgba(143, 209, 242, 0.42);
  box-shadow: 0 1.5rem 3.2rem rgba(0, 0, 0, 0.25);
}

.contact-section__visual img {
  object-position: center 52%;
}

.contact-section__visual::after {
  background: linear-gradient(180deg, rgba(10, 17, 27, 0.02), rgba(10, 17, 27, 0.72));
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: #111925;
  background: #9bd9fb;
}

@media (max-width: 980px) {
  .contact-section__inner { grid-template-columns: minmax(13rem, 0.7fr) minmax(22rem, 1fr); }
  .contact-form { grid-column: 2; grid-row: 1; }
  .contact-section__visual { height: clamp(17rem, 42vw, 25rem); min-height: 0; grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 820px) {
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-form,
  .contact-section__visual { grid-column: auto; grid-row: auto; }
}

/* Contact inspirat de o carte poștală: fotografie, detalii, formular. */
.contact-section {
  margin-top: 0;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--page-pad);
  border-radius: 0;
  color: #192239;
  background: #f5f6fa;
  box-shadow: none;
}

.contact-section::before,
.contact-section::after { display: none !important; }

.contact-section__inner {
  display: grid;
  width: min(100%, 96rem);
  min-height: clamp(39rem, 53vw, 49rem);
  padding: clamp(1.35rem, 2vw, 2rem);
  grid-template-columns: minmax(14rem, 0.82fr) minmax(16rem, 0.93fr) minmax(22rem, 1.05fr);
  gap: clamp(1.4rem, 2.8vw, 2.8rem);
  border: 1px solid #dfe3eb;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.1rem 3.5rem rgba(41, 57, 86, 0.11);
}

.contact-section__visual {
  height: auto;
  min-height: 100%;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  border: 0;
  border-radius: 1rem;
  box-shadow: none;
}

.contact-section__visual::after {
  background: linear-gradient(180deg, transparent 46%, rgba(12, 20, 31, 0.56));
}

.contact-section__visual img {
  object-position: center 45%;
}

.contact-section__visual figcaption {
  display: none;
}

.contact-section__intro {
  display: flex;
  min-width: 0;
  padding: clamp(1.3rem, 2.1vw, 2.2rem) 0;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
}

.contact-section__eyebrow {
  gap: 0.8rem;
  margin-bottom: 1.55rem;
  color: #1767d9;
  font-size: 0.69rem;
}

.contact-section__eyebrow::before {
  width: 2.4rem;
  background: #1767d9;
}

.contact-section h2 {
  max-width: 25rem;
  color: #18233a;
  font-size: clamp(2.25rem, 3.25vw, 3.65rem);
  font-weight: 500;
  line-height: 1.06;
}

.contact-section h2 em { color: #18233a; }

.contact-section__lead {
  max-width: 25rem;
  margin-top: 1.35rem;
  color: #738097;
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-details {
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.contact-details > a,
.contact-details__item {
  display: flex;
  gap: 0.78rem;
  width: 100%;
  padding: 0.78rem 0.85rem;
  align-items: center;
  border: 1px solid #edf0f5;
  border-radius: 0.78rem;
  color: #1b2740;
  background: #fff;
  box-shadow: 0 0.45rem 1.1rem rgba(36, 56, 86, 0.055);
}

.contact-details__icon {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0.65rem;
  color: #1767d9;
  background: #edf4ff;
}

.contact-details small {
  color: #1d2a41;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-details strong {
  color: #1767d9;
  font-family: "DM Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
}

.contact-brand {
  display: flex;
  max-width: 18rem;
  gap: 0.75rem;
  margin: auto auto 0;
  padding-top: 1.8rem;
  align-items: center;
}

.contact-brand span {
  height: 1px;
  flex: 1;
  background: #78a3ec;
}

.contact-brand img {
  display: block;
  width: 6.6rem;
  height: auto;
}

.contact-form {
  display: flex;
  padding: clamp(1.3rem, 2.1vw, 2.2rem) 0;
  grid-column: 3;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
  color: #1c263e;
  background: transparent;
  box-shadow: none;
}

.contact-form__heading { display: none; }

.contact-form__grid {
  gap: 1rem;
}

.contact-form label {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 4.9rem;
  padding: 0 1rem;
  border: 1px solid #d8deea;
  border-radius: 0.75rem;
  color: #1d2942;
  background: #fff;
  font-size: 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select { appearance: auto; }

.contact-form textarea {
  min-height: 10rem;
  padding-top: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1767d9;
  box-shadow: 0 0 0 3px rgba(23, 103, 217, 0.1);
}

.contact-form__guests { grid-column: 1 / -1; }

.contact-form__footer {
  display: grid;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form button,
.contact-form__footer > a {
  display: inline-flex;
  width: 100%;
  min-height: 3.9rem;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #1767d9;
  border-radius: 0.75rem;
  color: #1767d9;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-form button {
  color: #fff;
  background: #1767d9;
}

.contact-form button:hover,
.contact-form button:focus-visible { background: #105bc9; transform: none; }
.contact-form__footer > a:hover,
.contact-form__footer > a:focus-visible { color: #fff; background: #1767d9; }

.contact-footer { display: none; }

@media (max-width: 1060px) {
  .contact-section__inner {
    min-height: 0;
    grid-template-columns: minmax(13rem, 0.72fr) minmax(20rem, 1fr);
  }
  .contact-section__visual { min-height: 30rem; grid-column: 1; grid-row: 1; }
  .contact-section__intro { grid-column: 2; grid-row: 1; }
  .contact-form { padding-top: 0; grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  .contact-section { padding: 1.25rem; }
  .contact-section__inner { padding: 1rem; grid-template-columns: 1fr; border-radius: 1rem; }
  .contact-section__visual { min-height: 20rem; grid-column: 1; grid-row: 1; }
  .contact-section__intro { padding: 1.3rem 0; grid-column: 1; grid-row: 2; }
  .contact-form { padding: 0 0 1.3rem; grid-column: 1; grid-row: 3; }
  .contact-brand { margin-top: 2rem; }
  .contact-form__grid,
  .contact-form__footer { grid-template-columns: 1fr; }
}

.mobile-menu nav a.is-active {
  color: #8fd1f2;
}

.mobile-menu nav a.is-active span {
  color: #79c9f1;
}

/* Detalii mai lizibile și o fotografie tăiată curat în interiorul cardului. */
.contact-section__inner {
  overflow: hidden;
  background: #fff;
}

.contact-section__visual {
  padding: 2px;
  overflow: hidden;
  background: #fff;
}

.contact-section__visual img {
  border-radius: calc(1rem - 2px);
}

.contact-details > a,
.contact-details__item {
  padding: 0.9rem 0.95rem;
}

.contact-details small {
  margin-bottom: 0.22rem;
  font-size: 0.78rem;
}

.contact-details strong {
  font-size: clamp(0.88rem, 1vw, 1rem);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-field-label {
  color: #53617a;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  min-height: 4.1rem;
}

.contact-form textarea {
  min-height: 8.5rem;
}

/* Watermark-uri discrete, decupate din wordmark-ul transparent al brandului. */
.portfolio-section__header::after,
.about-section__inner::after,
.pricing-teaser__heading::after,
.contact-section__inner::after {
  position: absolute;
  z-index: 0;
  content: "";
  background: #1767d9;
  -webkit-mask: url("logo.png") center / contain no-repeat;
  mask: url("logo.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.portfolio-section__header::after {
  top: -2.7rem;
  right: clamp(-4rem, -5vw, -2rem);
  width: clamp(10rem, 16vw, 15rem);
  height: 4rem;
}

.portfolio-section__header > * { position: relative; z-index: 1; }

.pricing-teaser__heading,
.contact-section__inner { position: relative; }

.about-section__inner::after {
  right: clamp(-2rem, -4vw, -1rem);
  bottom: 1rem;
  width: clamp(10rem, 17vw, 15rem);
  height: 4rem;
}

.about-portrait,
.about-content { position: relative; z-index: 1; }

.pricing-teaser__heading::after {
  right: clamp(-3rem, -4vw, -1rem);
  bottom: -1.2rem;
  width: clamp(9rem, 15vw, 14rem);
  height: 3.6rem;
}

.pricing-teaser__heading > * { position: relative; z-index: 1; }

.contact-section__inner::after {
  right: clamp(1rem, 3vw, 3rem);
  bottom: 1.4rem;
  width: clamp(8rem, 13vw, 12rem);
  height: 3.2rem;
  opacity: 0.055;
}

.contact-section__intro,
.contact-section__visual,
.contact-form { position: relative; z-index: 1; }

.pricing-dialog__close {
  top: 1rem;
  right: 1rem;
  left: auto;
  border-color: #d5e0e4;
  color: #1c5069;
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 760px) {
  .portfolio-section__header::after,
  .about-section__inner::after,
  .pricing-teaser__heading::after { opacity: 0.045; }
  .contact-section__inner::after { width: 7rem; right: 0.75rem; }
}

/* Finisaj final: o singură pânză caldă, secțiuni suprapuse discret și mișcare calmă. */
:root {
  --surface-canvas: #f7f5ef;
  --surface-card: #fffefa;
  --surface-line: rgba(30, 62, 72, 0.12);
  --section-radius: clamp(1.5rem, 2.6vw, 2.7rem);
}

html { scroll-padding-top: 5.8rem; }

body {
  overflow-x: clip;
  background: var(--surface-canvas);
}

main { position: relative; overflow: clip; background: var(--surface-canvas); }

.why-section,
.portfolio-section,
.about-section,
.pricing-teaser,
.contact-section {
  position: relative;
  z-index: 1;
  margin-top: clamp(-1.25rem, -1.7vw, -0.75rem);
  overflow: hidden;
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  box-shadow: 0 -1rem 2.8rem rgba(36, 64, 67, 0.055);
  scroll-margin-top: 0.5rem;
}

.why-section {
  background:
    radial-gradient(ellipse at 88% 4%, rgba(38, 169, 237, 0.075), transparent 30%),
    linear-gradient(180deg, #faf8f3 0%, var(--surface-canvas) 100%);
}

.portfolio-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(38, 169, 237, 0.055) 0 0.1rem, transparent 0.13rem) 0 0 / 1.65rem 1.65rem,
    radial-gradient(ellipse at 86% 45%, rgba(115, 196, 235, 0.07), transparent 34%),
    var(--surface-canvas);
}

.about-section {
  background:
    radial-gradient(ellipse at 6% 88%, rgba(38, 169, 237, 0.08), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 48%),
    var(--surface-canvas);
}

.pricing-teaser {
  background:
    radial-gradient(circle at 92% 8%, rgba(23, 103, 217, 0.045) 0 0.1rem, transparent 0.13rem) 0 0 / 1.55rem 1.55rem,
    radial-gradient(ellipse at 12% 52%, rgba(121, 201, 241, 0.08), transparent 34%),
    var(--surface-canvas);
}

.contact-section {
  background:
    radial-gradient(ellipse at 93% 3%, rgba(38, 169, 237, 0.085), transparent 32%),
    linear-gradient(180deg, #f8f7f2, var(--surface-canvas));
}

.quality h3 { white-space: pre-line; }

.has-reveal-motion .scroll-reveal {
  opacity: 0;
  translate: 0 1.15rem;
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    translate 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.has-reveal-motion .scroll-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(38, 169, 237, 0.34);
  outline-offset: 4px;
}

.portfolio-grid,
.pricing-teaser__cards {
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.portfolio-card,
.pricing-teaser__card { scroll-snap-align: start; }

@media (hover: none) {
  .button:active,
  .portfolio-section__cta:active,
  .pricing-detail-button:active,
  .contact-form button:active { transform: scale(0.98); }
}

@media (max-width: 720px) {
  :root { --section-radius: 1.4rem; }

  html { scroll-padding-top: 5rem; }

  .site-header {
    height: calc(4.75rem + env(safe-area-inset-top));
    padding-top: max(0.85rem, env(safe-area-inset-top));
  }

  .site-header.is-scrolled { height: calc(4.6rem + env(safe-area-inset-top)); }

  .mobile-menu {
    height: 100dvh;
    min-height: 100dvh;
    padding-top: calc(6.5rem + env(safe-area-inset-top));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .why-section,
  .portfolio-section,
  .about-section,
  .pricing-teaser,
  .contact-section {
    margin-top: -0.75rem;
    scroll-margin-top: 0.4rem;
    box-shadow: 0 -0.7rem 2rem rgba(36, 64, 67, 0.05);
  }

  .why-section,
  .portfolio-section,
  .about-section,
  .pricing-teaser { padding-right: 1.15rem; padding-left: 1.15rem; }

  .has-reveal-motion .scroll-reveal { --reveal-delay: 0ms !important; translate: 0 0.75rem; }

  .portfolio-grid,
  .pricing-teaser__cards { scroll-padding-inline: 1.15rem; }

  .contact-section { padding: 3.4rem 1rem 2rem; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-section__intro { grid-column: 1; grid-row: 1; }
  .contact-form { grid-column: 1; grid-row: 2; }
  .contact-section__visual {
    width: 100%;
    height: clamp(14rem, 54vw, 19rem);
    min-height: 0;
    grid-column: 1;
    grid-row: 3;
  }
  .contact-section__visual img { object-position: center 38%; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: clamp(2.9rem, 13.4vw, 4rem); }
  .hero__intro { font-size: 0.86rem; line-height: 1.62; }
  .hero__actions { gap: 0.75rem; }
  .portfolio-section__header h2 { font-size: clamp(3rem, 14vw, 4rem); }
  .why-section__heading h2 { font-size: clamp(3rem, 13vw, 4.1rem); }
}

@media (max-width: 900px) and (max-height: 650px) {
  .hero { min-height: 38rem; height: auto; }
  .hero__content { margin-top: 5rem; padding-bottom: 4.5rem; }
  .hero__logo { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
  .hero__intro { max-width: 31rem; margin-top: 1rem; }
  .hero__actions { margin-top: 1.2rem; }
  .hero__footer { display: none; }
  .mobile-menu { padding-top: 5.5rem; }
  .mobile-menu nav a { min-height: 2.7rem; font-size: clamp(1.75rem, 7vh, 2.45rem); }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal-motion .scroll-reveal { opacity: 1; translate: none; }
}
