
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4f0;
  color: #1f130b;
  line-height: 1.6;
}

a {
  color: #8b4513;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  background: #1f130b;
  color: #f7f4f0;
  border-bottom: 3px solid #c69c6d;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #c69c6d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  opacity: 0.8;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.nav a {
  color: #f7f4f0;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: #c69c6d;
  text-decoration: none;
}

.site-main {
  padding-bottom: 3rem;
}

.site-footer {
  background: #1f130b;
  color: #f7f4f0;
  padding: 1rem 0;
  font-size: 0.82rem;
  border-top: 2px solid #c69c6d;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-contact a {
  color: #f7f4f0;
  font-weight: 500;
}

.hero {
  padding: 2.5rem 0 2rem;
  background: radial-gradient(circle at top left, #f1e2cf, #f7f4f0);
  border-bottom: 1px solid #e2d4c3;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

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

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #1f130b;
  color: #f7f4f0;
  padding: 1.3rem 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid #c69c6d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 320px;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: disc;
  margin-left: 1.1rem;
  font-size: 0.92rem;
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: #f0ece6;
  border-top: 1px solid #dfd3c3;
}

.section h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.section p + p {
  margin-top: 0.75rem;
}

.narrow {
  max-width: 720px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.highlight-box {
  background: #1f130b;
  color: #f7f4f0;
  padding: 1.2rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid #c69c6d;
  font-size: 0.95rem;
}

.service-group {
  margin-top: 1.5rem;
}

.service-group ul {
  list-style: disc;
  margin-left: 1.3rem;
  margin-top: 0.4rem;
}

.note {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  opacity: 0.9;
}

.gallery-intro {
  max-width: 720px;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  background: #fff;
  border-radius: 0.8rem;
  padding: 1rem;
  border: 1px solid #dfd3c3;
}

.gallery-placeholder {
  background: repeating-linear-gradient(
    135deg,
    #f7f4f0,
    #f7f4f0 8px,
    #e6d8c7 8px,
    #e6d8c7 16px
  );
  border-radius: 0.6rem;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b3b22;
  margin-bottom: 0.7rem;
}

.store-coming-soon {
  margin-top: 1.3rem;
  background: #fff;
  border-radius: 0.9rem;
  border: 1px solid #dfd3c3;
  padding: 1.2rem 1.4rem;
}

.store-coming-soon ul {
  list-style: disc;
  margin-left: 1.3rem;
  margin-top: 0.5rem;
}

.contact-list {
  list-style: none;
  margin-top: 0.75rem;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-form {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid #dfd3c3;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #cbb8a4;
  font: inherit;
  background: #fdfbf8;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid #c69c6d;
  outline-offset: 1px;
}

.small {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease, color 0.1s ease;
}

.btn-primary {
  background: #8b4513;
  color: #f7f4f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  text-decoration: none;
}

.btn-outline {
  border-color: #8b4513;
  color: #8b4513;
  background: transparent;
}

.btn-outline:hover {
  background: #8b4513;
  color: #f7f4f0;
  text-decoration: none;
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-panel {
    justify-content: flex-start;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
