/* Asian Minimal - Interior Designer Blog */
:root {
  --primary: #605c64;
  --secondary: #a29a9d;
  --bg-light: #f5f4f3;
  --bg-dark: #2d2a2e;
  --text-on-dark: #f5f4f3;
  --text-on-light: #1a181b;
  --accent: #8b8589;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow: 0 4px 24px rgba(96, 92, 100, 0.08);
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--bg-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header - Logo left, nav right */
.site-header {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(96, 92, 100, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.5rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-weight: 600;
  color: var(--text-on-light);
  font-size: 1.1rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--primary);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-light);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.main-nav.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  border-bottom: 1px solid rgba(96, 92, 100, 0.08);
}

.nav-list li:last-child {
  border-bottom: none;
}

.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-on-light);
  border-radius: var(--radius-sm);
}

.nav-list a:hover {
  background: rgba(96, 92, 100, 0.08);
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-list li {
    border-bottom: none;
  }

  .nav-list a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark) center/cover no-repeat;
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  text-align: center;
  padding: 3rem 1.25rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 42, 46, 0.7) 0%, rgba(45, 42, 46, 0.85) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--text-on-dark);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid var(--text-on-dark);
}

.btn-outline:hover {
  background: var(--text-on-dark);
  color: var(--primary);
}

.btn-outline-light {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-light:hover {
  background: var(--primary);
  color: var(--text-on-dark);
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-alt a {
  color: var(--secondary);
}

.section-alt a:hover {
  color: var(--text-on-dark);
}

.section-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  text-align: center;
}

.section-intro {
  max-width: 60ch;
  margin: 0 auto 2rem;
  text-align: center;
  opacity: 0.9;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(96, 92, 100, 0.15);
}

.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--secondary);
}

.card-body {
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(96, 92, 100, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: var(--bg-light);
}

.accordion-trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.accordion-item.is-open .accordion-trigger::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.accordion-item.is-open .accordion-panel {
  max-height: 400px;
}

.accordion-panel-inner {
  padding: 0 1.25rem 1rem;
  border-top: 1px solid rgba(96, 92, 100, 0.1);
  background: #fff;
}

.section-alt .accordion-trigger {
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark);
}

.section-alt .accordion-trigger:hover {
  background: rgba(255,255,255,0.1);
}

.section-alt .accordion-panel-inner {
  background: rgba(255,255,255,0.04);
  border-top-color: rgba(255,255,255,0.1);
}

/* Consultant / Achievements */
.achievements-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.achievements-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}

.achievements-list .fa-li,
.achievements-list .icon {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-alt .benefit-item {
  background: rgba(255,255,255,0.08);
}

.benefit-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section-alt .benefit-item i {
  color: var(--secondary);
}

/* Services */
.services-list {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateX(4px);
}

.section-alt .service-card {
  background: rgba(255,255,255,0.06);
}

.service-card i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.section-alt .service-card i {
  color: var(--secondary);
}

/* Pricing */
.price-table {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(96, 92, 100, 0.1);
}

.price-table th {
  background: var(--primary);
  color: var(--text-on-dark);
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) {
  background: rgba(96, 92, 100, 0.04);
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
}

.steps-list li:last-child {
  padding-bottom: 0;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.section-alt .steps-list li::before {
  background: var(--secondary);
  color: var(--bg-dark);
}

.steps-list h4 {
  margin: 0 0 0.5rem;
}

.steps-list p {
  margin: 0;
  opacity: 0.9;
}

/* CTA */
.cta-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius);
}

.cta-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cta-block p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-block .btn {
  background: var(--text-on-dark);
  color: var(--primary);
}

/* Products */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--secondary);
}

.product-card .product-body {
  padding: 1rem;
}

.product-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.product-card .price {
  font-weight: 700;
  color: var(--primary);
}

.section-alt .product-card .product-body,
.section-alt .product-card h4 {
  color: var(--text-on-light);
}

.section-alt .product-card .price {
  color: var(--primary);
}

.section-alt .benefit-item h3,
.section-alt .benefit-item p {
  color: var(--text-on-dark);
}

.section-alt .service-card h3,
.section-alt .service-card p {
  color: var(--text-on-dark);
}

.section-alt .price-table td {
  color: var(--text-on-dark);
}

/* Articles list */
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(96, 92, 100, 0.12);
}

.article-list li:last-child {
  border-bottom: none;
}

.article-list a {
  font-weight: 600;
  color: var(--text-on-light);
}

.article-list a:hover {
  color: var(--primary);
}

/* Footer - Multi-column */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--secondary);
}

.footer-col a:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  max-width: 60ch;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Inner page hero (smaller) */
.page-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

/* Content */
.content-wrap {
  padding: 2rem 0;
}

.content-wrap h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.content-wrap h2:first-child {
  margin-top: 0;
}

.content-wrap p {
  margin: 0 0 1rem;
}

.content-wrap img {
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  background: var(--secondary);
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Success page */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.success-page p {
  margin: 0 0 1.5rem;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1rem 0;
  max-width: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

@media (min-width: 768px) {
  .map-wrap iframe {
    height: 450px;
  }
}

/* Contact */
.contact-block address,
.contact-block a {
  color: inherit;
}

/* Contact form */
.contact-form {
  max-width: 36rem;
  margin: 0 auto;
}

.contact-form .form-row {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.contact-form .required {
  color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-on-light);
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-actions {
  margin-top: 1.5rem;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form .form-actions .btn {
  margin: 0;
}

/* Animations (Animate.css classes used on hero) */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Min width 320px */
@media (max-width: 359px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    min-height: 60vh;
    padding: 2rem 0.75rem;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
}
