:root {
  --beige: #DBCEBE;
  --maroon: #A00000;
  --max-width: 1100px;
  --shadow: 0 8px 24px rgba(160, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--beige);
  color: var(--maroon);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.page-wrap {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(219, 206, 190, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(160, 0, 0, 0.12);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.logo-link img {
  display: block;
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.25s ease;
}

.hamburger:hover {
  background: rgba(160, 0, 0, 0.08);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--maroon);
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span::before {
  transform: translateY(-8px);
}

.hamburger span::after {
  transform: translateY(8px);
}

.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(84vw, 340px);
  background: var(--beige);
  border-right: 1px solid rgba(160, 0, 0, 0.15);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 6rem 1.5rem 2rem;
  z-index: 999;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(53, 18, 18, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.nav-toggle:checked ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.nav-toggle:checked ~ .side-nav {
  transform: translateX(0);
}

.nav-toggle:checked + .hamburger span {
  background: transparent;
}

.nav-toggle:checked + .hamburger span::before {
  transform: rotate(45deg);
}

.nav-toggle:checked + .hamburger span::after {
  transform: rotate(-45deg);
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav li + li {
  margin-top: 0.75rem;
}

.side-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(160, 0, 0, 0.12);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--beige);
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--maroon);
  color: var(--beige);
}

main {
  flex: 1;
}

.hero,
.content-section {
  padding: 4rem 0;
}

.hero {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
}

.hero-grid,
.two-column {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero h1,
.page-title {
  font-size: clamp(2.2rem, 3.5vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 60ch;
}

.card,
.placeholder-panel,
.contact-card,
.feed-embed,
.portfolio-item {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(160, 0, 0, 0.12);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--maroon);
  background: var(--maroon);
  color: var(--beige);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover,
form button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.muted {
  opacity: 0.85;
}

.note {
  font-size: 0.95rem;
  opacity: 0.9;
}

.feed-embed {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}

.feed-embed .elfsight-app-placeholder {
  width: 100%;
}

.two-column {
  grid-template-columns: 1fr 1fr;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

form {
  display: grid;
  gap: 1rem;
}

form p {
  margin: 0;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(160, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  color: var(--maroon);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.portfolio-list {
  display: grid;
  gap: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: center;
}

.portfolio-item:nth-child(even) .slideshow {
  order: 2;
}

.portfolio-item:nth-child(even) .portfolio-copy {
  order: 1;
}

.slideshow {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(160, 0, 0, 0.12);
}

.slide-frame {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(160, 0, 0, 0.92);
  color: #DBCEBE;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover,
.slide-btn:focus-visible {
  opacity: 0.9;
  outline: 2px solid rgba(160, 0, 0, 0.25);
  outline-offset: 2px;
}

.slide-btn.prev {
  left: 0.75rem;
}

.slide-btn.next {
  right: 0.75rem;
}

.slide-status {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  background: rgba(160, 0, 0, 0.9);
  color: #DBCEBE;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.portfolio-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.15;
}

.portfolio-copy p {
  margin: 0 0 0.9rem;
}

.availability {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dimensions {
  font-weight: 700;
  opacity: 0.8;
}

.site-footer {
  background: var(--maroon);
  color: var(--beige);
  margin-top: 3rem;
}

.footer-inner {
  padding: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.copyright {
  font-size: 0.95rem;
}

.instagram-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.instagram-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.instagram-card .elfsight-app-b622606f-f506-440a-972f-4ba5203d6044 {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.home-intro {
  width: 100%;
  padding: 2rem;
}

.home-intro .portfolio-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.home-intro .portfolio-copy p {
  font-size: inherit;
  line-height: inherit;
}

.lamp-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 16px;
}

.lamp-item .portfolio-copy {
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .portfolio-grid,
  .home-intro .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(even) .slideshow,
  .portfolio-item:nth-child(even) .portfolio-copy {
    order: unset;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 82px;
  }

  .logo-link img {
    height: 72px;
  }

  .hero,
  .content-section {
    padding: 3rem 0;
  }

  .hamburger {
    width: 46px;
    height: 46px;
  }

  .portfolio-item,
  .home-intro {
    padding: 1rem;
  }

  .slide-frame {
    aspect-ratio: 4 / 4.8;
  }

  .home-intro .portfolio-copy p {
    font-size: inherit;
    line-height: inherit;
  }

  .lamp-image {
    max-width: 260px;
  }
}