/*
Theme Name: Elegant Wise Shell
Theme URI: https://elegantwisestyle.com
Author: Elegant Wise
Description: A lightweight WordPress theme shell for Elegant Wise Style & System, designed to let Elementor manage page content while the theme provides the site frame.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: elegant-wise-shell
*/

:root {
  --ews-paper: #f7f1e9;
  --ews-cream: #fbf8f3;
  --ews-ink: #2f2a26;
  --ews-muted: #756b63;
  --ews-line: #d8c6b7;
  --ews-button-light: #eadfd5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ews-ink);
  background: var(--ews-paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

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

.ews-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 44px 30px;
  background: var(--ews-cream);
  border-bottom: 1px solid var(--ews-line);
}

.ews-brand {
  min-width: 285px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.9;
}

.ews-brand span {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  font-style: italic;
}

.ews-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ews-main-nav a {
  padding: 14px 0;
}

.ews-main-nav .ews-system-link {
  border: 1px solid var(--ews-line);
  background: var(--ews-button-light);
  padding: 16px 28px;
}

.ews-content {
  min-height: 60vh;
}

.ews-site-footer {
  padding: 70px 24px 56px;
  text-align: center;
  background: var(--ews-cream);
}

.ews-footer-brand {
  margin-bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
}

.ews-footer-brand span {
  display: block;
  margin-top: 16px;
  color: var(--ews-muted);
  font-size: 27px;
  font-style: italic;
}

.ews-site-footer p {
  max-width: 860px;
  margin: 0 auto 42px;
  color: var(--ews-muted);
  font-size: 24px;
  line-height: 1.45;
}

.ews-footer-plus {
  margin-bottom: 30px;
  color: var(--ews-muted);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ews-copyright {
  color: #958b82;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .ews-site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ews-brand {
    min-width: 0;
    text-align: left;
  }

  .ews-main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .ews-site-header {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ews-main-nav {
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .ews-main-nav .ews-system-link {
    padding: 12px 16px;
  }
}
