@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  --accent: #b8481f;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3a342c;
  background-color: #f6f1e7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", "Georgia", serif;
  color: #1b1712;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.15;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
a:hover {
  color: #1b1712;
}

button, [type=button], [type=submit] {
  font-family: inherit;
  cursor: pointer;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

section {
  padding: 6rem 0;
}
@media (min-width: 640px) {
  section {
    padding: 4rem 0;
  }
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.mt-sm {
  margin-top: 0.5rem;
}

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

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

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

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

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

.mb-2xl {
  margin-bottom: 3rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: #faf6ee;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 0.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(27, 23, 18, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: #faf6ee;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 0.25rem;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(27, 23, 18, 0.1);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:hover {
  background-color: #1b1712;
}
.btn-outline {
  background-color: transparent;
  border: 1.5px solid #1b1712;
  color: #1b1712;
}
.btn-outline:hover {
  background-color: #1b1712;
  color: #faf6ee;
}
.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.card {
  background: #faf6ee;
  border: 1px solid #ddd3bd;
  border-radius: 0.25rem;
  padding: 2rem;
  transition: border-color 200ms ease-in-out;
}
.card:hover {
  border-color: var(--accent);
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
}
.icon-lg {
  width: 3rem;
  height: 3rem;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon svg {
  width: 100%;
  height: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "SFMono-Regular", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-header {
  margin-bottom: 4rem;
  max-width: 640px;
}
.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: #61543e;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.flex {
  display: flex;
  gap: 1rem;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

.bg-light {
  background-color: #ece4d3;
}

.bg-white {
  background-color: #faf6ee;
}

.bg-ink {
  background-color: #1b1712;
  color: #ddd3bd;
}

.text-muted {
  color: #85765a;
}

.text-accent {
  color: var(--accent);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-bold {
  font-weight: 700;
}

.fade-in {
  animation: fadeIn 300ms ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 300ms ease-in-out forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 300ms ease-in-out forwards;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(27, 23, 18, 0.92);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.375rem;
  box-shadow: 0 25px 50px -12px rgba(27, 23, 18, 0.3);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  border: none;
  color: #faf6ee;
  cursor: pointer;
  line-height: 1;
  transition: color 150ms ease-in-out;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  color: var(--accent);
}
.lightbox-close {
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0.5rem 1rem;
}
.lightbox-prev {
  left: 1rem;
}
@media (min-width: 768px) {
  .lightbox-prev {
    left: 2rem;
  }
}
.lightbox-next {
  right: 1rem;
}
@media (min-width: 768px) {
  .lightbox-next {
    right: 2rem;
  }
}

header {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  color: #1b1712;
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 1px solid #ddd3bd;
  transition: box-shadow 200ms ease-in-out;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
header .logo img {
  height: 44px;
  width: auto;
  display: block;
}
header .nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1061;
}
header .nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #1b1712;
  border-radius: 2px;
  transition: all 200ms ease-in-out;
}
header .nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #faf6ee;
}
header .nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 23, 18, 0.5);
  z-index: 1059;
}
header .nav-overlay.active {
  display: block;
}
header .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #1b1712;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 6rem 3rem;
  z-index: 1060;
  transition: right 300ms ease-in-out;
  counter-reset: nav;
}
header .nav-menu.active {
  right: 0;
}
header .nav-menu .nav-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  color: rgba(250, 246, 238, 0.55);
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
}
header .nav-menu .nav-link .icon {
  display: none;
}
header .nav-menu .nav-link::before {
  counter-increment: nav;
  content: counter(nav, decimal-leading-zero);
  font-family: "SFMono-Regular", monospace;
  font-size: 0.875rem;
  color: var(--accent);
}
header .nav-menu .nav-link:hover {
  color: #faf6ee;
  padding-left: 0.5rem;
}

.hero {
  background-color: #1b1712;
  background-size: cover;
  background-position: center;
  color: #faf6ee;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 23, 18, 0.55) 0%, rgba(27, 23, 18, 0.78) 100%);
  z-index: 0;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero .hero-content .eyebrow {
  color: var(--accent);
}
.hero .hero-content .eyebrow::before {
  background: var(--accent);
}
.hero .hero-content h1 {
  color: #faf6ee;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero .hero-content h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(250, 246, 238, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 46ch;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero .hero-content .hero-actions .btn-outline {
  border-color: rgba(250, 246, 238, 0.5);
  color: #faf6ee;
}
.hero .hero-content .hero-actions .btn-outline:hover {
  background: rgba(250, 246, 238, 0.12);
  border-color: #faf6ee;
}

.about-section .about-intro {
  max-width: 68ch;
  font-size: 1.125rem;
  color: #61543e;
  margin-bottom: 4rem;
}
.about-section .about-rows {
  border-top: 1px solid #ddd3bd;
}
.about-section .about-row {
  display: grid;
  grid-template-columns: 3rem 2.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd3bd;
  transition: background 200ms ease-in-out;
}
.about-section .about-row:hover {
  background: rgba(184, 72, 31, 0.04);
}
.about-section .about-row .row-index {
  font-family: "SFMono-Regular", monospace;
  font-size: 0.875rem;
  color: var(--accent);
  padding-top: 0.3em;
}
.about-section .about-row .icon {
  color: var(--accent);
}
.about-section .about-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.about-section .about-row p {
  color: #61543e;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about-section .about-row {
    grid-template-columns: 3.5rem 3rem 1fr;
  }
}

.mv-grid .mv-block {
  position: relative;
  padding-top: 1.5rem;
}
.mv-grid .mv-block::before {
  content: "“";
  font-family: "Fraunces", "Georgia", serif;
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.mv-grid .mv-block h3 {
  color: #faf6ee;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.mv-grid .mv-block p {
  color: rgba(250, 246, 238, 0.72);
  margin-bottom: 0;
}

.services-section .services-list {
  border-top: 1px solid #ddd3bd;
}
.services-section .service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ddd3bd;
  transition: all 200ms ease-in-out;
}
.services-section .service-row .row-index {
  font-family: "SFMono-Regular", monospace;
  font-size: 1.125rem;
  color: #c8bb9c;
  transition: color 200ms ease-in-out;
}
.services-section .service-row .service-icon {
  display: none;
}
.services-section .service-row h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.services-section .service-row p {
  color: #61543e;
  margin-bottom: 0;
  max-width: 60ch;
}
.services-section .service-row .row-arrow {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 200ms ease-in-out;
}
.services-section .service-row .row-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.services-section .service-row:hover {
  border-color: var(--accent);
}
.services-section .service-row:hover .row-index {
  color: var(--accent);
}
.services-section .service-row:hover .row-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .services-section .service-row {
    grid-template-columns: 4rem 1fr auto;
  }
}

.portfolio-section .portfolio-strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 1.5rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.portfolio-section .portfolio-strip::-webkit-scrollbar {
  height: 6px;
}
.portfolio-section .portfolio-strip::-webkit-scrollbar-thumb {
  background: #c8bb9c;
  border-radius: 9999px;
}
.portfolio-section .portfolio-item {
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  width: min(78vw, 380px);
  aspect-ratio: 4/5;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #ddd3bd;
}
.portfolio-section .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.portfolio-section .portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.portfolio-section .portfolio-item .overlay a {
  color: #faf6ee;
}
.portfolio-section .portfolio-item:hover .overlay {
  opacity: 1;
}
.portfolio-section .portfolio-item:hover img {
  transform: scale(1.06);
}

.contact-section .contact-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid #ddd3bd;
}
@media (min-width: 768px) {
  .contact-section .contact-rows {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-section .contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid #ddd3bd;
}
@media (min-width: 768px) {
  .contact-section .contact-card:nth-child(odd) {
    border-right: 1px solid #ddd3bd;
  }
}
.contact-section .contact-card .contact-icon {
  flex: none;
  color: var(--accent);
}
.contact-section .contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #85765a;
  margin-bottom: 0.5rem;
}
.contact-section .contact-card p {
  margin-bottom: 0;
  color: #3a342c;
}
.contact-section .contact-card p a {
  color: #3a342c;
  font-weight: 500;
}
.contact-section .contact-card p a:hover {
  color: var(--accent);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1712;
  color: #faf6ee;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(27, 23, 18, 0.12);
  transition: all 200ms ease-in-out;
  z-index: 1030;
  cursor: pointer;
  display: none;
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

.social-sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1030;
  display: none;
}
@media (min-width: 768px) {
  .social-sidebar {
    display: block;
  }
}
.social-sidebar .social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #1b1712;
  color: #faf6ee;
  transition: all 200ms ease-in-out;
}
.social-sidebar a:hover {
  background-color: var(--accent);
}
.social-sidebar a svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 640px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  header .navbar {
    padding: 1rem 0;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  header .navbar {
    padding: 1.5rem 0;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (max-width: 767px) {
  .about-row {
    grid-template-columns: 2.5rem 1fr;
  }
  .about-row .icon {
    display: none;
  }

  .service-row {
    grid-template-columns: 2.5rem 1fr;
  }
  .service-row .row-arrow {
    display: none;
  }

  .contact-section .contact-rows {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-card {
    border-right: none !important;
  }
}
@media (min-width: 320px) {
  .show-xs {
    display: block !important;
  }

  .hide-xs {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .show-sm {
    display: block !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-md {
    display: block !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .show-lg {
    display: block !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media print {
  body {
    background: #ffffff;
  }

  header, .back-to-top, .social-sidebar {
    display: none;
  }

  a {
    text-decoration: underline;
  }
}
