@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Warm cream background, never pure white */
  --background: oklch(0.975 0.012 75);
  --surface: oklch(0.955 0.018 70);
  --foreground: oklch(0.26 0.04 20);
  --card: oklch(0.99 0.008 80);
  --card-foreground: oklch(0.26 0.04 20);

  /* Deep plum / burgundy primary */
  --primary: oklch(0.32 0.09 12);
  --primary-foreground: oklch(0.975 0.012 75);

  --secondary: oklch(0.93 0.02 60);
  --secondary-foreground: oklch(0.32 0.09 12);
  --muted: oklch(0.93 0.02 60);
  --muted-foreground: oklch(0.48 0.03 30);

  /* Coral / terracotta accent */
  --accent: oklch(0.66 0.16 38);
  --accent-foreground: oklch(0.99 0.005 80);

  --border: oklch(0.88 0.018 60);
  --input: oklch(0.88 0.018 60);
  --ring: oklch(0.66 0.16 38);

  --gradient-soft: linear-gradient(180deg, var(--background) 0%, oklch(0.955 0.022 65) 100%);
  --shadow-soft: 0 1px 2px oklch(0.26 0.04 20 / 0.04), 0 8px 24px oklch(0.32 0.09 12 / 0.06);
  --shadow-lift: 0 4px 12px oklch(0.26 0.04 20 / 0.08), 0 24px 48px oklch(0.32 0.09 12 / 0.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

body {
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(249, 246, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.logo img {
  height: 64px;
  width: 200px;
}

nav.desktop-nav {
  display: none;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  nav.desktop-nav {
    display: flex;
  }
}

nav.desktop-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.75;
}

nav.desktop-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lift);
  opacity: 0.9;
}

.btn-outline {
  background-color: var(--card);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(54, 18, 14, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-btn {
  display: none;
  /* In pure HTML/CSS, we will use a checkbox hack for the mobile menu */
}

/* Mobile Menu Checkbox Hack */
#mobile-menu-toggle {
  display: none;
}

.mobile-menu-label {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  cursor: pointer;
  background-color: transparent;
}

.mobile-menu-label:hover {
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .mobile-menu-label {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

#mobile-menu-toggle:checked~.mobile-nav {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
}

.mobile-nav a:hover {
  background-color: var(--secondary);
}

/* Sections Common */
section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Hero Section */
.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--gradient-soft);
  overflow: hidden;
  position: relative;
}

/* Decorative Background Shapes */
.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
}

.hero .container {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-lift);
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-image {
    aspect-ratio: 5/6;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section (About) */
.info-section .container {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .info-section .container {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.info-content {
  font-size: 1.0625rem;
  color: rgba(66, 10, 10, 0.85);
  /* Slightly transparent foreground */
}

.info-content p {
  margin-top: 1.25rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.info-card-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(168, 41, 9, 0.1);
  /* accent with opacity */
  color: var(--accent);
}

.info-card-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.info-card-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-grid-2 {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.card-image-wrapper {
  margin: -1.75rem -1.75rem 1.25rem -1.75rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
}

.custom-bullets {
  margin-top: 1.5rem;
  padding-left: 0;
  text-align: left;
}

.custom-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

.custom-bullets li:last-child {
  margin-bottom: 0;
}

.custom-bullets li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0;
}

.feature-title {
  font-size: 1.125rem;
  margin-top: 1.25rem;
}

/* Collections Grid */
.collections {
  background-color: var(--surface);
}

.collections-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-card {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lift);
}

.collection-img {
  aspect-ratio: 4/3;
  width: 100%;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-img img {
  transform: scale(1.05);
}

.collection-content {
  padding: 1.5rem;
}

.collection-tag {
  display: inline-block;
  border-radius: 9999px;
  background-color: rgba(168, 41, 9, 0.1);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.collection-title {
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.collection-card:hover .collection-link {
  color: var(--accent);
}

/* Sizes and Rooms */
.sizes-rooms .container {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .sizes-rooms .container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.sizes-list {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sizes-list li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease;
}

.sizes-list li:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

@media (min-width: 640px) {
  .sizes-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}

.sizes-list li:last-child {
  border-bottom: none;
}

.size-name {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--primary);
}

.size-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: left;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .size-desc {
    text-align: right;
  }
}

/* Quote Form */
.quote-section .container {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .quote-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.quote-form {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .quote-form {
    padding: 2.25rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(168, 41, 9, 0.3);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: auto;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3.5rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  height: 64px;
  width: 200px;
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
  max-width: 20rem;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  opacity: 0.75;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.w-full {
  width: 100%;
}

/* Z-Pattern Layout */
.z-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .z-row {
    flex-direction: row;
    gap: 4rem;
  }

  .z-row.reverse {
    flex-direction: row-reverse;
  }
}

.z-img {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.z-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.z-row:hover .z-img img {
  transform: scale(1.05);
}

.z-text {
  flex: 1;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Modern Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
}

.modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
  text-align: left;
}

.modern-table th {
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.modern-table tbody tr {
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.modern-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.modern-table td {
  padding: 1.5rem;
  border-bottom: none;
}

.modern-table td:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.modern-table td:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

@media (max-width: 767px) {

  .modern-table,
  .modern-table tbody,
  .modern-table tr,
  .modern-table td {
    display: block;
    width: 100%;
  }

  .modern-table thead {
    display: none;
  }

  .modern-table tbody tr {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    background-color: var(--card);
    box-shadow: var(--shadow-soft);
    border-radius: 0.5rem;
  }

  .modern-table td {
    padding: 0.75rem 1.5rem 0.75rem 40%;
    position: relative;
    text-align: left;
    border-radius: 0 !important;
  }

  .modern-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1.5rem;
    width: calc(40% - 2rem);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
  }
}

/* FAQ 2-Column Grid */
.faq-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.faq-heading-col {
  text-align: left;
}

.faq-heading-col .section-title {
  margin-left: 0;
}
