@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
  --ec-caramel: #C48A3A;
  --ec-caramel-dark: #A6732E;
  --ec-river: #3A6EA5;
  --ec-river-dark: #2D5680;
  --ec-cream: #FFF8F0;
  --ec-charcoal: #2A2520;
  --ec-charcoal-light: #4A4540;
  --ec-white: #FFFFFF;
  --ec-gray: #7A746C;
  --ec-gray-light: #E8E0D4;
  --ec-font-heading: 'Fraunces', serif;
  --ec-font-body: 'DM Sans', sans-serif;
  --ec-radius: 10px;
  --ec-radius-lg: 18px;
  --ec-shadow: 0 4px 24px rgba(42, 37, 32, 0.07);
  --ec-shadow-lg: 0 12px 48px rgba(42, 37, 32, 0.1);
  --ec-transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ec-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ec-charcoal);
  background: var(--ec-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ec-river);
  text-decoration: none;
  transition: color var(--ec-transition);
}

a:hover {
  color: var(--ec-river-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ec-font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.ec-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.ec-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ec-white);
  border-bottom: 1px solid var(--ec-gray-light);
}

.ec-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.ec-logo {
  font-family: var(--ec-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ec-charcoal);
}

.ec-logo span {
  color: var(--ec-caramel);
}

.ec-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.ec-nav a {
  font-weight: 500;
  color: var(--ec-charcoal);
  font-size: 0.95rem;
}

.ec-nav a:hover,
.ec-nav a.ec-active {
  color: var(--ec-caramel);
}

.ec-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.ec-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ec-charcoal);
  transition: var(--ec-transition);
}

.ec-burger.ec-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ec-burger.ec-open span:nth-child(2) {
  opacity: 0;
}

.ec-burger.ec-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Centered Hero — index */
.ec-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ec-cream);
  padding: 80px 24px;
  position: relative;
}

.ec-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 138, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ec-hero-content {
  position: relative;
  max-width: 780px;
}

.ec-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ec-caramel);
  margin-bottom: 1.5rem;
}

.ec-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--ec-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.ec-hero h1 em {
  font-style: italic;
  color: var(--ec-river);
}

.ec-hero p {
  font-size: 1.15rem;
  color: var(--ec-charcoal-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ec-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ec-hero-line {
  width: 48px;
  height: 2px;
  background: var(--ec-caramel);
  margin: 0 auto 2rem;
}

/* Page Hero */
.ec-page-hero {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  background: var(--ec-cream);
  overflow: hidden;
}

.ec-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.ec-page-hero-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.ec-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.ec-page-hero p {
  font-size: 1.05rem;
  color: var(--ec-charcoal-light);
}

/* Buttons */
.ec-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--ec-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--ec-radius);
  cursor: pointer;
  transition: all var(--ec-transition);
  text-align: center;
}

.ec-btn-primary {
  background: var(--ec-caramel);
  color: var(--ec-white);
}

.ec-btn-primary:hover {
  background: var(--ec-caramel-dark);
  color: var(--ec-white);
}

.ec-btn-outline {
  background: transparent;
  color: var(--ec-river);
  border: 2px solid var(--ec-river);
}

.ec-btn-outline:hover {
  background: var(--ec-river);
  color: var(--ec-white);
}

.ec-btn-dark {
  background: var(--ec-charcoal);
  color: var(--ec-white);
}

.ec-btn-dark:hover {
  background: var(--ec-charcoal-light);
  color: var(--ec-white);
}

/* Sections */
.ec-section {
  padding: 80px 0;
}

.ec-section-alt {
  background: var(--ec-white);
}

.ec-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.ec-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ec-caramel);
  margin-bottom: 0.75rem;
}

.ec-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.ec-section-header p {
  color: var(--ec-charcoal-light);
}

/* Grid layouts */
.ec-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ec-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ec-card {
  background: var(--ec-white);
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
  box-shadow: var(--ec-shadow);
  transition: transform var(--ec-transition), box-shadow var(--ec-transition);
}

.ec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ec-shadow-lg);
}

.ec-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ec-card-body {
  padding: 24px;
}

.ec-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ec-card-body p {
  font-size: 0.92rem;
  color: var(--ec-charcoal-light);
}

.ec-card-price {
  font-weight: 700;
  color: var(--ec-caramel);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* Features */
.ec-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.ec-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(58, 110, 165, 0.1);
  color: var(--ec-river);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.ec-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ec-feature p {
  font-size: 0.9rem;
  color: var(--ec-charcoal-light);
}

/* Image block */
.ec-img-rounded {
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
  box-shadow: var(--ec-shadow-lg);
}

.ec-img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu categories */
.ec-menu-cat {
  margin-bottom: 3.5rem;
}

.ec-menu-cat h3 {
  font-size: 1.5rem;
  color: var(--ec-caramel);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ec-gray-light);
}

.ec-menu-list {
  list-style: none;
}

.ec-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--ec-gray-light);
  gap: 16px;
}

.ec-menu-item:last-child {
  border-bottom: none;
}

.ec-menu-item-info h4 {
  font-family: var(--ec-font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.ec-menu-item-info p {
  font-size: 0.85rem;
  color: var(--ec-gray);
}

.ec-menu-item-price {
  font-weight: 700;
  color: var(--ec-caramel);
  white-space: nowrap;
}

/* Atmosphere gallery */
.ec-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ec-gallery-item {
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
  position: relative;
}

.ec-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ec-gallery-item:hover img {
  transform: scale(1.04);
}

.ec-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(42, 37, 32, 0.75));
  color: var(--ec-white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA band */
.ec-cta {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  color: var(--ec-white);
  overflow: hidden;
}

.ec-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ec-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 37, 32, 0.82), rgba(58, 110, 165, 0.65));
}

.ec-cta-content {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.ec-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.ec-cta p {
  margin-bottom: 2rem;
  opacity: 0.92;
  line-height: 1.7;
}

.ec-cta .ec-btn-primary {
  background: var(--ec-caramel);
}

.ec-cta .ec-btn-primary:hover {
  background: var(--ec-caramel-dark);
}

/* Contact */
.ec-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.ec-contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.ec-contact-item {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ec-contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ec-caramel);
  margin-bottom: 0.3rem;
}

.ec-form-group {
  margin-bottom: 1.25rem;
}

.ec-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.ec-form-group input,
.ec-form-group select,
.ec-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ec-font-body);
  font-size: 0.95rem;
  border: 1px solid var(--ec-gray-light);
  border-radius: var(--ec-radius);
  background: var(--ec-white);
  color: var(--ec-charcoal);
  transition: border-color var(--ec-transition);
}

.ec-form-group input:focus,
.ec-form-group select:focus,
.ec-form-group textarea:focus {
  outline: none;
  border-color: var(--ec-river);
}

.ec-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Privacy */
.ec-privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.ec-privacy-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--ec-charcoal);
}

.ec-privacy-content p {
  margin-bottom: 1rem;
  color: var(--ec-charcoal-light);
}

.ec-privacy-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--ec-charcoal-light);
}

.ec-privacy-content li {
  margin-bottom: 0.4rem;
}

/* Stats strip */
.ec-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--ec-gray-light);
  border-bottom: 1px solid var(--ec-gray-light);
}

.ec-stat {
  text-align: center;
}

.ec-stat-num {
  font-family: var(--ec-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ec-caramel);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ec-stat-label {
  font-size: 0.85rem;
  color: var(--ec-gray);
}

/* Footer */
.ec-footer {
  background: var(--ec-charcoal);
  color: rgba(255, 248, 240, 0.75);
  padding: 64px 24px 0;
}

.ec-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.ec-footer-brand {
  font-family: var(--ec-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ec-cream);
  margin-bottom: 0.75rem;
}

.ec-footer h4 {
  font-family: var(--ec-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ec-caramel);
  margin-bottom: 1rem;
}

.ec-footer ul {
  list-style: none;
}

.ec-footer li {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.ec-footer a {
  color: rgba(255, 248, 240, 0.75);
}

.ec-footer a:hover {
  color: var(--ec-caramel);
}

.ec-footer-bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 248, 240, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* Cookie bar */
.ec-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ec-charcoal);
  color: var(--ec-cream);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.ec-cookie.ec-show {
  display: flex;
}

.ec-cookie h4 {
  font-family: var(--ec-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ec-cookie p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.ec-cookie a {
  color: var(--ec-caramel);
}

.ec-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ec-cookie-actions .ec-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Responsive 900px */
@media (max-width: 900px) {
  .ec-burger {
    display: flex;
  }

  .ec-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ec-white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--ec-shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--ec-transition);
  }

  .ec-nav.ec-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .ec-nav li {
    width: 100%;
  }

  .ec-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--ec-gray-light);
  }

  .ec-grid-2,
  .ec-grid-3,
  .ec-features,
  .ec-gallery,
  .ec-contact-grid {
    grid-template-columns: 1fr;
  }

  .ec-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ec-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .ec-hero {
    min-height: auto;
    padding: 100px 24px;
  }
}

/* Responsive 560px */
@media (max-width: 560px) {
  .ec-footer-grid {
    grid-template-columns: 1fr;
  }

  .ec-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .ec-cookie {
    flex-direction: column;
    text-align: center;
  }

  .ec-cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .ec-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .ec-hero-actions .ec-btn {
    width: 100%;
    max-width: 280px;
  }

  .ec-gallery-item img {
    height: 220px;
  }

  .ec-card img {
    height: 180px;
  }
}
