@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --text: #1b1b1b;
  --muted: #6c6c6c;
  --accent: #c7a66a;
  --accent-strong: #8a6d3b;
  --shadow: 0 18px 40px rgba(14, 14, 14, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  position: relative;
  min-height: 85vh;
  background-image: url("https://images.unsplash.com/photo-1745340706418-489eb5cad9d9?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(247, 246, 243, 0.95) 70%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 6vw 4rem;
  max-width: 620px;
}

.hero__tag {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero__subtitle {
  color: var(--muted);
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #1a1a1a;
}

.btn--ghost {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 4.5rem 6vw;
}

.section__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section__header p {
  color: var(--muted);
  margin: 0;
}

.section--gallery {
  background: #f0eee9;
}

.gallery {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery__item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 220px;
}

.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards--tight {
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card--location {
  display: grid;
  gap: 0.6rem;
}

.card h3 {
  margin: 0 0 0.6rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.link {
  color: var(--accent-strong);
  font-weight: 600;
}

.section--new {
  background: #f6f4f0;
}

.product-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card div {
  padding: 1.4rem;
}

.product-card h3 {
  margin: 0 0 0.6rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.section--map {
  background: #f0eee9;
}

.map {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 320px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.map__placeholder {
  text-align: center;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.map__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.section--contact {
  background: linear-gradient(120deg, rgba(199, 166, 106, 0.12), rgba(247, 246, 243, 0.6));
}

.contact {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact__phone {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-btn:hover {
  transform: translateY(-2px);
  background: #f7f6f3;
}

.icon-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-strong);
}

.footer {
  padding: 2rem 6vw 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .hero__content {
    padding: 3.5rem 7vw 3rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
