:root {
  --ce-bg: #f4f1ed;
  --ce-surface: #fffdf9;
  --ce-text: #1f1c1a;
  --ce-muted: #6f6760;
  --ce-line: #ddd4cb;
  --ce-accent: #a14f2a;
  --ce-radius: 16px;
  --ce-shadow: 0 12px 32px rgba(20, 12, 8, 0.12);
}

body {
  margin: 0;
  background: var(--ce-bg);
  color: var(--ce-text);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.ce-page {
  background: linear-gradient(180deg, #f8f4f0 0%, #f0ebe4 100%);
}

.ce-wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.ce-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 760px);
  border-radius: 0 0 var(--ce-radius) var(--ce-radius);
  overflow: hidden;
}

.ce-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ce-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.68) 72%);
}

.ce-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  margin: 0 auto;
  padding: clamp(72px, 14vh, 140px) 0 72px;
  color: #fff;
}

.ce-eyebrow {
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin: 0 0 16px;
}

.ce-hero__content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.95;
}

.ce-hero__content p {
  margin: 22px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.6;
  max-width: 60ch;
}

.ce-section {
  padding: clamp(44px, 7vw, 86px) 0;
}

.ce-section--nested {
  padding-top: 28px;
}

.ce-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.ce-section p {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--ce-muted);
}

.ce-grid {
  display: grid;
  gap: 18px;
}

.ce-grid--gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 28px;
}

.ce-grid--contact {
  margin-top: 28px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.ce-card {
  margin: 0;
  background: var(--ce-surface);
  border-radius: var(--ce-radius);
  overflow: hidden;
  box-shadow: var(--ce-shadow);
  border: 1px solid var(--ce-line);
}

.ce-card--info {
  padding: 24px;
  grid-column: span 6;
}

.ce-card--info h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.ce-card:nth-child(1),
.ce-card:nth-child(4) {
  grid-column: span 7;
}

.ce-card:nth-child(2),
.ce-card:nth-child(3),
.ce-card:nth-child(5),
.ce-card:nth-child(6) {
  grid-column: span 5;
}

.ce-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
}

.ce-card figcaption {
  padding: 10px 14px 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  color: var(--ce-muted);
}

.ce-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ce-accent);
  color: var(--ce-accent);
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  transition: 180ms ease;
}

.ce-cta:hover {
  background: var(--ce-accent);
  color: #fff;
}

.ce-list {
  margin: 12px 0 0;
  padding-left: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ce-muted);
  line-height: 1.72;
}

@media (max-width: 900px) {
  .ce-card,
  .ce-card:nth-child(1),
  .ce-card:nth-child(2),
  .ce-card:nth-child(3),
  .ce-card:nth-child(4),
  .ce-card:nth-child(5),
  .ce-card:nth-child(6),
  .ce-card--info {
    grid-column: span 12;
  }
}
