/* ==========================================================================
   Construction — Design System (exact match to provided design)
   ========================================================================== */

:root {
  --brown: #3e2716;
  --brown-deep: #1a1210;
  --brown-soft: #5c3a24;
  --peach: #f0c4a4;
  --peach-soft: #f7d0b6;
  --peach-muted: #e8b897;
  --cream: #fff4f3;
  --cream-deep: #f8ebe8;
  --gray-50: #f7f7f7;
  --gray-100: #f0f0f0;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #6b6b6b;
  --ink: #14110f;
  --white: #ffffff;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --radius-xl: 44px;
  --radius-pill: 999px;
  --container: 1240px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 60px rgba(40, 20, 10, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Beat common WP / plugin layout resets */
.header-inner {
  display: flex !important;
}

.hero-grid,
.about-grid,
.features-grid,
.services-track,
.stats-grid,
.feature-panel__card,
.section-head--services {
  display: grid !important;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 14px 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 20px 16px 32px;
  font-size: 15px;
}

.btn-wide {
  padding-inline: 40px 18px;
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark .btn-arrow {
  background: var(--white);
  color: var(--brown);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(20, 17, 15, 0.18);
  color: var(--ink);
  padding: 12px 22px;
}

.btn-peach {
  background: var(--peach);
  color: var(--ink);
  padding: 12px 22px;
}

.btn-white-border {
  background: var(--white);
  border: 1px solid rgba(20, 17, 15, 0.12);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(40, 20, 10, 0.04);
}

.btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.btn-arrow--peach {
  background: var(--peach) !important;
  color: var(--ink) !important;
}

.btn-sm .btn-arrow {
  width: 28px;
  height: 28px;
}

/* ----- Pills / tags ----- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(20, 17, 15, 0.16);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
}

.pill-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(20, 17, 15, 0.15);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
}

.tag--solid {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

/* ----- Nav circles ----- */
.nav-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(20, 17, 15, 0.08);
  color: var(--ink);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-circle:hover {
  transform: scale(1.04);
}

.nav-circle--peach {
  background: var(--peach);
  border-color: transparent;
}

.slider-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-nav--stack {
  flex-direction: column;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.site-logo::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  top: 4px;
  right: -2px;
  opacity: 0.55;
}

.site-logo--image::after {
  display: none;
}

.site-logo--image .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo--image .custom-logo {
  max-height: 44px;
  width: auto;
  height: auto;
}

.primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.primary-nav ul,
.primary-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  margin: 0;
  list-style: none;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.25s;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  z-index: 2;
}

.link-login {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.4) 72%, #ffffff 100%),
    url("../images/hero-bg.jpg") center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 36px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.hero-copy {
  padding-top: 12px;
  align-self: center;
  z-index: 2;
  max-width: 520px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--ink);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 244, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 17, 15, 0.06);
  padding: 14px 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 56px 36px 72px 0;
  overflow: visible;
}

.hero-house {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 4.1;
  background: #1a1210;
  z-index: 1;
}

.hero-house img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  animation: pulse 2.8s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08); }
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 4;
}

.float-card--comfort {
  top: 0;
  right: 0;
  width: min(300px, 54%);
  padding: 16px;
}

.float-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.float-card__body {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
}

.float-card--comfort h3 {
  font-size: 24px;
  margin-bottom: 4px;
  line-height: 1.15;
}

.float-card--comfort p {
  font-size: 12px;
  color: var(--gray-600);
}

.room-tour {
  position: relative;
  width: 92px;
  flex-shrink: 0;
  text-align: center;
}

.room-tour img {
  width: 92px;
  height: 76px;
  object-fit: cover;
  border-radius: 16px;
}

.room-tour span {
  display: block;
  font-size: 10px;
  margin-top: 6px;
  color: var(--gray-600);
}

.play-btn {
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, 24px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.float-card--best {
  left: 0;
  bottom: 8px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 20px 14px 14px;
  width: min(380px, 70%);
  background: rgba(255, 248, 245, 0.97);
  border-radius: 28px;
}

.float-card__thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

.float-card--best h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.float-card--best p {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.45;
}

/* ==========================================================================
   ABOUT + STATS
   ========================================================================== */
.about-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 48px 60px;
  align-items: start;
}

.about-intro {
  margin: 18px 0 28px;
  color: var(--gray-600);
  max-width: 280px;
  font-size: 14px;
}

.wood-figure {
  position: relative;
  margin: 0;
  max-width: 280px;
}

.wood-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.wood-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: auto;
  top: auto;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(40, 20, 10, 0.08);
}

.wood-figure figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.caption-arrow {
  color: var(--peach-muted);
  font-size: 16px;
}

.about-heading {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 34ch;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  border: 1.5px dashed rgba(20, 17, 15, 0.18);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  background: var(--white);
}

.stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 13px;
  color: var(--gray-600);
}

.stat-card--active {
  background: var(--brown);
  border-style: solid;
  border-color: var(--brown);
  color: var(--white);
}

.stat-card--active span {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section {
  padding: 90px 0 100px;
  background: var(--cream);
}

.section-head--services {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) auto;
  gap: 28px 40px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.15);
}

.section-head__left .pill {
  margin-bottom: 16px;
}

.section-head__left h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  max-width: 12ch;
  margin-bottom: 0;
  line-height: 1.08;
}

.section-head__copy {
  max-width: 34ch;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  justify-self: end;
  margin: 0 0 8px;
}

.section-head--services .slider-nav {
  margin-bottom: 4px;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  box-shadow: 0 10px 40px rgba(40, 20, 10, 0.03);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card h3 {
  font-size: 30px;
  margin: 0 0 18px;
  line-height: 1.15;
}

.service-card__icon {
  color: var(--peach-muted);
  margin: 4px 0 22px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 14px;
  flex: 1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.service-card--active {
  background: var(--brown);
  color: var(--white);
}

.service-card--active p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card--active .service-card__icon {
  color: var(--peach);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 40px 48px;
  align-items: start;
}

.features-lead {
  margin: 18px 0 28px;
  color: var(--gray-600);
  font-size: 14px;
  max-width: 30ch;
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-btn {
  width: 100%;
  text-align: left;
  padding: 20px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px dashed rgba(20, 17, 15, 0.18);
  font-family: var(--font-serif);
  font-size: 22px;
  background: var(--white);
  color: var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.tab-btn.is-active {
  background: var(--brown);
  color: var(--white);
  border-style: solid;
  border-color: var(--brown);
}

.features-content > h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 14ch;
  margin-bottom: 28px;
}

.feature-panel__card {
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 24px 20px;
  align-items: center;
  overflow: visible;
}

.feature-panel__text {
  position: relative;
  z-index: 2;
  padding-right: 12px;
}

.feature-panel__text h3 {
  font-size: 30px;
  max-width: 14ch;
  margin-bottom: 24px;
  line-height: 1.15;
}

.feature-panel__media {
  position: relative;
  margin: -56px 0 -48px;
  z-index: 3;
  justify-self: end;
  width: min(100%, 420px);
}

.feature-panel__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
  background: transparent;
}

.feature-panel__desc {
  margin-top: 22px;
  font-size: 13px;
  color: var(--gray-600);
  max-width: 48ch;
  line-height: 1.55;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio-section {
  padding: 90px 0 100px;
  background: var(--cream);
}

.portfolio-head {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.portfolio-head__left h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  max-width: 14ch;
  margin-bottom: 28px;
}

.portfolio-head__left em {
  font-style: italic;
}

.portfolio-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-600);
}

.dash-line {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.2);
}

.portfolio-head__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.portfolio-head__right p {
  font-size: 13px;
  color: var(--gray-600);
  max-width: 32ch;
}

.portfolio-carousel {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.7fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.portfolio-slide {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-slide.is-side {
  filter: grayscale(1);
  opacity: 0.85;
  aspect-ratio: 3 / 3.6;
}

.portfolio-slide.is-active {
  aspect-ratio: 4 / 4.6;
}

.portfolio-slide__meta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: var(--white);
}

.portfolio-date {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}

.portfolio-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
}

.portfolio-counter {
  font-size: 14px;
  color: var(--gray-600);
}

.portfolio-counter strong {
  color: var(--ink);
  font-size: 18px;
}

.portfolio-info h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 13px;
  color: var(--gray-600);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 100px 0 110px;
  background: var(--white);
}

.section-head--testimonial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.15);
}

.section-head--testimonial .pill {
  margin-bottom: 16px;
}

.section-head--testimonial h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 16ch;
}

.section-aside {
  font-size: 13px;
  color: var(--gray-600);
  max-width: 34ch;
  justify-self: end;
  text-align: right;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  align-items: stretch;
}

.testimonial-card__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.testimonial-card__photo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.testimonial-card__photo span {
  font-size: 12px;
  opacity: 0.9;
}

.testimonial-card__quote {
  margin: 0;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.7;
  color: var(--peach);
  display: block;
  margin-bottom: 18px;
}

.testimonial-card__quote p {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  max-width: 22ch;
}

.quote-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.stars {
  color: var(--peach);
  letter-spacing: 2px;
  font-size: 16px;
}

.present-badge {
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}

.quote-index {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  background: var(--brown-deep);
  padding: 110px 0 120px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta-decor {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0.85;
  pointer-events: none;
}

.cta-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-decor--tl {
  width: 180px;
  height: 220px;
  top: 40px;
  left: 6%;
  transform: rotate(-12deg);
}

.cta-decor--br {
  width: 240px;
  height: 280px;
  right: 5%;
  bottom: -40px;
  transform: rotate(10deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cta-title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--peach);
  position: relative;
  line-height: 1;
}

.cta-sparkle {
  position: absolute;
  left: -8px;
  top: 8px;
  font-size: 18px;
  color: var(--peach-soft);
}

.cta-copy {
  max-width: 36ch;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  align-self: flex-start;
  margin-left: max(0px, calc(50% - 280px));
  text-align: left;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--white);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  gap: 40px;
  padding-bottom: 36px;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.15);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(20, 17, 15, 0.15);
  display: grid;
  place-items: center;
  color: var(--gray-600);
  transition: border-color 0.25s, color 0.25s;
}

.social-links a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.footer-label {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  max-width: 34ch;
}

.footer-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.footer-contact--right {
  text-align: right;
  justify-self: end;
}

.footer-contact--right .footer-label {
  margin-left: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--gray-600);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--ink);
}

/* ==========================================================================
   MOTION
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .float-card--comfort,
  .float-card--best {
    animation: rise 0.9s var(--ease) both;
  }

  .hero-visual { animation-delay: 0.12s; }
  .float-card--comfort { animation-delay: 0.28s; }
  .float-card--best { animation-delay: 0.4s; }

  .service-card,
  .stat-card,
  .portfolio-slide {
    transition: transform 0.45s var(--ease), filter 0.45s var(--ease), background 0.45s var(--ease);
  }

  .service-card:hover {
    transform: translateY(-4px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .features-grid,
  .portfolio-head,
  .section-head--testimonial,
  .footer-top,
  .section-head--services {
    grid-template-columns: 1fr;
  }

  .section-head__copy {
    justify-self: start;
    max-width: 48ch;
  }

  .section-head--services .slider-nav {
    flex-direction: row;
  }

  .portfolio-carousel {
    grid-template-columns: 1fr;
  }

  .portfolio-slide.is-side {
    display: none;
  }

  .cta-decor {
    opacity: 0.35;
  }

  .cta-decor--tl { width: 120px; height: 150px; }
  .cta-decor--br { width: 140px; height: 170px; }

  .footer-contact--right {
    text-align: left;
    justify-self: start;
  }

  .section-aside,
  .portfolio-head__right {
    text-align: left;
    align-items: flex-start;
    justify-self: start;
  }

  .feature-panel__card {
    grid-template-columns: 1fr;
  }

  .feature-panel__media {
    margin: 0;
    width: 100%;
    order: -1;
    justify-self: stretch;
  }

  .hero-visual {
    min-height: 420px;
    padding: 40px 0 56px;
  }

  .hero-house {
    max-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    display: flex;
  }

  .primary-nav.is-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    z-index: 60;
  }

  .primary-nav.is-open ul,
  .primary-nav.is-open .menu {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
  }

  .services-track {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    flex-direction: row;
    justify-content: flex-end;
  }

  .portfolio-footer {
    grid-template-columns: 1fr;
  }

  .float-card--comfort {
    width: min(280px, 70%);
  }

  .float-card--best {
    width: min(300px, 80%);
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .link-login {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 36px;
  }

  .float-card--comfort {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .float-card--best {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 0;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-copy {
    margin-left: 0;
    align-self: center;
    text-align: center;
  }
}

/* ==========================================================================
   ARTICLES LISTING + SINGLE
   ========================================================================== */
body:not(.front-page) .site-header {
  position: relative;
  background: rgba(255, 244, 243, 0.95);
  border-bottom: 1px solid rgba(20, 17, 15, 0.06);
}

body:not(.front-page) .site-header.is-scrolled {
  position: fixed;
}

.articles-page,
.article-single,
.page-default {
  padding: 48px 0 100px;
  background: var(--cream);
  min-height: 60vh;
}

.articles-page__header {
  margin-bottom: 48px;
}

.articles-page__header .pill {
  margin-bottom: 18px;
}

.articles-page__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

.articles-page__intro h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  max-width: 14ch;
}

.articles-page__intro p {
  color: var(--gray-600);
  font-size: 14px;
  max-width: 36ch;
  justify-self: end;
  text-align: right;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(40, 20, 10, 0.04);
  transition: transform 0.35s var(--ease);
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.article-card__title {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

.article-card__title a:hover {
  opacity: 0.75;
}

.article-card__excerpt {
  color: var(--gray-600);
  font-size: 14px;
  flex: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.article-card__meta time {
  font-size: 12px;
  color: var(--gray-600);
}

.articles-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.articles-pagination__item a,
.articles-pagination__item span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(20, 17, 15, 0.08);
  font-size: 14px;
  font-weight: 500;
}

.articles-pagination__item .current {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.articles-empty {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--gray-600);
}

.article-single {
  background: var(--white);
}

.article-single__container {
  max-width: 820px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.article-breadcrumb a:hover {
  color: var(--ink);
}

.article-single__header {
  margin-bottom: 32px;
}

.article-single__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.article-single__header h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 16px;
}

.article-single__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--gray-600);
}

.article-single__hero {
  margin: 0 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-single__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}

.entry-content > * + * {
  margin-top: 1.15em;
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1.6em;
}

.entry-content h2 { font-size: 32px; }
.entry-content h3 { font-size: 24px; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}

.entry-content img {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
}

.entry-content blockquote {
  margin: 1.5em 0;
  padding: 20px 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
}

.article-single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px dashed rgba(20, 17, 15, 0.15);
}

.article-related {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(20, 17, 15, 0.06);
}

.article-related__head {
  margin-bottom: 32px;
}

.article-related__head .pill {
  margin-bottom: 14px;
}

.article-related__head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.page-default {
  background: var(--white);
}

.page-default__inner {
  max-width: 820px;
  padding-top: 24px;
}

.page-default__header h1 {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 28px;
}

.footer-links .menu,
.footer-links ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1100px) {
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .articles-page__intro {
    grid-template-columns: 1fr;
  }

  .articles-page__intro p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-single__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}


.lang-switch{display:inline-flex;align-items:center;gap:6px;margin-inline-end:4px;font-size:13px;font-weight:600}
.lang-switch__sep{opacity:.35}
.lang-switch__link{opacity:.45;transition:opacity .2s}
.lang-switch__link:hover,.lang-switch__link.is-active{opacity:1}
