:root {
  --ink: #0c0c0c;
  --graphite: #3a3530;
  --stone: #5b5d5e;
  --taupe: #716c6a;
  --warm-gray: #aeaca9;
  --mist: #d5d3d1;
  --off-white: #ebebea;
  --paper: #f6f6f6;
  --white: #fff;
  --line: rgba(12, 12, 12, 0.1);
  --soft-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(12, 12, 12, 0.12);
  --soft-shadow: 0 16px 42px rgba(12, 12, 12, 0.07);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cabinet Grotesk", "Helvetica Neue", Arial, sans-serif;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1320px);
  min-height: 70px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.76);
  box-shadow: 0 14px 44px rgba(12, 12, 12, 0.08);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 11px 14px;
  color: var(--stone);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(12, 12, 12, 0.06);
}

.header-action {
  justify-self: end;
  padding: 15px 22px;
  color: var(--paper);
  border-radius: 999px;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease;
}

.header-action:hover {
  background: var(--graphite);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(140px, 16vw, 220px) clamp(20px, 4vw, 64px) 72px;
  background:
    radial-gradient(circle at 88% 10%, rgba(174, 172, 169, 0.28), transparent 28%),
    linear-gradient(180deg, #f6f6f6 0%, #e7e5e2 100%);
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  top: 8%;
  right: -12%;
  z-index: -1;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 64%);
  filter: blur(10px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 1340px);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 1010px;
  font-size: clamp(3.8rem, 8.7vw, 8.5rem);
  line-height: 0.8;
}

.hero-bottom {
  display: grid;
  gap: 28px;
  max-width: 470px;
  margin-top: 48px;
}

.hero-lead {
  color: var(--stone);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.design-info button,
.intro-actions a,
.intro-actions button,
.pricing-grid a,
.domain-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

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

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.button:hover,
.design-info button:hover,
.intro-actions a:hover,
.intro-actions button:hover,
.pricing-grid a:hover,
.domain-form button:hover {
  transform: translateY(-2px);
}

.hero-preview {
  position: absolute;
  right: clamp(20px, 5vw, 84px);
  bottom: 46px;
  z-index: 2;
  width: min(34vw, 500px);
  aspect-ratio: 0.86;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transform: rotate(2.4deg);
}

.hero-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(12, 12, 12, 0.52));
  content: "";
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-preview:hover img {
  transform: scale(1.05);
}

.hero-preview figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--white);
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.32);
  backdrop-filter: blur(14px);
}

.hero-preview figcaption span {
  font-size: 12px;
  text-transform: uppercase;
}

.hero-preview figcaption strong {
  font-size: 18px;
}

.hero-domain {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-domain-name {
  display: inline-block;
  will-change: transform, opacity;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip > * {
  min-height: 150px;
  padding: 32px clamp(20px, 3vw, 44px);
  background: var(--paper);
}

.proof-strip > p {
  display: flex;
  align-items: end;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.95;
}

.proof-strip div {
  display: grid;
  align-content: end;
  gap: 6px;
}

.proof-strip strong {
  font-size: 28px;
}

.proof-strip span {
  color: var(--stone);
  font-size: 14px;
}

.section,
.process-section,
.experience-section,
.testimonial-section,
.pricing-section,
.faq-section,
.builder-section {
  padding: clamp(112px, 13vw, 192px) clamp(20px, 5vw, 76px);
}

.section-heading {
  width: min(100%, 1320px);
  margin: 0 auto 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.section-heading h2,
.experience-heading h2,
.builder-copy h2 {
  font-size: clamp(3.2rem, 6.5vw, 6.6rem);
  line-height: 0.86;
}

.section-heading > p,
.split-heading > p,
.experience-heading > p,
.builder-copy > p {
  color: var(--stone);
  font-size: 18px;
  line-height: 1.6;
}

.portfolio-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 211, 209, 0.42), transparent 24%),
    var(--off-white);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}

.process-grid article {
  min-height: 320px;
  padding: clamp(26px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.7);
}

.process-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 0.96;
}

.process-grid p,
.process-note {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.55;
}

.process-note {
  width: min(100%, 1320px);
  margin: 22px auto 0;
  text-align: right;
}

.design-toolbar {
  display: flex;
  gap: 4px;
  width: min(100%, 1320px);
  margin: 0 auto 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.filter-button {
  min-height: 42px;
  padding: 0 17px;
  color: var(--stone);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

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

.design-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.design-card {
  grid-column: span 4;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.design-wide {
  grid-column: span 7;
}

.design-tall {
  grid-column: span 5;
}

.design-medium {
  grid-column: span 5;
}

.design-large {
  grid-column: span 7;
}

.design-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 7px;
  min-height: 100%;
  padding: 28px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.design-preview::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.02) 25%, rgba(12, 12, 12, 0.76)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 28%);
  content: "";
}

.design-preview::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
  content: "";
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.design-card:hover .design-preview::after {
  transform: scale(1.06);
}

.design-preview span,
.intro-content > span,
.feature-card span,
.pricing-grid article span {
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.design-preview span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.2);
  backdrop-filter: blur(10px);
}

.design-preview strong {
  max-width: 90%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.design-preview small {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.design-preview i {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 20px;
  font-style: normal;
  transition: transform 240ms ease;
}

.design-preview:hover i {
  transform: rotate(45deg);
}

.romantic {
  background-image: url("../img/editorial/romantica-jardin.webp");
  background-position: center 35%;
}

.minimal {
  background-image: url("../img/previews/linea-norte.png?v=20260730-1");
  background-position: center 38%;
}

.editorial {
  background-image: url("../img/editorial/editorial-atardecer.webp");
  background-position: center 32%;
}

.garden {
  background-image: url("../img/previews/jardin-secreto.png?v=20260729-1");
  background-position: center 48%;
}

.blacktie {
  background-image: url("../img/previews/black-tie.png?v=20260729-1");
  background-position: center 42%;
}

.coastal {
  background-image: url("../img/editorial/costa-clara.webp");
  background-position: center 38%;
}

.prado {
  background-image: url("../img/previews/sebastian-paula.png?v=20260725-1");
}

.design-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 22px 24px;
}

.design-info button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
  font-size: 13px;
}

.design-info button:hover {
  color: var(--paper);
  background: var(--ink);
}

.intro-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 10%, rgba(113, 108, 106, 0.38), transparent 30%),
    var(--ink);
}

.intro-section .eyebrow {
  color: var(--warm-gray);
}

.intro-heading {
  max-width: 1060px;
  margin-left: 0;
}

.intro-accordion {
  display: flex;
  gap: 10px;
  width: min(100%, 1320px);
  min-height: 650px;
  margin: 0 auto;
}

.intro-panel {
  position: relative;
  overflow: hidden;
  flex: 0.65;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--graphite);
  cursor: pointer;
  transition: flex 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  isolation: isolate;
}

.intro-panel.is-active,
.intro-panel:hover {
  flex: 2.2;
}

.intro-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 800ms ease;
}

.intro-panel:hover .intro-visual {
  transform: scale(1.05);
}

.intro-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.02), rgba(12, 12, 12, 0.86));
  content: "";
}

.intro-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 14px;
  min-width: 420px;
  padding: 32px;
}

.intro-content > span {
  color: rgba(255, 255, 255, 0.7);
}

.intro-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 500;
}

.intro-content p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.intro-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.intro-actions a,
.intro-actions button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  border: 0;
  background: var(--paper);
}

.intro-actions button {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 150px);
  width: 100%;
  background:
    radial-gradient(circle at 10% 18%, rgba(213, 211, 209, 0.46), transparent 25%),
    var(--paper);
}

.experience-heading {
  align-self: start;
  max-width: 540px;
}

.experience-heading > p {
  margin-top: 28px;
}

@media (min-width: 1024px) {
  .experience-heading {
    position: sticky;
    top: 118px;
  }
}

.feature-list {
  display: grid;
  gap: 56px;
}

.feature-card {
  overflow: hidden;
  display: grid;
  gap: 26px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.feature-card > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(220px, 0.7fr);
  gap: 18px 36px;
}

.feature-card span {
  color: var(--taupe);
}

.feature-card h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.feature-card p {
  grid-column: 2;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.55;
}

.testimonial-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(44px, 9vw, 150px);
  align-items: center;
  color: var(--paper);
  background: var(--graphite);
}

.testimonial-portraits {
  position: relative;
  min-height: 420px;
}

.testimonial-portraits img {
  position: absolute;
  width: min(66%, 290px);
  aspect-ratio: 0.82;
  object-fit: cover;
  border: 6px solid var(--graphite);
  border-radius: 999px;
  filter: grayscale(0.35) contrast(1.05);
}

.testimonial-portraits img:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.testimonial-portraits img:nth-child(2) {
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(8deg);
}

.testimonial-portraits img:nth-child(3) {
  right: 8%;
  top: 17%;
  z-index: 1;
  transform: scale(0.72);
}

.testimonial-track {
  display: grid;
}

.testimonial {
  display: none;
  max-width: 850px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.testimonial.is-current {
  display: grid;
  gap: 30px;
}

.testimonial cite {
  color: var(--warm-gray);
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 44px;
}

.carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  font-size: 19px;
  transition: color 180ms ease, background 180ms ease;
}

.carousel-controls button:hover {
  color: var(--ink);
  background: var(--paper);
}

.carousel-controls span {
  color: var(--warm-gray);
}

.carousel-controls b {
  color: var(--paper);
}

.pricing-section {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}

.pricing-grid article {
  display: grid;
  gap: 42px;
  min-height: 480px;
  align-content: space-between;
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper);
}

.pricing-grid article > div {
  display: grid;
  gap: 18px;
}

.pricing-grid .plan-footer {
  align-content: end;
}

.pricing-grid article span {
  color: var(--taupe);
}

.pricing-grid h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 500;
}

.pricing-grid p {
  color: var(--stone);
  font-size: 17px;
  line-height: 1.55;
}

.price {
  font-size: clamp(30px, 3vw, 44px);
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.45;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  font-weight: 700;
}

.pricing-grid a {
  align-self: end;
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.pricing-grid a:hover {
  color: var(--paper);
  background: var(--ink);
}

.pricing-grid .featured-plan {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    var(--ink);
}

.featured-plan span,
.featured-plan p,
.featured-plan .plan-features {
  color: var(--warm-gray);
}

.featured-plan a {
  color: var(--ink);
  background: var(--paper);
}

.pricing-note {
  width: min(100%, 920px);
  margin: 28px auto 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.pricing-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(213, 211, 209, 0.5), transparent 28%),
    var(--paper);
}

.faq-list {
  width: min(100%, 980px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 56px 26px 0;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  color: var(--taupe);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 820px;
  padding: 0 56px 28px 0;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.65;
}

.builder-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.92), rgba(12, 12, 12, 0.46)),
    url("../img/editorial/fondo-cta.webp") center / cover;
}

.builder-copy {
  max-width: 720px;
}

.builder-copy .eyebrow,
.builder-copy > p {
  color: var(--mist);
}

.builder-copy > p {
  max-width: 570px;
  margin-top: 28px;
}

.domain-form {
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(246, 246, 246, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.domain-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.input-row {
  display: block;
}

.input-row input {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.selected-design {
  margin-top: 18px;
  color: var(--stone);
  font-size: 14px;
}

.selected-plan {
  margin-top: 6px;
  color: var(--stone);
  font-size: 14px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-actions a:first-child {
  color: var(--paper);
  background: var(--ink);
}

.contact-actions a:last-child {
  background: transparent;
}

.contact-actions a:hover {
  transform: translateY(-1px);
}

.contact-actions a:last-child:hover {
  color: var(--paper);
  background: var(--ink);
}

.utility-page,
.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 12%, rgba(174, 172, 169, 0.28), transparent 28%),
    var(--paper);
}

.utility-card {
  display: grid;
  width: min(calc(100% - 40px), 760px);
  min-height: 100svh;
  margin: 0 auto;
  place-content: center;
  justify-items: start;
  gap: 24px;
  padding: 72px 0;
}

.utility-card > img,
.legal-header img {
  width: 154px;
}

.utility-card h1,
.legal-content h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.9;
}

.utility-card > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.6;
}

.legal-header {
  display: flex;
  width: min(calc(100% - 40px), 1080px);
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child {
  font-weight: 700;
}

.legal-content {
  display: grid;
  width: min(calc(100% - 40px), 820px);
  gap: 24px;
  margin: 0 auto;
  padding: 96px 0 128px;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-content p {
  color: var(--stone);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content p a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content > .button {
  width: fit-content;
  margin-top: 24px;
}

.site-footer {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 76px) 34px;
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-main p {
  max-width: 860px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.footer-cta {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--paper);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-top: 28px;
}

.footer-bottom .brand-logo {
  width: 184px;
}

.footer-bottom nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--warm-gray);
  font-size: 14px;
}

.instagram-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--paper);
  font-weight: 600;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.instagram-link svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-bottom nav a {
  transition: color 180ms ease;
}

.footer-bottom nav a:hover {
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid rgba(113, 108, 106, 0.42);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  body.menu-open .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(246, 246, 246, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links a {
    padding: 15px 16px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero-copy h1 {
    max-width: 880px;
    font-size: clamp(4rem, 12vw, 7.5rem);
  }

  .hero-bottom {
    max-width: 520px;
  }

  .hero-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(64vw, 560px);
    margin: 72px 6vw 0 auto;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-strip > p {
    grid-column: 1 / -1;
    min-height: 100px;
  }

  .design-card,
  .design-wide,
  .design-tall,
  .design-medium,
  .design-large {
    grid-column: span 6;
  }

  .intro-accordion {
    min-height: 580px;
  }

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-heading {
    max-width: 820px;
  }

  .feature-list {
    gap: 64px;
  }

  .testimonial-section {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .testimonial-portraits {
    min-height: 340px;
  }

  .pricing-grid article {
    min-height: 440px;
    padding: 30px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding-left: 12px;
  }

  .brand-logo {
    width: 132px;
  }

  .hero-section {
    padding: 126px 20px 72px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 17vw, 5.7rem);
    line-height: 0.84;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-preview {
    width: 88%;
    margin-top: 56px;
    border-radius: 28px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > p {
    grid-column: auto;
  }

  .proof-strip > * {
    min-height: 108px;
  }

  .section,
  .process-section,
  .experience-section,
  .testimonial-section,
  .pricing-section,
  .faq-section,
  .builder-section {
    padding: 104px 20px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .experience-heading h2,
  .builder-copy h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .design-toolbar {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 20px;
    scrollbar-width: none;
  }

  .design-toolbar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .design-grid {
    grid-template-columns: 1fr;
  }

  .design-card,
  .design-wide,
  .design-tall,
  .design-medium,
  .design-large {
    grid-column: auto;
    grid-template-rows: 390px auto;
    min-height: 0;
  }

  .design-info button {
    width: 100%;
  }

  .intro-accordion {
    display: grid;
    min-height: 0;
  }

  .intro-panel,
  .intro-panel.is-active,
  .intro-panel:hover {
    min-height: 520px;
  }

  .intro-content {
    min-width: 0;
    padding: 24px;
  }

  .intro-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .experience-section {
    gap: 72px;
  }

  .feature-card > div {
    grid-template-columns: 1fr;
  }

  .feature-card p {
    grid-column: auto;
  }

  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .testimonial-portraits {
    width: min(100%, 430px);
    min-height: 330px;
  }

  .testimonial {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 44px;
  }

  .process-note {
    text-align: left;
  }

  .pricing-grid article {
    min-height: 410px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .domain-form button {
    width: 100%;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
  }

  .footer-main p {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .footer-cta {
    width: fit-content;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .design-card {
    grid-template-rows: 340px auto;
  }

  .intro-panel,
  .intro-panel.is-active,
  .intro-panel:hover {
    min-height: 480px;
  }

  .intro-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
