@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap");

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

:root {
  --c-primary: #1f1f20;
  --c-red: rgb(204, 35, 23);
  --c-bg: #f9fafb;
  --c-text: #111827;
  --c-muted: #6b7280;
  --c-accent: #009c87;
  --c-white: #ffffff;
  --c-border: #e5e7eb;
  --c-surface: #ffffff;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Outfit", system-ui, sans-serif;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 14px;

  --sh-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --sh-md: 0 4px 18px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

  --tr: 0.3s ease;
  --tr-fast: 0.15s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  font-size: 0.9375rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f-body);
}
input,
textarea,
select {
  font-family: var(--f-body);
}

.wrap {
  width: min(90%, 1160px);
  margin-inline: auto;
}
.wrap-sm {
  width: min(90%, 760px);
  margin-inline: auto;
}

.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  z-index: 100;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  gap: var(--sp-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-meta {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: right;
  line-height: 1.4;
}
.header-meta a {
  color: var(--c-muted);
  transition: color var(--tr-fast);
}
.header-meta a:hover {
  color: var(--c-accent);
}

.header-nav {
  padding: 0 var(--sp-8);
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
}
.nav-list li a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--tr-fast);
  border-bottom: 2px solid transparent;
  transition:
    color var(--tr-fast),
    border-color var(--tr-fast);
}
.nav-list li a:hover,
.nav-list li a.active {
  color: var(--c-text);
  border-bottom-color: var(--c-red);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-primary);
  transition: var(--tr);
  transform-origin: center;
}
.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-4) var(--sp-8);
  gap: var(--sp-1);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--sp-3) 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--c-red);
}

.hero {
  background: var(--c-primary);
  color: var(--c-white);
  padding: var(--sp-24) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 50%,
      rgba(204, 35, 23, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 80% at 10% 50%,
      rgba(0, 156, 135, 0.08) 0%,
      transparent 70%
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  max-width: 720px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--tr);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  border: 1px solid var(--c-red);
}
.btn-primary:hover {
  background: rgb(178, 28, 18);
  border-color: rgb(178, 28, 18);
}
.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-primary);
}
.btn-dark:hover {
  background: #333335;
}
.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border: 1px solid var(--c-accent);
}
.btn-accent:hover {
  background: #007d6c;
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  border-color: var(--c-text);
  background: var(--c-primary);
  color: var(--c-white);
}

.sec {
  padding: var(--sp-20) 0;
}
.sec-sm {
  padding: var(--sp-12) 0;
}

.sec-showcase-duo {
  background: linear-gradient(
    180deg,
    var(--c-bg) 0%,
    #f0f1f3 50%,
    var(--c-bg) 100%
  );
  padding: var(--sp-16) 0 var(--sp-20);
}
.showcase-duo-title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--sp-12);
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.showcase-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  align-items: stretch;
}
.showcase-duo-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
  display: flex;
  flex-direction: column;
}
.showcase-duo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(0, 156, 135, 0.2);
}
.showcase-duo-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.showcase-duo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-duo-card:hover .showcase-duo-img-wrap img {
  transform: scale(1.08);
}
.showcase-duo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 31, 32, 0.4) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.showcase-duo-card:hover .showcase-duo-overlay {
  opacity: 1;
}
.showcase-duo-content {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.showcase-duo-heading {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-primary);
  margin: 0;
  transition: color var(--tr-fast);
}
.showcase-duo-card:hover .showcase-duo-heading {
  color: var(--c-accent);
}
.showcase-duo-desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

.sec-spotlight {
  padding: var(--sp-20) 0;
  background: var(--c-white);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.spotlight-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.spotlight-img-wrap:hover img {
  transform: scale(1.06) rotate(0.5deg);
}
.spotlight-frame {
  position: absolute;
  inset: var(--sp-4);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--r-lg) - 4px);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.spotlight-img-wrap:hover .spotlight-frame {
  opacity: 1;
  transform: scale(1);
}
.spotlight-text {
  padding: var(--sp-4) 0;
}
.spotlight-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.spotlight-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.spotlight-body {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.sec-dark {
  background: var(--c-primary);
  color: var(--c-white);
}
.sec-tinted {
  background: #f3f4f6;
}
.sec-accent {
  background: var(--c-accent);
  color: var(--c-white);
}

.sec-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.sec-dark .sec-label {
  color: var(--c-accent);
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}
.sec-title em {
  font-style: italic;
  color: var(--c-red);
}
.sec-dark .sec-title em {
  color: var(--c-accent);
}

.sec-body {
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.75;
  font-size: 0.9375rem;
}
.sec-dark .sec-body {
  color: rgba(255, 255, 255, 0.6);
}

.sec-header {
  margin-bottom: var(--sp-12);
}
.sec-header-center {
  text-align: center;
}
.sec-header-center .sec-body {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 35, 23, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-red);
  margin-bottom: var(--sp-5);
}
.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  transition: gap var(--tr-fast);
}
.service-link:hover {
  gap: var(--sp-3);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split.reverse {
  direction: rtl;
}
.split.reverse > * {
  direction: ltr;
}
.split-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-img:hover img {
  transform: scale(1.04);
}
.split-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}
.process-step h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.process-step p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--c-white);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.price-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  transition: var(--tr);
}
.price-card:hover {
  box-shadow: var(--sh-md);
}
.price-card.featured {
  border-color: var(--c-red);
  background: var(--c-primary);
  color: var(--c-white);
}
.price-badge {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
}
.price-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.price-amount {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-1);
}
.price-amount sup {
  font-size: 1rem;
  margin-top: 0.4rem;
}
.price-card p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-5);
  line-height: 1.65;
}
.price-card.featured p {
  color: rgba(255, 255, 255, 0.6);
}
.price-card.featured .price-amount {
  color: var(--c-accent);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.price-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8125rem;
  color: var(--c-muted);
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.7);
}
.price-features li i {
  color: var(--c-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-16);
  background: var(--c-primary);
  border-radius: var(--r-lg);
  color: var(--c-white);
}
.cta-band-text h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: var(--sp-2);
}
.cta-band-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.contact-info-block h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.info-item i {
  font-size: 1rem;
  color: var(--c-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.info-item span {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.info-item a {
  color: var(--c-text);
  font-weight: 500;
  display: block;
}
.info-item a:hover {
  color: var(--c-accent);
}

.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  margin-top: var(--sp-5);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--sh-sm);
}
.form-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.form-card p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-8);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
}
.field input,
.field textarea,
.field select {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition:
    border-color var(--tr-fast),
    box-shadow var(--tr-fast);
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0, 156, 135, 0.12);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--c-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.consent-row label {
  font-size: 0.8rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.consent-row a {
  color: var(--c-accent);
}

.site-footer {
  background: var(--c-primary);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--sp-10) 0 var(--sp-6);
  font-size: 0.8125rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--sp-6);
}
.footer-brand .logo {
  color: var(--c-white);
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-5);
  font-weight: 500;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  transition: color var(--tr-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-col ul li a:hover {
  color: var(--c-white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  transition: color var(--tr-fast);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.page-hero {
  background: var(--c-primary);
  color: var(--c-white);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 100% 50%,
    rgba(204, 35, 23, 0.1) 0%,
    transparent 70%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 520px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--c-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
}
.feature-item:hover {
  box-shadow: var(--sh-sm);
}
.feature-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(0, 156, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-item-text h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.feature-item-text p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.highlight-box {
  background: linear-gradient(135deg, var(--c-primary), #2e2e30);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8);
}
.highlight-box h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--sp-4);
}
.highlight-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--sp-8);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16);
  background: var(--c-bg);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 156, 135, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--c-accent);
  margin: 0 auto var(--sp-8);
}
.thankyou-page h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: var(--sp-4);
}
.thankyou-page p {
  color: var(--c-muted);
  max-width: 420px;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16);
}
.error-code {
  font-family: var(--f-display);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.error-page h2 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: var(--sp-4);
}
.error-page p {
  color: var(--c-muted);
  max-width: 380px;
  margin: 0 auto var(--sp-10);
}

.cookie-popup {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 999;
  background: var(--c-primary);
  color: var(--c-white);
  padding: var(--sp-5) var(--sp-8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  max-width: min(90vw, 600px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-popup.is-visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-popup-text {
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}
.cookie-popup-text a {
  color: var(--c-accent);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--c-accent);
  color: var(--c-white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--tr-fast);
}
.cookie-btn-accept:hover {
  background: #007d6c;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--tr-fast);
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--c-muted);
}
.mt-4 {
  margin-top: var(--sp-4);
}
.mt-6 {
  margin-top: var(--sp-6);
}
.mt-8 {
  margin-top: var(--sp-8);
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-8);
}
.tab-btn {
  padding: var(--sp-3) var(--sp-6);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-muted);
  border-bottom: 2px solid transparent;
  transition: var(--tr-fast);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-bottom: -1px;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--c-text);
  border-bottom-color: var(--c-red);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--sp-6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr-fast);
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb i {
  font-size: 0.6rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .split.reverse {
    direction: ltr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .process-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-10) var(--sp-8);
  }
  .showcase-duo-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .spotlight-inner .spotlight-img-wrap {
    order: 1;
  }
  .spotlight-inner .spotlight-text {
    order: 2;
  }
}

@media (max-width: 640px) {
  .logo{
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .header-nav {
    display: none;
  }
  .header-meta {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-masthead {
    padding: var(--sp-3) var(--sp-5);
  }
  .sec {
    padding: var(--sp-12) 0;
  }
  .sec-showcase-duo {
    padding: var(--sp-10) 0 var(--sp-12);
  }
  .showcase-duo-title {
    margin-bottom: var(--sp-8);
  }
  .showcase-duo-content {
    padding: var(--sp-5) var(--sp-5) var(--sp-6);
  }
  .spotlight-img-wrap {
    aspect-ratio: 16/10;
  }
  .cookie-popup {
    flex-direction: column;
    align-items: stretch;
    bottom: 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    max-width: 100vw;
  }
  .cookie-btns {
    justify-content: flex-end;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}

@media (min-width: 901px) {
  .burger-btn {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
  .header-nav {
    display: flex;
  }
}
