:root {
  --color-primary: #8B4513;
  --color-secondary: #D2691E;
  --color-accent: #F4A460;
  --color-dark: #2C1810;
  --color-light: #FFF8F0;
  --color-cream: #FFFAF5;
  --color-text: #3D2914;
  --color-muted: #7A6455;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', sans-serif;
  --max-width-narrow: 720px;
  --max-width-medium: 960px;
  --max-width-wide: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-medium {
  max-width: var(--max-width-medium);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  gap: 2.5rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 0.3rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-cream);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 99;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-size: 1.4rem;
  color: var(--color-dark);
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-dark);
}

.hero-editorial {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,250,245,0) 0%, rgba(255,250,245,0.8) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width-narrow);
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-dark);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-accent {
  background: var(--color-secondary);
  color: white;
}

.btn-accent:hover {
  background: var(--color-primary);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-light);
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-light);
}

.editorial-intro {
  padding: 6rem 0;
}

.editorial-text {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.editorial-text p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
}

.editorial-text p:first-of-type::first-letter {
  font-size: 4rem;
  float: left;
  line-height: 1;
  padding-right: 0.8rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.inline-image {
  margin: 3rem -2rem;
  position: relative;
}

.inline-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.inline-image figcaption {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.8rem;
  text-align: center;
  font-style: italic;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  text-align: center;
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  line-height: 1.5;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.service-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(139, 69, 19, 0.15);
}

.service-item:last-child {
  border-bottom: none;
}

.service-image {
  flex: 0 0 280px;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  margin-bottom: 0.8rem;
}

.service-content p {
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-details {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.inline-cta {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 500;
  position: relative;
}

.inline-cta::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.inline-cta:hover::after {
  transform: translateX(5px);
}

.testimonial-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a0f0a 100%);
  padding: 6rem 0;
  color: var(--color-light);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.testimonial-item {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -2rem;
  color: var(--color-accent);
  opacity: 0.5;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--color-accent);
}

.story-section {
  padding: 6rem 0;
}

.story-block {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-block:nth-child(even) {
  flex-direction: row-reverse;
}

.story-image {
  flex: 0 0 45%;
  height: 350px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.3));
}

.story-text {
  flex: 1;
}

.story-text h3 {
  margin-bottom: 1rem;
}

.form-section {
  background: var(--color-light);
  padding: 6rem 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  margin-top: 1rem;
}

.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-col p {
  color: rgba(255, 248, 240, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.5);
}

.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.page-content {
  padding: 4rem 0 6rem;
}

.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--color-primary);
}

.thanks-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.thanks-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 1000;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(255, 248, 240, 0.3);
}

.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 280px;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.team-section {
  padding: 6rem 0;
}

.team-intro {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto 4rem;
}

.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 280px;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-light);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--color-primary);
}

.gallery-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  margin: 4rem 0;
}

.gallery-strip img {
  flex: 1;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 968px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .service-item {
    flex-direction: column;
  }

  .service-image {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .story-block,
  .story-block:nth-child(even) {
    flex-direction: column;
  }

  .story-image {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery-strip {
    flex-wrap: wrap;
  }

  .gallery-strip img {
    flex: 0 0 50%;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .hero-editorial {
    padding: 7rem 1.5rem 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .feature-card {
    flex: 1 1 100%;
  }

  .gallery-strip img {
    flex: 0 0 100%;
    height: 180px;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .inline-image {
    margin: 2rem -1rem;
  }

  .pull-quote {
    font-size: 1.4rem;
    padding: 2rem 1rem;
  }
}
